通过DLL进行Sybase批量复制:值不在预期范围内

时间:2015-01-12 08:58:31

标签: c# sybase-ase bcp

我正在尝试使用随Sybase安装提供的.net DLL(Sybase.AdoNet4.AseClient.dll版本16.0.02)将数据从Sql Server迁移到Sybase 16.0数据库。

为了简单起见,我试图从具有单个INT列的表中复制值

--source table (MSSQL)
CREATE TABLE [dbo].[TO_INTS](
    [TO_INT] [int] NULL,
    [TO_INT2] [int] NULL,
    [NAME] [varchar](50) NULL,
    [DT] [datetime] NULL
) ON [PRIMARY]

--target table (Sybase)
CREATE TABLE dbo.TO_INTS
    (
    FROM_INT INT NOT NULL
    )
    ON 'default'

我正在使用代码:

public void BulkCopyFromSqlServer(string sourceConnectionString, string targetConnectionString)
{
    SqlConnection sourceConnection = null;
    AseConnection targetConnection = new AseConnection(targetConnectionString);
    IDataReader dataSource=null;
    try
    {
        targetConnection.Open();
        MssqlCommand.GetDataReader(sourceConnectionString, out sourceConnection, out dataSource);  //see below
        AseBulkCopy blk = new AseBulkCopy(targetConnection);
        blk.BulkCopyTimeout = 1200;
        blk.DestinationTableName = "TO_INTS";
        blk.ColumnMappings.Clear();
        blk.ColumnMappings.Add(new AseBulkCopyColumnMapping(0,0));
        blk.WriteToServer(dataSource);  // System.ArgumentException thrown here.
        blk.Close();

    }
    catch (AseException ex)
    {
        Console.WriteLine(ex.Message);
    }
    finally
    {
        sourceConnection.Dispose(); 
        targetConnection.Dispose();             
    }

}

//MssqlCommand.GetDataReader(sourceConnectionString, out sourceConnection, out dataSource):
public static void GetDataReader(string sqlServerConnectionString, out SqlConnection conn, out IDataReader reader)
{
    conn = new SqlConnection(sqlServerConnectionString);
    conn.Open();

    SqlCommand cmd = new SqlCommand("select * from TO_INTS", conn);
    cmd.CommandTimeout = 60;

    reader = cmd.ExecuteReader();
}

当使用消息" WriteToServer()"调用Value does not fall within the expected range时,会抛出System.ArgumentException。 堆栈跟踪很有意思,因为看起来Sybase DLL无法使用映射中提供的索引来解析数据库列名,这看起来很奇怪:

   at Sybase.Data.AseClient.AseBulkCopy.GetDBColName(String clientColName, Int32 clientColInx)
   at Sybase.Data.AseClient.AseBulkCopy.GenerateInsertCmdByReaderMetaInfo(DataTable rowFmt)
   at Sybase.Data.AseClient.AseBulkCopy.WriteToServer(IDataReader reader)

我对Sybase>采用了相同的过程。 Sql Server(几乎逐行,但切换了相关的DLL)并且可以正常工作。

我错过了一些明显的东西吗?

2 个答案:

答案 0 :(得分:0)

除了这个之外,我没有任何直接的观察结果:MS SQL中的源表与ASE中的目标表有两种不同:

  1. 它的列数较少,

  2. ASE中的列名与MS SQL中的列名不同。

  3. 如果不了解这里发生的事情的全部范围和背景,就不难想象源表和目标表之间会发生不匹配。

答案 1 :(得分:0)

看起来我现在已经解决了这个问题。

我的代码中有两个错误。

初始错误的产生是因为我不知道将EnableBulkLoad参数放在连接字符串中。我的工作连接字符串如下所示:

string SybaseConnectionString = "Data Source=server1;Initial Catalog=mydb;persist security info=False;User Id=sa;Password=password1;Port=5000;EnableBulkLoad=2" 

一旦添加,就会引发第二个错误:

Bad row data received from the client while bulk copying into object 2080007410 partition 2080007410 in database 6. Received a row of length 11 whilst maximum or expected row length is 6.

这是因为表名是使用:

设置的
blk.DestinationTableName = "TO_INTS";

应该是什么时候:

blk.DestinationTableName = "dbo.TO_INTS";

一旦我添加了所有者,那么BulkCopy就可以了。

对于ref,现在我已经使它工作了,我能够在具有不同名称的表之间完成WriteToServer调用。此外,列名在每个表中都是唯一的,即源Sql Server表:

CREATE TABLE [dbo].[SOURCE_INTS](
    [TO_INT] [int] NULL,
    [TO_INT2] [int] NULL,
    [NAME] [varchar](50) NULL,
    [DT] [datetime] NULL
) ON [PRIMARY]

目标Sybase表:

CREATE TABLE dbo.TO_INTS
    (
    THE_STRING VARCHAR(50) NOT NULL,
    THE_INT INT NOT NULL,
    THE_DT DATETIME NOT NULL
    )
    LOCK ALLPAGES
    ON 'default'
GO

您还会注意到订单不同,但WriteToServer通过映射处理这个问题:

blk.ColumnMappings.Add(new AseBulkCopyColumnMapping(2, 0)); //string col
blk.ColumnMappings.Add(new AseBulkCopyColumnMapping(1, 1)); //int col
blk.ColumnMappings.Add(new AseBulkCopyColumnMapping(3, 2)); //datetime col

如果您需要有关C#的Sybase数据提供程序的更多信息,请尝试Sybase Books Online

希望这有助于某人。