08 2008 档案
摘要:--1.数据库备份脚本sqlserverbackup.sql-- SQLServer2000数据库系统清理用户数据库日志和备份用户数据库数据脚本declare @dumpfile varchar(50) declare @msg varchar(70) select @dumpfile = 'd:\backup\north' + datename(dw,getdate())+'.bak' sel...
阅读全文
摘要:删除扩展存储过程:EXEC sp_dropextendedproc 'xp_cmdshell'恢复删除的扩展存储过程:EXEC sp_addextendedproc xp_cmdshell, @dllname='xplog70.dll'xp_cmdShell -> xplog70.dllxp_dirtree -> spstart.dll
阅读全文
摘要:--insert 触发器create trigger tri_insert on student for insert as declare @stuID char(10) select @stuID=s.stuID from student s inner join inserted i on s.stuID=i.stuID if @stuID='001' begin raiserror('不...
阅读全文
摘要:<html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title>无标题页</title></head><body><script type="text/javascript"> function rollImg(o...
阅读全文
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default5.aspx.cs" Inherits="Default5" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD...
阅读全文
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta ...
阅读全文
摘要:<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>无标题页</title></head>代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www....
阅读全文
摘要:private Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> [DllImport("user32.dll", EntryPoint = "MessageBoxA")] static extern int MsgBox(int ...
阅读全文