最佳答案
我运行data.bat文件与以下行:
Rem Tis batch file will populate tables
cd\program files\Microsoft SQL Server\MSSQL
osql -U sa -P Password -d MyBusiness -i c:\data.sql
数据的内容。SQL文件是:
insert Customers
(CustomerID, CompanyName, Phone)
Values('101','Southwinds','19126602729')
还有8个类似的行用于添加记录。
当我用start
> run
> cmd
> c:\data.bat
运行这个时,我得到这个错误消息:
1>2>3>4>5>....<1 row affected>
Msg 8152, Level 16, State 4, Server SP1001, Line 1
string or binary data would be truncated.
<1 row affected>
<1 row affected>
<1 row affected>
<1 row affected>
<1 row affected>
<1 row affected>
此外,我显然是一个新手,但Level #
和state #
是什么意思,以及我如何查找错误消息,如上面的一个:8152?