10

我正在从大型 Excel 工作表中导入数据并将其存储在 stateTable 中。现在我必须将这些数据推送到数据库表中。该表确实有一个标识列 (1,1)。

我在 DB 中创建了一个类似的表类型和一个将参数作为表类型插入特定表的过程。我还设置了身份插入。

我的代码是:

using (SqlCommand command = new SqlCommand("InsertStateTable") {
    CommandType = CommandType.StoredProcedure})
{
    SqlParameter param = command.Parameters.AddWithValue("@statetable", dt);
    param.TypeName = "StateTable";
    param.SqlDbType = SqlDbType.Structured;
    command.Connection = con;
    con.Open();
    command.ExecuteNonQuery();
    con.Close();
}

但出现的错误是 “插入到表变量上不允许的标识列”。 我浏览了很多网站,但没有给出具体原因......

提前致谢。

4

1 回答 1

0

错误很明显:你不能做你想做的事。基本上,您将不得不找到一个不依赖于将标识值插入表变量/表值参数的设计。我的建议是创建一个单独的表变量(与表值参数无关),它具有相同的数据,但没有IDENTITY列,所以......

declare @foo table (id int not null, name nvarchar(200) not null /* etc */)
insert @foo (id, name /* etc */)
select id, name /* etc */ from @statetable

此时@foo具有原始数据,但没有标识列 - 然后您可以使用@foo.

如果没有看到您对身份插入所做的事情,很难进一步评论。

于 2013-04-12T09:12:49.323 回答