This is the dump configuration script:
-- Dump configuration according to SAP note 1588316 v10
-- Replace with the correct sid!
use master
go
-- Configuration for the dump of the SAP db
sp_config_dump @config_name='ESPDB',
@stripe_dir = 'D:\\SAVEESP\\DB' ,
@compression = '101' ,
@verify = 'header' ,
@num_stripes = '3'
go
This is the job script:
dump database ESP using config = 'ESPDB'
go
Thanks, kind regards.
--
M