Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: import...dead or alive?

RE: import...dead or alive?

From: Hallas, John, Tech Dev <John.Hallas_at_gb.vodafone.co.uk>
Date: Wed, 30 Apr 2003 09:21:50 -0800
Message-ID: <F001.0058CCF6.20030430092150@fatcity.com>


Run top or whatever the unix equivalent on Aix is to see if any processor activity is taking place Check if your redo_logs are switching (and archive log area is not full) check the sum of bytes from dba_segments where segment_name = your_table_name to see if it is growing Check for system_events
Identify what is running from within for each SID identify the one you are interested in with 'select username,sid from v$session;'

select sql_text
from v$sql where hash_value =
  (select sql_hash_value

     from v$session
     where sid = &Enter_a_session_sid);

Check for event waits from v$session_wait and join with v$event_name to get what is being waited for

HTH John

-----Original Message-----
Sent: 30 April 2003 15:07
To: Multiple recipients of list ORACLE-L

How can I find out if an import is dead or alive? I have an import of 1.6M+ rows that's been running for over 45 minutes.

Oracle 8.1.7.0.0
AIX 4.3.3 What can I check?

Thanks,
Saira

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Saira Somani
  INET: saira_somani_at_yahoo.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Hallas, John, Tech Dev
  INET: John.Hallas_at_gb.vodafone.co.uk

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Apr 30 2003 - 12:21:50 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US