|
|
Re: Will Suppliment logging finish [message #255601 is a reply to message #255566] |
Wed, 01 August 2007 04:47 |
Arju
Messages: 1554 Registered: June 2007 Location: Dhaka,Bangladesh. Mobile:...
|
Senior Member |
|
|
SQL> select sid , username, status from v$session where username='STRMADMIN';
SID USERNAME STATUS
---------- ------------------------------ --------
288 STRMADMIN ACTIVE
302 STRMADMIN INACTIVE
SQL> select sid from v$lock where sid in (288,302);
SID
----------
302
SQL> select sid,wait_time,state,lockwait,seconds_in_wait from v$session where username='STRMADMIN';
SID WAIT_TIME STATE LOCKWAIT SECONDS_IN_WAIT
---------- ---------- ------------------- ---------------- ---------------
288 -1 WAITED SHORT TIME 0
302 0 WAITING 930
SQL> select sid, request,block,type from v$lock where sid=302;
SID REQUEST BLOCK TY
---------- ---------- ---------- --
302 0 0 TX
302 is in v$lock. What to do?Michel keep in contact.
[Updated on: Wed, 01 August 2007 04:58] Report message to a moderator
|
|
|
|
|
|
|
|
Re: Will Suppliment logging finish [message #255628 is a reply to message #255566] |
Wed, 01 August 2007 06:03 |
Arju
Messages: 1554 Registered: June 2007 Location: Dhaka,Bangladesh. Mobile:...
|
Senior Member |
|
|
Oh Michel this Supplemental logging really finished me .
SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA
2 (PRIMARY KEY, UNIQUE, FOREIGN KEY) COLUMNS;
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA
*
ERROR at line 1:
ORA-32593: database supplemental logging attributes in flux
How long time I should wait?
I performed in another database it took almost milisecond.But the database in which it was successfully finished in that there is less number of tables and no user is currently logged on except me.
What I should do now?.
[Updated on: Wed, 01 August 2007 06:10] Report message to a moderator
|
|
|
|
|
|
|