HI Guys ,
I am trying to reset SAP* password in my MAXDB DB 7.6. I know that is a very simple operation and I did it many times in other DBs , but here I have stuck during whole day .
I have connected to SQL Studio as SUPERDBA .
My SAP Schema is "SAPIDS" .
To access usr02 table I run the following SQL :
select MANDT, BNAME, UFLAG from SAPIDS.USR02 where MANDT='000' and BNAME='SAP*'
, but I got the error thet the table does not exist .
I also tried:
select MANDT, BNAME, UFLAG from "SAPIDS"."USR02" where MANDT='000' and BNAME='SAP* ,
select * from SAPIDS.USR02 ; select * from "SAPIDS"."USR02" ;
I switch to Oracle mode also , but Nothing is working !
Also important to say that sql :
select * from tables where owner='SAPIDS'and tablename='USR02'
shows the USR02 table as well .
Any ideas ?
thanks in advance,
Evgeny