我在SSIS包一個C#腳本以下傳遞使用腳本任務的變量在SSIS
SqlConnection importTab = new SqlConnection(@"Server=ServerName;
Integrated Security=true;user=;pwd=;database=DBname");
我需要通過數據庫名稱(數據庫)變量裏面提到...
可能像在腳本任務這個
SqlConnection importTab = new SqlConnection(@"Server=ServerName;
Integrated Security=true;user=;pwd=;database="+"User::Variable" +");"
,但我知道我錯了......
您不應該在連接字符串中同時包含「Integrated Security = true」和用戶標識和密碼,請選擇其中一個。 – stuartd
使用[連接字符串生成器類](http://msdn.microsoft.com/zh-cn/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx) – stuartd