摘要:
1、Windows XP Professional系统Ghost后无法正常关机故障表现:网吧所有的客户机系统都是Windows XP Profeeional,为了防止客户机系统被破坏,便使用Ghost将系统分区做了一个镜像文件,并刻录到光盘中。当有一台客户机的系统被破坏后,使用镜像文件恢复后,电脑却不能正常关机了。每当执行关机命令后,电脑不能自动断电,而是在屏幕上显示“您可以安全关闭计算机”,这时... 阅读全文
摘要:
create Table #tempTable( ID int IDENTITY PRIMARY KEY, bookId int, bookName varchar(50))godeclare @a intset @a=(select count(*) as 'aa' from sysobjects where name = '#tempTable')select @... 阅读全文
摘要:
drop procedure viewbookgocreate procedure viewbook@id3 intasif exists(select * from tempdb..sysobjects where id=object_id('tempdb..#tempTable'))drop table #tempTablecreate Table #tempTable( ID int I... 阅读全文