English 中文(简体)
存储器程序
原标题:Snowflake stored procedure parallel execution

我只想使用斯诺瓦克法,对斯诺瓦克储存的程序进行单一审查。 避免使用任务,因为它有外部依赖。

守则也是如此。 将所有储存程序案例同时进行。

例如,SP_INSERT_WORDS(VARCHAR)是一种存储程序,我要说的是同一存储程序的许多例子。

 SP_INSERT_WORDS( A );
 SP_INSERT_WORDS( B );
 SP_INSERT_WORDS( C );
 . . . 
 SP_INSERT_WORDS( Z );
问题回答

你可以尝试以下选择:

  1. Use the RESULTS option in SnowSQL.

http://www.un.org。 定本 False

This option avoids the wait on the previous calls and asynchronously execute queries

  1. 任务执行可能可行,但单向执行

  2. 申请的平行呼吁

Link on restrictions for Stored Procedures





相关问题
LINQ to SQL optional Column

I need a functionality to have optional columns in a LINQ to SQL definition. So that LINQ to SQL normally ignores this column within selects and updates etc. But if a select contains a value for this ...

Optional where clause / parameter in a SQL 2008 stored proc?

I m writing some code that updates a table. Depending on what the user wants to do, it either updates a large set of records, or a smaller one. The delineating factor is a group ID. The user can ...

How to control access to a Stored Procedure in SQL Server?

I want to be able to have a Stored Procedure that can only be used from a particular page, without having to create a permissions / role for a user, when it is just a single stored procedure I want ...

Selecting records during recursive stored procedure

I ve got a content management system that contains a hierarchical structure of categories, with sub-categories subject to different ordering options at each level. Currently, that s retrieved by a (...

热门标签