sp_configure "allow updates",1
go 
reconfigure
go;restart the databaseupdate sysobjects set type ="U" where name="要修改的表名" and type ="S"
gosp_configure "allow updates",0
go 
reconfigure
go;restart the databasedrop table ...
go具体请查help

解决方案 »

  1.   

    应该用 RECONFIGURE WITH OVERRIDE而不是reconfigure
      

  2.   

    sp_configure "allow updates",1
    go 
    RECONFIGURE WITH OVERRIDE
    go;restart the databasedrop table tablename 
      

  3.   

    感谢Axiong的回复,但我用update sysobjects set type="U" where name="表名" and type="S" ,系统提示 type 列不能改,我用 set name="新表名" where name="表名"  可改表名,请继续帮忙!
      

  4.   

    我不知你一定要改type干嘛。有什么问题不能解决吗??
    好象是不让改type的。