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

解决马上给分:求表sysobjects中的记录删除方法
我用外部方法在指定数据库中建立表,表没有建成,倒是向sysobjects表中追加一了条记录,如何删除这条记录呢!!

------解决方案--------------------
exec sp_configure 'allow update ',1
reconfigure with override

delete from sysobjects where name = '表名 '

exec sp_configure 'allow update ',0
reconfigure with override
------解决方案--------------------
查询分析器里执行啊