asp 온라인 백업 및 sqlserver 데이터베이스 복구 코드
6141 단어 백업회복 하 다.sqlserver 데이터베이스
<%
SQL="backup database to disk='"&Server.MapPath("backup")&"\"&"backuptext.dat"&"'"
set cnn=Server.createobject("adodb.connection")
cnn.open "driver={SQL Server};Server= ;uid=sa;pwd="
cnn.execute SQL
on error resume next
if err<>0 then
response.wrITe " :"&err.Descripting
else
response.wrITe " !"
end if
%>
2,복구 sqlserver
<%
SQL="Restore database from disk='"&Server.MapPath("backup")&"\"&"backuptext.dat"&"'"
set cnn=Server.createobject("adodb.connection")
cnn.open "driver={SQL Server};Server= ;uid=sa;pwd="
cnn.execute SQL
on error resume next
if err<>0 then
response.wrITe " :"&err.Descripting
else
response.wrITe " !"
end if
%>
ACCESS 원리 와 마찬가지 로
<%
'*****************************************
function CopyTo(ByVal cFile,ByVal toFile)
cFile=Server.MapPath(cFile) ‘
toFile=Server.MapPath(toFile) ‘
Dim cFso,cf
set cFso=Server.CreateObject("Scripting.FileSystemObject")
cFso.fileexists(cFile)
cFso.Copyfile cFile,toFile
end function
'*********************************************
' ASP ACCESS
' databackup.asp
dim dbpath,bkfolder,bkdbname,fso,fso1
call main()
call main2()
conn.close
set conn=nothing
sub main()
if request("action")="Backup" then
call backupdata()
else
%>
<table cellspacing=1 cellpadding=1 align=center width="90%">
<tr>
<th height=25 >
<B> </B>
</th>
</tr>
<form method="post" action="databackup.asp?action=Backup">
<tr>
<td height=100 style="line-height:150%">
( ):
<input type=text size=15 name=DBpath value="../mdb/database.mdb"><BR>
( ):
<input type=text size=15 name=bkfolder value=../Databackup> , <BR>
( ):
<input type=text size=15 name=bkDBname value=database.mdb>
, , , <BR>
<input type=submIT value=" "><hr align="center" width="90%" color="#999999"></td>
</tr>
</form>
</table>
<%
end if
end sub
sub main2()
if request("action")="Restore" then
Dbpath=request.form("Dbpath")
backpath=request.form("backpath")
if dbpath="" then
response.wrITe " "
else
Dbpath=server.mappath(Dbpath)
end if
backpath=server.mappath(backpath)
Response.wrITe Backpath
Set Fso=server.createobject("scripting.filesystemobject")
if fso.fileexists(dbpath) then
fso.copyfile Dbpath,Backpath
response.wrITe "<font color=red> !</font>"
else
response.wrITe "<font color=red> !</font>"
end if
else
%>
<table align=center cellspacing=1 cellpadding=1 width="90%">
<tr>
<th height=25 >
<B> </B>
</th>
</tr>
<form method="post" action="databackup.asp?action=Restore">
<tr>
<td height=100 >
( ):
<input type=text size=30 name=DBpath value="../Databackup/database.mdb"> <BR>
( ):
<input type=text size=30 name=backpath value="../mdb/database.mdb"><BR>
<input type=submIT value=" "> <hr width="90%" align="center" color="#999999">
<font color="#666666">・ : </font></td>
</tr>
</form>
</table>
<%
end if
end sub
sub backupdata()
Dbpath=request.form("Dbpath")
Dbpath=server.mappath(Dbpath)
bkfolder=request.form("bkfolder")
bkdbname=request.form("bkdbname")
Set Fso=server.createobject("scripting.filesystemobject")
if fso.fileexists(dbpath) then
If CheckDir(bkfolder) = True Then
fso.copyfile dbpath,bkfolder& "\\"& bkdbname
else
MakeNewsDir bkfolder
fso.copyfile dbpath,bkfolder& "\\"& bkdbname
end if
response.wrITe "<font color=red> , " &bkfolder& "\\"& bkdbname+"</font>"
Else
response.wrITe "<font color=red> 。</font>"
End if
end sub
'------------------ -------------------
Function CheckDir(FolderPath)
folderpath=Server.MapPath(".")&"\\"&folderpath
Set fso1 = CreateObject("Scripting.FileSystemObject")
If fso1.FolderExists(FolderPath) then
'
CheckDir = True
Else
'
CheckDir = False
End if
Set fso1 = nothing
End Function
'------------- ---------
Function MakeNewsDir(foldername)
dim f
Set fso1 = CreateObject("Scripting.FileSystemObject")
Set f = fso1.CreateFolder(foldername)
MakeNewsDir = True
Set fso1 = nothing
End Function
%>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Proxmox 백업에서 물리 디스크를 제외하는 방법신세를 질 것입니다. 다음과 같은 구성으로 물리 디스크를 통과한 VM을 만들었습니다. (VMWare에서 말하는 RDM) 그러나 이러한 VM은 스냅샷을 사용할 수 없습니다. 또, 백업하려고 하면 모든 드라이브의 백업이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.