How to upgrade your own table as system table, prevent errors, modify it

xiaoxiao2021-03-06  41

Create Table Test1 (DID INT)

sp_configure 'allow updates', 1

Reconfigure with override

Update sysobjects set xipe = 's', info = 4

Where id = Object_id ('Test1')

sp_configure 'allow updates', 0

Reconfigure with override

转载请注明原文地址:https://www.9cbs.com/read-74853.html

New Post(0)