----允許對系統表進行更新
exec sp_configure 'allow updates',1
reconfigure with override
go----取消標識列標記
update syscolumns set colstat = 0 where id = object_id('tablename') and colstat = 1
go--插入id=8001-8003的行
...----恢復標識列標記
update syscolumns set colstat = 1 where id = object_id('tablename') and name = '標識列名稱'
----重新設定標識的起始值
dbcc checkident (表名稱, reseed, 10003)
----禁止對系統表進行更新
exec sp_configure 'allow updates',0
reconfigure with override
相關方法:
--identity 列是不允許修改的,但有時還是需要修改的,查了一下,可以通過下列的方式進行修改:
-- 允許修改系統表,如果不是系統表,下面2句可以忽略
--exec sp_configure 'allow updates',1
--reconfigure with override
--go
update syscolumns set colstat = 0 where id = object_id('表名') and colstat = 1
go--
-- 修改資料
-- update syscolumns set colstat = 1 where id = object_id('表名') and name = '字段'
----重新設定標識的起始值
dbcc checkident (表名, reseed, 10003)
----禁止對系統表進行更新恢復 ( 如果非系統表可以忽略)
--exec sp_configure 'allow updates',0
--reconfigure with override
設定或取消自動登陸到Administrator帳戶
安裝windows xp時,如果設定了乙個管理員帳戶,那麼系統內建沒有密碼保護administrator管理員帳戶是不會出現在使用者登入列表中的,雖然它身在幕後,可卻擁有系統最高許可權,為了方便操作及保證系統安全,可以先給它設定密碼,然後再把它請到臺前來,以下便是具體方法 使用 傳統登入提示 登入 ...
oracle建表並設定ID為自動增長
create tablespace shopping datafile d oracle mypc oradata orcl shopping.dbf size 20m autoextend on create user shopping 建立 使用者 使用者名稱 identified by sho...
oracle建表並設定ID為自動增長
create tablespace shopping datafile d oracle mypc oradata orcl shopping.dbf size 20m autoextend on create user shopping 建立 使用者 使用者名稱 identified by sho...