Showing posts with label Basic DAF. Show all posts
Showing posts with label Basic DAF. Show all posts

Resetting admin password for dyn/admin

Resetting "admin" password for dyn/admin

Password after resetting: "admin123"

update das_account set password='c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799' where account_name='admin';
commit;


OR

Delete the admin row and reinsert.

delete from  das_account where account_name='admin';
Insert into das_account (ACCOUNT_NAME,TYPE,FIRST_NAME,LAST_NAME,PASSWORD,DESCRIPTION,
LASTPWDUPDATE) values ('admin',1,'Andy','Administrator',
'c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799',null,to_date(
'07-NOV-12','DD-MON-RR'));
commit;

ATG - Database connections

ATG - Database connections

The following diagram explains how ATG Apps connect to their schemas. Following scenario consider three Apps, i.e Production, Staging and Publishing (CA) Application servers.

Image is self explanatory. More detailed information will be updated sooner.

ATG - Schema connections

Note: Staging App is assumed to be Non-switching Datasource App.

In next post, will detail out how ATG's Production and CSC(Customer Service Center) will share Database schemas.