Gets or sets the number of threads that a package can create.
命名空间: Microsoft.SqlServer.Dts.Runtime
程序集: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
语法
声明
Public Property MaxConcurrentExecutables As Integer
public int MaxConcurrentExecutables { get; set; }
public:
property int MaxConcurrentExecutables {
int get ();
void set (int value);
}
/** @property */
public int get_MaxConcurrentExecutables ()
/** @property */
public void set_MaxConcurrentExecutables (int value)
public function get MaxConcurrentExecutables () : int
public function set MaxConcurrentExecutables (value : int)
属性值
An Integer that contains the number of threads that a package can create.
备注
已更新的文本:2005 年 12 月 5 日
Valid values are one and higher, or -1. Other values are invalid. A value of -1 allows the maximum number of concurrently running executables to equal the number of processors plus two. Setting this property to zero or any other negative value fails with an error code that indicates an invalid argument.
This property is used when parallelism exists in the workflow. If the workflow is a series of sequential precedence constraints, then this property has no effect.
示例
The following code example sets the MaxConcurrentExecutables to 1, and sets that value on the ForEachLoop so the ForEachLoop will run one task at a time.
Package p;
p.MaxConcurrentExecutables = 1;
ForEachLoop loop;
loop.MaxConcurrent = p.MaxConcurrentExecutables;
Dim p As Package
p.MaxConcurrentExecutables = 1
Dim loop As ForEachLoop
loop.MaxConcurrent = p.MaxConcurrentExecutables
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
Package Class
Package Members
Microsoft.SqlServer.Dts.Runtime Namespace