我的表有一个名为
的错误消息2716,级别16,状态1,行1列,参数或变量#8: 无法在数据类型文本上指定列宽。
我没有看到问题。
继承查询:
create table tblAdd (
OfficeType nchar not null,
OfficeName varchar (24) not null,
AssetClassification varchar (24) not null,
AssetSubClass varchar(24) not null,
UACSObjectCode int primary key not null,
AssetItem varchar (24) not null,
Manufacturer varchar(24) not null,
Model text (24) not null,
SerialNumber text (24) not null,
Specification text (24) not null,
PropertyNumber text (24) not null,
CurrentCondition text (24) not null,
SourceOfFund varchar (24) not null,
CostOfAcquisition money not null,
DateIfAcquisition date not null,
EstimatedTotalLifeYears int not null,
NameOfAccountableOffice varchar (24) not null,
AssetLocation varchar (24) not null,
Remarks text (24) not null
)
答案 0 :(得分:1)
你看过 text 数据类型了吗?
它是一个传统的CLOB字段,允许2GB的数据。
我认为您希望 varchar(max)替换自SQL Server 2005以来的文本
在其他评论中