declare @Tem table (iIndex int,Value varchar(200))
insert @Tem values(1,'First One')
insert @Tem values(2,'Second One')
select * from @Tem
2007年11月3日 #
declare @Tem table (iIndex int,Value varchar(200))
insert @Tem values(1,'First One')
insert @Tem values(2,'Second One')
select * from @Tem
2007年9月23日 #
2007年9月15日 #
1、點擊“開始》運行”,輸入“regedit”,打開注冊表
2、找到目錄HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
3、刪除其中的“PendingFileRenameOperations”
4、關閉注冊表
5、重新開始安裝SQL Server 2000,一且OK了。
在運行窗口輸入regedit,打開注冊表編輯器,在HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager中找到PendingFileRenameOperations,刪除該鍵值(這個鍵值是安裝程序暫掛項目,只要找到對應的應用程序清除掉就行了),關閉注冊表編輯器。重新安裝SQL Server 2000即可。
2007年8月5日 #
@echo off
echo 正在清除系統垃圾文件,請稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系統LJ完成!
echo. & pause