Application.CreateFolderOnDtsServer(String, String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在 Integration Services 服务层次结构的“已存储的包”节点中显示的服务器上创建文件夹。
public:
void CreateFolderOnDtsServer(System::String ^ sParent, System::String ^ sNewFolderName, System::String ^ sServerName);
public void CreateFolderOnDtsServer (string sParent, string sNewFolderName, string sServerName);
member this.CreateFolderOnDtsServer : string * string * string -> unit
Public Sub CreateFolderOnDtsServer (sParent As String, sNewFolderName As String, sServerName As String)
参数
- sParent
- String
用于保存此文件夹的顶级文件夹的名称。
- sNewFolderName
- String
为新创建的文件夹提供的名称。
- sServerName
- String
运行 Integration Services 服务的服务器的名称。
示例
以下示例演示如何在文件系统中创建新文件夹 myFolder
。 若要查看创建后的文件夹,请打开SQL Server Management Studio,连接到 Integration Services 服务,展开存储的包包存储,然后展开命名的文件夹myParentFolder
。 在此示例中,新文件夹在现有文件系统文件夹下创建。
class ApplicationTests
{
static void Main(string[] args)
{
Application app = new Application();
Package p = app.LoadPackage(pkg, null);
// Create a new folder named myFolder on the server named yourserver.
String folder = "File System";
String newName = "myFolder";
String serverName = "yourserver";
app.CreateFolderOnDtsServer(folder, newName, serverName);
}
}
Class ApplicationTests
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim p As Package = app.LoadPackage(pkg,Nothing)
' Create a new folder named myFolder on the server named yourserver.
Dim folder As String = "File System"
Dim NewName As String = "myFolder"
Dim serverName As String = "yourserver"
app.CreateFolderOnDtsServer(folder, NewName, serverName)
End Sub
End Class
注解
若要验证是否已创建该文件夹,以下 Transact-SQL 查询将选择存储在存储包包存储的 文件系统 文件夹中的所有 包 。
select * from sysssispackages
若要查看文件夹列表,还可以连接到 Integration Services 服务,展开 存储包,然后展开 文件系统。 将列出具有给定 strNewFolderName
名称的新文件夹。
若要启动 Integration Services 服务,请打开控制面板,单击“管理工具”,然后单击“服务”。 服务管理单元随即打开。 在服务列表中找到SQL Server Integration Services,右键单击SQL Server Integration Services,然后单击“属性”,然后选择“手动启动”类型。 单击" 确定"。 再次右键单击SQL Server Integration Services,然后单击“开始”