Ask a Question related to ASP Database, Design and Development.
-
Atif Munir #1
backup
Hello,
I want to take such a backup of my sprk box...that if the os crash
down.....I may be able to restore the whole os along with all software
installed on my box with one command.
Is there any good idea.
Atif
Atif Munir Guest
-
Backup DLL
Hi, Is anyone aware of a standalone DLL that can be integrated with applications for pg_dump and restore without resorting to asking clients to... -
NT Backup
We have a problem with scheduled backups using the NT Backup program. It looks for the backup selection in the wrong place. eg. if our selection... -
Db2 hot backup
Hi all, it's possibile, with db2 udb personal edition 7.1 on linux, to do an hot backup....or i need to disconnect all client before backup... -
Db2 Backup...
Dear Friends, I don't know anybody has asked this question before or not.But I need a support urgently.How to take online backup in Db2 . Thanks... -
loop - begin backup, end backup Oracle 8.1.7
Hello, we have the problem named after: last weekend (22.12.2002), we did a reorganisation of a tablespace with the tool "sapdba" from SAP.... -
George Thomson #2
Backup
When logged on as an administrator, when I try to backup
my hard drive [c:] using my cd writer [d:]I get the
following message.
The backup file name could not be used
D:\backup.bkf
Please ensure it is a valid path and that you have
sufficient access.
any help would be welcome
George Thomson Guest
-
Mike Mulligan #3
Re: Backup
If you are referring to ntbackup, that program cannot backup directly to CD.
You must backup to your hard drive and then use your CD burning software of
choice to transfer the backup to CD.
Mike Mulligan
"George Thomson" <gthomson@globalnet.co.uk> wrote in message
news:035501c343d3$edef9dd0$a001280a@phx.gbl...> When logged on as an administrator, when I try to backup
> my hard drive [c:] using my cd writer [d:]I get the
> following message.
>
> The backup file name could not be used
> D:\backup.bkf
> Please ensure it is a valid path and that you have
> sufficient access.
>
> any help would be welcome
Mike Mulligan Guest
-
Emilia Maxim #4
Re: Backup
"Maz Ten" <maz@littlePond.com> wrote:
Maz,>I would like to create a button which when pressed will backup my entire
>database onto memory stick or CD RW or similar.
>Can this be done and if so what is the code I need to do this
depends on the Access version. AFAIK A2000 (and probably higher
versions too) won't let you to copy an open DB. You would need a
separate app.
As for how to get a file programmatically on the memory stick or
CD-RW, depends on the CDR software. I have Nero which has a command
line module, and if you're using some UDF packet writing software for
CDRWs like InCD then you can simply use a batch file with xcopy.
But I'd like to ask you: don't you make regular backups including
_all_ your documents, DBs, etc.?
Best regards
Emilia
Emilia Maxim
PC-SoftwareService, Stuttgart
[url]http://www.maxim-software-service.de[/url]
Emilia Maxim Guest
-
Clive Moss #5
Backup
Hi all
I am looking to automatically back up a Access 2002 database, hosted on a
remote server, with some asp code on a daily basis.
Can anyone point me in the right direction
TIA
Clive
Clive Moss Guest
-
McKirahan #6
Re: Backup
"Clive Moss" <clive@REMOVEinstant-image.co.uk> wrote in message
news:VK5Gb.4944$Jl4.43634842@news-text.cableinet.net...> Hi all
>
> I am looking to automatically back up a Access 2002 database, hosted on a
> remote server, with some asp code on a daily basis.
>
> Can anyone point me in the right direction
>
> TIA
>
> Clive
Here's some code I posted in response to another post that is similar to
what you want.
However, a more practical approach would be to convert it to ASP, remove
"WScript.Sleep", and have the Windows Task Scheduler call it every day. If
a timestamp is not needed the delete all lines with "NOW" in them.
'*
'* Downloads file "cFIL" from "cURL" into "cOUT" every "cSEC" seconds.
'* (To abort: press Ctrl+Alt+Del, select "WScript", then "End Task".)
'* (If Timestamp isn't needed then delete all lines containing "NOW".)
'*
Option Explicit
'*
'* Declare Constants
'*
Const cVBS = "download.vbs"
Const cFIL = "logo.gif"
Const cOUT = "C:\temp\"
Const cURL = "http://www.google.com/images/"
Const cSEC = 86400 '= seconds between downloads
'*
'* Declare Variables
'*
Dim strMSG
Dim arrNOW(6)
Dim intNOW
Dim strNOW
' strNOW = "ccyymmhhnnss_"
Dim intOUT
intOUT = 0
Dim strOUT
Dim strURL
'*
'* Fetch File
'*
MsgBox "Download started!",vbInformation,cVBS
Do
'*
'* Timestamp
'*
arrNOW(0) = Now()
arrNOW(1) = DatePart("yyyy",arrNOW(0))
arrNOW(2) = DatePart("m",arrNOW(0))
arrNOW(3) = DatePart("d",arrNOW(0))
arrNOW(4) = DatePart("h",arrNOW(0))
arrNOW(5) = DatePart("n",arrNOW(0))
arrNOW(6) = DatePart("s",arrNOW(0))
strNOW = ""
For intNOW = 1 To UBound(arrNOW)
If (arrNOW(intNOW) < 10) Then
arrNOW(intNOW) = "0" & arrNOW(intNOW)
End If
strNOW = strNOW & arrNOW(intNOW)
Next
strNOW = strNOW & "_"
'*
'* Download
'*
strURL = cURL & cFIL
intOUT = intOUT + 1
'strOUT = cOUT & cFIL ' uncomment if Timestamp not needed
strOUT = cOUT & strNOW & cFIL
strMSG = "#" & intOUT & vbCrLf & strURL & vbCrLf & strOUT
MsgBox strMSG,vbInformation,cVBS
Call fetch(strURL,strOUT)
'*
'* Sleep
'*
WScript.Sleep(1000*cSEC)
Loop
Function fetch(url,out)
'On Error Resume Next
Err.Clear
Dim b
With CreateObject("Microsoft.XMLHTTP")
.Open "GET",url,False
.Send
b = .ResponseBody
If Err.Number <> 0 Or .Status <> 200 Then
fetch = False
Exit Function
End If
End With
With CreateObject("ADODB.Stream")
.Type = 1
.Open
.Write b
.SaveToFile out,2
End With
fetch = Err.Number = 0
End Function
McKirahan Guest
-
Clive Moss #7
Re: Backup
If> Here's some code I posted in response to another post that is similar to
> what you want.
>
> However, a more practical approach would be to convert it to ASP, remove
> "WScript.Sleep", and have the Windows Task Scheduler call it every day.<snip>> a timestamp is not needed the delete all lines with "NOW" in them.
>
Thanks - I'll work on it after the holidays
Clive
Clive Moss Guest
-
TiffanX #8
backup
Help! I need to get the windows server 2003 backup
program that came with the OS, back on my server. The
Icon was deleted and now the entire program is gone. Can
any one help? I have tried to go into control panel ,
add remove programs, windows componets but it isnt listed
there! Thanks Tiffany
TiffanX Guest
-
Miha Pihler #9
Re: backup
You can try and start it by going to Start -> Run -> here type in
ntbackup.exe and click OK.
I hope this helps,
Mike
"TiffanX" <tiffany.kennedy@intermaxcomputer.com> wrote in message
news:1e39d01c45532$fd01b5d0$a101280a@phx.gbl...> Help! I need to get the windows server 2003 backup
> program that came with the OS, back on my server. The
> Icon was deleted and now the entire program is gone. Can
> any one help? I have tried to go into control panel ,
> add remove programs, windows componets but it isnt listed
> there! Thanks Tiffany
Miha Pihler Guest



Reply With Quote

