Going into Production soon on our Datawarehouse and we want to start doing nightly off-line backups to a network share.
This works today by issuing these commands:
Code:
CONNECT TO PRODDM;
QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS;
CONNECT RESET;
BACKUP DATABASE PRODDM TO "\\KOCXRAID01\DB2backup" WITH 2 BUFFERS BUFFER 1024 PARALLELISM 1 WITHOUT PROMPTING;
CONNECT TO PRODDM;
UNQUIESCE DATABASE;
CONNECT RESET
;
BUT... this only works if the network share is shared out to EVERYONE\FULL CONTROL.
Tried many different combinations of security on the share, but can't get the backup to run unless the security is wide open..
Does anyone know how to pair back the security on this Network share to a point where the backup will work?? our server guys will not let us leave this Share open as EVERYONE\FULL CONTROL...???