我在文件中有这样的文本:
In the name of God, the Mercy-giving, the Merciful! (1)
Praise be to God, Lord of the Universe, (2)
the Mercy-giving, the Merciful (3)
Ruler on the Day for Repayment! (4)
...
然后,一个有 2 个字段的表,如下所示:
TextData Varchar(max) NoNullable
Id Int NoNullable Identity(1,1)
何时使用此查询:
bulk insert MyDb.dbo.translation
FROM 'd:\IRVING.Arb'
WITH
(
ROWTERMINATOR ='\n',
codepage='1256'
)
我得到(0 行受影响)
但是,当我从 table 中删除 Id 列时,所有行数据都会复制它。
如何在 Id 列中存储文件的行号?