08 2008 档案

摘要:--1.数据库备份脚本sqlserverbackup.sql-- SQLServer2000数据库系统清理用户数据库日志和备份用户数据库数据脚本declare @dumpfile varchar(50) declare @msg varchar(70) select @dumpfile = 'd:\backup\north' + datename(dw,getdate())+'.bak' sel... 阅读全文
posted @ 2008-08-29 11:36 亦心 阅读(6444) 评论(1) 推荐(0) 编辑
摘要:删除扩展存储过程:EXEC sp_dropextendedproc 'xp_cmdshell'恢复删除的扩展存储过程:EXEC sp_addextendedproc xp_cmdshell, @dllname='xplog70.dll'xp_cmdShell -> xplog70.dllxp_dirtree -> spstart.dll 阅读全文
posted @ 2008-08-25 10:16 亦心 阅读(312) 评论(0) 推荐(0) 编辑
摘要:--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('不... 阅读全文
posted @ 2008-08-22 15:22 亦心 阅读(1020) 评论(0) 推荐(0) 编辑
摘要:<html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title>无标题页</title></head><body><script type="text/javascript"> function rollImg(o... 阅读全文
posted @ 2008-08-19 16:37 亦心 阅读(352) 评论(0) 推荐(0) 编辑
摘要:<%@ 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... 阅读全文
posted @ 2008-08-19 16:32 亦心 阅读(3099) 评论(3) 推荐(1) 编辑
摘要:<!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 ... 阅读全文
posted @ 2008-08-19 16:28 亦心 阅读(964) 评论(1) 推荐(0) 编辑
摘要:<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>无标题页</title></head>代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.... 阅读全文
posted @ 2008-08-19 16:05 亦心 阅读(512) 评论(0) 推荐(0) 编辑
摘要:private Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> [DllImport("user32.dll", EntryPoint = "MessageBoxA")] static extern int MsgBox(int ... 阅读全文
posted @ 2008-08-19 15:32 亦心 阅读(1261) 评论(0) 推荐(0) 编辑