Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
541 views
in Technique[技术] by (71.8m points)

backup - asp Automatic copy or download of database file from online to local pc

I want to make automatic copy or download of database file from online to my local pc in a folder created and names by date. if its done I will run this asp file everyday using windows task scheduler to make a backup. I write this code it work in localhost.

<%
Set objFSO = CreateObject("Scripting.FileSystemObject")
Folder = "d:db_backup" & ""
iss_no=(FormatDateTime(date,1))
objFSO.CreateFolder (Folder&iss_no)
objFSO.CopyFile "http://mywebsite.com/database/contracts.accdb", (Folder&iss_no) &""& "trust.accdb"
%>
question from:https://stackoverflow.com/questions/65903578/asp-automatic-copy-or-download-of-database-file-from-online-to-local-pc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...