Friday, January 17, 2020

Generate DB and DB Extract from Server Manager

Generate DB from Server Manager

To generate DB using server manager you require to login into Server Manager then type the following command:

start task for comp GenNewDb server ss_dev with dbffile=sse_utf8.dbf

After that you can check the progress using below command:

list tasks for comp GenNewDb


Database Extract (DB Exract)

To run Database Extract, firstly connect with server manager then type below command:

start task for comp DbXtract server ss_dev with Client="USER",InitMethod="Sql Anywhere",EncryptLocalDbPwd="False",EncryptLocalDbMethod="None",Username="sadmin user name",Password="sadmin password"    

After that you can check the status using below command:

list tasks for comp DbXtract

For DB Extract of Multiple clients you can use below command:start task for comp DbXtrct with client=client1,client2,client3,client4

In the above mentioned commands, 
ss_dev = Siebel server, and 
USER,client1,client2,client3,client4 = is the name of local user to extract the database for. 

No comments:

Post a Comment

Updating parent BC depending on the status of child BC using configuration

Parent BC: Service Request Child BC: Action Requirement: When all the Actions corresponding to an SR are closed the SR status should be “Clo...