- + P A

- 自动备份文件

      【网页编程】 2009-2-20 10:1

on error resume next
dtmYesterday1 = Date
dtmYesterday = Date-4
strYear1 = Year(dtmYesterday1)
strYear = Year(dtmYesterday)
strMonth1 = Month(dtmYesterday1)
strMonth = Month(dtmYesterday)
strDay1 = Day(dtmYesterday1)
strDay = Day(dtmYesterday)

If Len(strMonth1) = 1 Then 
    strMonth1 = "0" & strMonth1
End If 

If Len(strMonth) = 1 Then 
    strMonth = "0" & strMonth 
End If

If Len(strDay1) = 1 Then 
    strDay1 = "0" & strDay1 
End If

If Len(strDay) =

标签集:TAGS:自动备份文件
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 如何利用SQL2008 实现远程备份

      【网页编程】 2009-2-20 9:42
第一步:映射网络硬盘

--exec   master..xp_cmdshell   'net   use   Q:   \\共享文件夹   "密码"   /user:IP用户名'  --映射网络硬盘

--exec   master..xp_cmdshell   'net   use   Q:   /delete' --删除网络硬盘

第二步 :写存储过程

CREATE PROCEDURE [nikko_backup] AS

declare

@prefix nvarchar(100),

@datefile nvarchar(100),

@datefile1 nvarchar(100),

@bakfile nvarchar(100),

@rarfile nvarchar(100),

标签集:TAGS:实现远程备份
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 一个非常漂亮的进度滚动条[转]

      【网页编程】 2006-5-11 19:17
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="1" rowspan="2"></td>
<td width=& ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 网页统计图--曲线图

      【网页编程】 2006-5-11 19:12
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'参数含义(数组,横坐标,纵坐标,图表的宽度,图表的高度,图表标题,X轴单位,Y轴单位)
function table1(stat_array,table_left,table_top,all_w ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 网页统计图--直方图

      【网页编程】 2006-5-11 19:7
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'参数含义(数组,横坐标,纵坐标,图表的宽度,图表的高度,图表标题,X轴单位,Y轴单位)
function table1(stat_array,table_left,table_top,all_w ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()