I am uninstalling NW740/DB2/Aix, during the drop database schema step, I face the below issue.
sapinst.log file shows the below issue.
UPDATE COMMAND OPTIONS USING N OFF
DB20000I The UPDATE COMMAND OPTIONS command completed successfully.
SELECT DBADMAUTH, CREATETABAUTH, BINDADDAUTH, CONNECTAUTH, NOFENCEAUTH, IMPLSCHEMAAUTH, LOADAUTH, EXTERNALROUTINEAUTH, QUIESCECONNECTAUTH FROM syscat.dbauth WHERE grantee='SAPTOOLS'
Y N N N N N N N N
TERMINATE
DB20000I The TERMINATE command completed successfully.
ERROR 2014-02-28 13:21:47.860
CJS-00030 Assertion failed: in
function (role, readAccountData) {
if (readAccountData === undefined) {
readAccountData = true;
}
NWUsers.trace("NWUsers.getAccountData(", role, ")");
this._initAccountData();
ASSERT(arguments.callee, this.haveAccountData(role), "role " + role + " is not created yet.");
var ad = this._readAccountDataFromKeydb(role);
if (readAccountData) {
ad = this._readAccountData(ad);
}
var masterpwd = this.getMasterPassword();
if (ad.password == "" && this._useMasterPasswordForAccountData(ad) && ad.type == "USER" && masterpwd !== undefined && role != NWUsers.roles.J2EEGuest && !ad.locked) {
ad.password = masterpwd;
}
NWUsers.trace("NWUsers.getAccountData(): ", dump_properties(ad));
return ad;
}
role SAPSIDDB is not created yet.
ERROR 2014-02-28 13:21:47.863
MUT-03025 Caught ESAPinstException in module call: .
ERROR 2014-02-28 13:21:48.592
FCO-00011 The step revoke_privileges with step key |NW_Uninstall|ind|ind|ind|ind|0|0|NW_System_Uninstall|ind|ind|ind|ind|uninstall|0|NW_uninstallDB|ind|ind|ind|ind|uninstDB|0|NW_DB6_Uninstall|ind|ind|ind|ind|db6_uninstall|0|NW_DB6_Uninstall_Schema|ind|ind|ind|ind|NW_DB6_Uninstall_Schema|0|NW_DB6_Drop_Schema|ind|ind|ind|ind|NW_DB6_Drop_Schema|1|revoke_privileges was executed with status ERROR ( Last error reported by the step: Assertion failed: in
function (role, readAccountData) {
if (readAccountData === undefined) {
readAccountData = true;
}
NWUsers.trace("NWUsers.getAccountData(", role, ")");
this._initAccountData();
ASSERT(arguments.callee, this.haveAccountData(role), "role " + role + " is not created yet.");
var ad = this._readAccountDataFromKeydb(role);
if (readAccountData) {
ad = this._readAccountData(ad);
}
var masterpwd = this.getMasterPassword();
if (ad.password == "" && this._useMasterPasswordForAccountData(ad) && ad.type == "USER" && masterpwd !== undefined && role != NWUsers.roles.J2EEGuest && !ad.locked) {
ad.password = masterpwd;
}
NWUsers.trace("NWUsers.getAccountData(): ", dump_properties(ad));
return ad;
}
role SAPSIDDB is not created yet.).
INFO 2014-02-28 13:21:49.88
Creating file /tmp/sapinst_instdir/GENERIC/DB6/UNINSTALL/AS/__instana_tmp.xml.
Do I need to assign any roles manually?
Regards
Senthil