Is it true we cannot UPDATE System tables in SQL 2005? Has anyone come up w/ a way to apply SIDMAP changes to a restored DB?
This code renders useless to allow updates to system tables in SQL 2005:
USE
master;
GO
EXEC
sp_configure 'show advanced option', '1';
EXEC
sp_configure
EXEC
sp_configure 'allow_updates', 1 --;
RECONFIGURE
WITH OVERRIDE;
GO
EXEC
sp_configure
BT