Vault Pro 2013 - Scheduled Backup Question

Vault Pro 2013 - Scheduled Backup Question

Anonymous
Not applicable
1,683 Views
6 Replies
Message 1 of 7

Vault Pro 2013 - Scheduled Backup Question

Anonymous
Not applicable

I'm asking this on behalf of our IT department.

 

They let Vault run its scheduled backups.  When it does, the file name seems to be a unique name that includes the date and time.  IT runs a backup on computer running Vault.  Those backups are already serialized by date.  So the serialized Vault backups are redundant.

 

Is there any way to have Vault backup, preferably to a network drive, every night using the same file name for the backup?  If necessary, it could be to a local drive.  Using the same file name every time seems to be the key.

 

0 Likes
Accepted solutions (1)
1,684 Views
6 Replies
Replies (6)
Message 2 of 7

ihayesjr
Community Manager
Community Manager

Sorry but currently the name of the backup folder is not configurable.




Irvin Hayes Jr
Principal Product Manager
Autodesk, Inc.

Vault - Under the Hood Blog
0 Likes
Message 3 of 7

Anonymous
Not applicable

How about the "over-write" part?  Can it be made to delete the previous night's backup?  Any plans to improve the configurability of the backup feature?

 

Just so it's understood what's happening: Vault makes its full backup of X gig.  Next night, new backup next to the old one - 2X gig.  Then 3X, 4X, etc.  The backup Vault makes is then getting backed up elsewhere.  Once that's backed up, it doesn't need to be backed up again and again.  But unless we manually delete the previous files, that's what happens.

 

0 Likes
Message 4 of 7

ihayesjr
Community Manager
Community Manager

Here is an example script that you can use to delete the old backup.  You can modify it to fit your needs.

 

@ECHO OFF

REM PROVIDING THE BEST RESULTS FOR BACKING UP THE VAULT

REM DELETE B AND CASCADE A BACKUP SUBDIRECTORIES

RMDIR /Q /S "C:\Backup\Vault\B"

REN C:\Backup\Vault\A B

REM CREATE A NEW DIRECTORY FOR THE BACKUP

MKDIR "C:\Backup\Vault\A\"

REM START THE BACKUP PROCESS (THIS IS ONE LINE OF TEXT)

"C:\Program Files\Autodesk\Data Management Server 2008\ADMS Console\Connectivity.ADMSConsole.exe" –Obackup -B"C:\Backup\Vault\A" -VUadministrator –VP<password> -S




Irvin Hayes Jr
Principal Product Manager
Autodesk, Inc.

Vault - Under the Hood Blog
0 Likes
Message 5 of 7

Anonymous
Not applicable

Looks a lot like a batch file.  Would this be run from outside Vault?  IT tells me Vault doesn't allow scripting.

0 Likes
Message 6 of 7

ihayesjr
Community Manager
Community Manager
Accepted solution

Bill,

 

The backup can run from command line parameters on a schedule using the Windows Task Scheduler.

See Command Line Server Console

 

You can wrap the command line in a batch file and perform what you are looking for.




Irvin Hayes Jr
Principal Product Manager
Autodesk, Inc.

Vault - Under the Hood Blog
0 Likes
Message 7 of 7

Anonymous
Not applicable

Looks like that ought to work.  They were setting it up and trying it.  Thank you.

0 Likes