需要帮助连接Microsoft.SqlServer.Management.Smo Transfer类

时间:2013-05-13 19:57:58

标签: c# sql sql-server smo

我正在尝试复制所有内容(数据,索引,触发器,存储过程)。从C#中的一个数据库到另一个数据库。

这是我的代码:

SqlConnection connection = new SqlConnection(ConnectionString);

Server myServer = new Server(new ServerConnection(connection));               

Database db = myServer.Databases[this._myDB];

if (myServer.Databases[this._newDB] != null)
   myServer.Databases[this._newDB].Drop();

Database newdb = new Database(myServer, this._newDB);
newdb.Create();

Transfer transfer = new Transfer(db);
transfer.CopyAllSchemas = false;
transfer.CopyAllStoredProcedures = true;
transfer.CopyAllTables = true;
transfer.CopyAllDatabaseTriggers = true;
transfer.CopyAllObjects = true;
transfer.CopyAllUsers = true;
transfer.Options.WithDependencies = true;
transfer.DestinationDatabase = newdb.Name;
transfer.DestinationServer = myServer.Name;
transfer.DestinationLoginSecure = false;
transfer.DestinationLogin = user;
transfer.DestinationPassword = pwd;
transfer.CopySchema = false;
transfer.CopyData = true;
transfer.Options.DriAll = true;
transfer.Options.Triggers = true;
transfer.Options.WithDependencies = true;
transfer.Options.ContinueScriptingOnError = true;

transfer.TransferData();

我收到以下错误:

  

errorCode = -1071636471 description = SSIS错误代码DTS_E_OLEDBERROR。发生OLE DB错误。错误代码:0x80004005。
  OLE DB记录可用。来源:“Microsoft SQL Server Native Client 10.0”Hresult:0x80004005说明:“用户'DOMAIN \ user'登录失败。”。
  OLE DB记录可用。来源:“Microsoft SQL Server Native Client 10.0”Hresult:0x80004005描述:“无法打开数据库”myDB(替换名称,但它是正确的)“登录请求。登录失败。”。
  helpFile = helpContext = 0 idofInterfaceWithError = {5BC870EB-BBA5-4B9D-A6E3-58C6D0051F14}

我最接近完成解决方法的方法是:

script = transfer.ScriptTransfer();

foreach (string s in script)
{
     //run a sqlcommand for s
}

但是这不能得到数据。

我已经为用户提供了SQL Server和数据库本身的所有权限。

1 个答案:

答案 0 :(得分:4)

它太晚了,但它可以帮助其他人,

我有同样的问题,由于第一行,演员到了SqlConnection。它会激活混合身份验证[这就是为什么你因为'DOMAIN \ user'登录错误而出现错误的原因]

我选择使用SqlConnectionStringBuilder初始化简单连接:

var connectionString = ((EntityConnection)base.ReferentielContext.Connection).StoreConnection.ConnectionString;
var builder = new SqlConnectionStringBuilder(connectionString);

var srvConn = new ServerConnection
        {
            ServerInstance = builder.DataSource,
            LoginSecure = false,// set to true for Windows Authentication
            Login = builder.UserID,
            Password = builder.Password
        };

var server = new Microsoft.SqlServer.Management.Smo.Server(srvConn);