日期:2014-05-18  浏览次数:20520 次

SQL 2008 对象类型 CLUSTER怎么是未知对象类型
create CLUSTER index Stusname on Student(Sname);
CREATE、DROP 或 ALTER 语句中使用了未知的对象类型 'CLUSTER'。
这是什么原因?

------解决方案--------------------
SQL code

create CLUSTERED index Stusname on Student(Sname);

------解决方案--------------------
是clustered。