Backup configuration in SAP Sybase
- Kshitij Shrivastava
- Aug 3, 2017
- 1 min read
1 Prerequisites:
Access of backend.
User: sybSID
User: sapsa
2 Solutions:
We have 2 scenarios here:
1: Configuration for backup.
2: Configuration for log-backup.
Configuration for Backup:
Login with user sybsid
Now change the user sapsa by command
isql –Usapsa -SSID Enter password.
1>use master
2>go
1> sp_config_dump @config_name='SIDDB',
2> @stripe_dir = 'path of directory where we want to store the data backup',
3> @compression = '101’,
4> @verify = 'header'
5> go
Configuration for Log:
Login with user sybsid
Now change the user sapsa by command
Isql –Usapsa -SSID Enter password.
1>use master
2>go
1> sp_config_dump @config_name='W01SID',
2> @stripe_dir = 'path of directory where we want to store the log backup',
3> @compression = '101',
4> @verify = 'header'
5> go
Recent Posts
See All#!/bin/bash ############################################################################### #Script Name : kill sidadm sap process...
################################################################################ # UNIX Shell Script for Checking # 1. Whether SAP Has...
Comments