|
|
| |

How can I edit the system tables manually?
Answer:
It is not recommended to do, but it is possible.
You should set the allow updates option to 1 by using the sp_configure
system stored procedure.
This is the example:
sp_configure 'allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO
|
Read about the sp_configure system stored procedure in SQL Server Books Online.
|
|
|