如果需要修改SQL数据库中的系统表,应该如何做呢?下面就将为您介绍修改Sql Server系统表的方法,希望对您学习SQL数据库有所帮助。
一、Sql Server 2000中修改Sql Server系统表的方法如下:
1 EXEC sp_configure 'allow updates', 1
2 RECONFIGURE WITH OVERRIDE;
3 -- do some modification to system tables
4 EXEC sp_configure 'allow updates', 0
5 RECONFIGURE WITH OVERRIDE;
二、Sql Server 2005/2008中修改Sql Server系统表的方法一:
三、Sql Server 2005/2008修改Sql Server系统表的方法二:
【编辑推荐】
SQL Server系统表的作用
分页获取数据的sql server存储过程
如何建立sql server存储过程
sql server存储过程使用实例
sql server还原数据库的方法
上一篇:上网行为管理那些事儿