Revision #1

You are currently reviewing an older revision of this page.
Go to current version
Backing up Project Server database can be easier by using a procedure that includes all the database that you want to include. I drop thet backup files on a share drive that is isolated from the server
--
-- Be sure the Share has write permissions for the SQL Process
--
USE MASTER
BACKUP DATABASE ProjectServer_Archive TO DISK = '\\WCC002VS\BackupSQL\ProjectServer_Archive.BAK' WITH FORMAT
GO

BACKUP DATABASE ProjectServer_Draft TO DISK = '\\WCC002VS\BackupSQL\ProjectServer_Draft.BAK' WITH FORMAT
GO
BACKUP DATABASE ProjectServer_Published TO DISK = '\\WCC002VS\BackupSQL\ProjectServer_Published.BAK' WITH FORMAT
GO
BACKUP DATABASE ProjectServer_Reporting TO DISK = '\\WCC002VS\BackupSQL\ProjectServer_Reporting.BAK' WITH FORMAT
GO

BACKUP DATABASE PWA_Content TO DISK = '\\WCC002VS\BackupSQL\PWA_Content.BAK' WITH FORMAT
GO

BACKUP DATABASE SharePoint_Config TO DISK = '\\WCC002VS\BackupSQL\SharePoint_Config.BAK' WITH FORMAT
GO
Revert to this revision