Oracle Instanc has too many tables, way to subset?

<p>Hello,</p><p> </p><p>When i try to bring up an Oracle instance and do a query, thereare so many tables that it takes 10 minutes for H. to bring up thelist of tables.</p><p> </p><p>Is there a way to subset by Owner like TOAD does, so that i'mnot trying to bit off the whole thing at once?</p><p> </p><p>Thanks very much!</p><p> </p><p>BobK</p>

Thanks for the idea. I use the filters all of the time to find tables of interest. Like if I'm looking for tables with product info, I'll put "%prod%", or something like that. But as you suggest, I guess there's no reason why I couldn't key in every one of my 100+ tables of interest so I don't see 300+ tables that are empty and unused.
One thing that worries me is that I would make this huge investment in time (keying into the filter) and I'd hit "clear filter" by accident one day.
I think I'll write a macro in AutoIt and enter the interesting tables in the filter using the (reusable) macro. Thanks again.
-- Dale --

Similar Messages

  • Too many tables with EXECUTE permision

    Hi Gurus,
    I found that my live databases has too many tables with EXECUTE permision. But I dont know how it happens: my query as follows:
    select table_name
    from dba_tab_privs
    where owner='SYS' AND
    privilege = 'EXECUTE' AND
    grantee = 'PUBLIC'
    result
    TABLE_NAME
    /598cc2d9_AWExceptionMessageRe
    /24bd47b0_AWExceptionMessageRe
    /b99e8561_AWExceptionMessageRe
    /968869b8_AWExceptionMessageRe
    /f8bf68b3_AWExceptionMessageRe
    /9abd5a42_AWExceptionMessageRe
    /5e83964b_AWExceptionMessageRe
    /f01cb9e5_AWExceptionMessageRe
    /380f765f_AWExpressCommandExce
    /adef78c4_AWMemberExistsExcept
    /5166f5c2_AWObjectExistsExcept
    TABLE_NAME
    oracle/AWXML/SparseDefinition
    oracle/AWXML/ModelDimRef
    /9d17934e_AWFunctionNotSupport
    /d18d9de8_AWHandlerBaseTest
    DBMS_AW_XML
    INTERACTIONEXECUTE
    CWM2_OLAP_INSTALLER
    DBMS_XSOQ_ODBO
    OLAPI_MDX_ROWSET_IMPL_T
    OLAPI_MDX_ROWSET_TABLE
    16444 rows selected.
    ==========================================================
    Then I execute above query in other database. result was:
    TABLE_NAME
    STANDARD
    UTL_HTTP
    DBMS_PICKLER
    DBMS_JAVA_TEST
    UTL_FILE
    UTL_RAW
    UTL_TCP
    UTL_INADDR
    UTL_SMTP
    DBMS_TRANSACTION
    DBMS_SESSION
    DBMS_DDL
    DBMS_UTILITY
    DBMS_SPACE
    DBMS_ROWID
    DBMS_PCLXUTIL
    DBMS_APPLICATION_INFO
    DBMS_OUTPUT
    DBMS_DESCRIBE
    DBMS_SQL
    DBMS_EXPORT_EXTENSION
    DBMS_JOB
    DBMS_STATS
    DBMS_ZHELP_IR
    DBMS_PSP
    DBMS_RULE
    AQ$_AGENT
    AQ$_DEQUEUE_HISTORY
    AQ$_SUBSCRIBERS
    AQ$_RECIPIENTS
    AQ$_HISTORY
    AQ$_NOTIFY_MSG
    AQ$_DUMMY_T
    DBMS_AQ_EXP_QUEUE_TABLES
    DBMS_AQ_EXP_INDEX_TABLES
    DBMS_AQ_EXP_TIMEMGR_TABLES
    DBMS_AQ_EXP_HISTORY_TABLES
    DBMS_AQ_EXP_SUBSCRIBER_TABLES
    DBMS_AQ_EXP_QUEUES
    DBMS_AQ_IMP_INTERNAL
    DBMS_RMIN
    DBMS_RESOURCE_MANAGER
    DBMS_RESOURCE_MANAGER_PRIVS
    DBMS_RMGR_PLAN_EXPORT
    DBMS_RMGR_GROUP_EXPORT
    DBMS_RMGR_PACT_EXPORT
    LOW_GROUP
    DEFAULT_CONSUMER_GROUP
    DBMS_DEBUG_VC2COLL
    DBMS_DEBUG
    PBSDE
    DBMS_SUMMARY
    DBMS_SNAPSHOT
    DBMS_REFRESH
    DBMS_SNAPSHOT_UTL
    DBMS_REFRESH_EXP_SITES
    DBMS_REFRESH_EXP_LWM
    DBMS_TRACE
    DBMS_LOB
    UTL_REF
    UTL_COLL
    ODCIPREDINFO
    ODCIRIDLIST
    ODCIINDEXCTX
    ODCIARGDESCLIST
    ODCIFUNCINFO
    ODCISTATSOPTIONS
    ODCICOLINFOLIST
    ODCIOBJECT
    ODCIOBJECTLIST
    ODCIQUERYINFO
    ODCICONST
    SYSEVENT
    DICTIONARY_OBJ_TYPE
    DICTIONARY_OBJ_OWNER
    DICTIONARY_OBJ_NAME
    DATABASE_NAME
    INSTANCE_NUM
    LOGIN_USER
    IS_SERVERERROR
    SERVER_ERROR
    DES_ENCRYPTED_PASSWORD
    IS_ALTER_COLUMN
    IS_DROP_COLUMN
    GRANTEE
    REVOKEE
    PRIVILEGE_LIST
    WITH_GRANT_OPTION
    DICTIONARY_OBJ_OWNER_LIST
    DICTIONARY_OBJ_NAME_LIST
    IS_CREATING_NESTED_TABLE
    CLIENT_IP_ADDRESS
    DBMS_REPUTIL
    DBMS_REPUTIL2
    DBMS_OFFLINE_RGT
    DBMS_REPCAT_RGT_EXP
    DBMS_REPCAT_INSTANTIATE
    DBMS_CRYPTO_TOOLKIT
    DBMS_RANDOM
    how come it happens? need help from u all !!!!!!!!!!

    you asked why you have such grant found in dba_tab_privs. Let's try to find DBMS_RANDOM (listed on your output) in $ORACLE_HOME/rdbms/admin:
    cd $ORACLE_HOME/rdbms/admin
    grep dbms_random *
    dbmsrand.sql:CREATE OR REPLACE PACKAGE dbms_random AS
    dbmsrand.sql: -- execute dbms_random.seed(12345678);
    dbmsrand.sql: -- execute dbms_random.seed(TO_CHAR(SYSDATE,'MM-DD-YYYY HH24:MI:SS'));
    dbmsrand.sql: -- my_random_number := dbms_random.random;
    dbmsrand.sql: -- my_random_real := dbms_random.value;
    dbmsrand.sql: -- select dbms_random.value from dual;
    dbmsrand.sql: -- insert into a values (dbms_random.value);
    dbmsrand.sql: -- execute :x := dbms_random.value;
    dbmsrand.sql:END dbms_random;
    dbmsrand.sql:CREATE OR REPLACE PACKAGE BODY dbms_random AS
    dbmsrand.sql:END dbms_random;
    dbmsrand.sql:CREATE OR REPLACE PUBLIC SYNONYM dbms_random FOR sys.dbms_random;
    dbmsrand.sql:GRANT EXECUTE ON dbms_random TO public;
    This is run by catproc.sql script which you run while creating database.

  • E Table of aggregate has too many partitions

    Hi,
    While checking performance info of the query I'm getting red light on one of the lines saying aggregate 100067 has too many partitions in E table.
    Could you guys pls let me know what is this all about and how to reslove the same?
    Thanks
    R

    Does your cube have compress after rollup on the aggregates...?
    The aggregate is partitioned in the same way the E fact table is partitioned. You should choose the compress upon rollup option in the rollup tab of the infocube... Set the same and then if possible deactivate and do another rollup to the aggregate...

  • Access 2010 table has too many fields for web database - how to split into two web-compatible tables?

    Hello, 
    I'm in the process of converting an Access 2010 database into a web database and I'm having some trouble. I have a table which has 236 fields, which is more than the 220 field limit for web-compatible tables. I have tried to split this table into two tables
    with a one-to-one relationship, but web tables can only use lookups as relationships. I've tried to connect the tables with a lookup and then synthesize a one-to-one relationship by using data macros but I'm not having much luck.
    I realize that 236 fields is a lot, but it must be set up this way because each field represents a tasks and is a yes/no box to verify that the task has been completed - and the records are different employees for whom which the tasks need to be completed.
    Could someone please help me figure out a way to make this table web compatible?
    Thank you, 
    Ryan

    Hi,
    I found that you've cross post the quesion on our Answer forum, are you satisfiled the reply from there?
    http://answers.microsoft.com/en-us/office/forum/office_2010-access/access-2010-table-has-too-many-fields-for-web/06ee81ea-24ab-48b8-9b8f-0ed08a868bac
    Regards,
    George Zhao
    TechNet Community Support

  • Too many table columns

    Hi,
    I have to create a pdf with a table having multiple columns.
    But the table has too many columns to fit in a A4 page.
    I do not wan to change the paper type. I have to use A4 paper only.
    Is there a way in which I can show the table records in two consecutive rows..
    so that I can split the columns into two rows.
    There will be two header rows... and two data rows (only data rows will repeat)
    data row1 will have data from say fields 1 to 10 and data row 2 will have data from fields 11 to 20.
    Regards
    Reema.

    As far as I know there's probably no way ID is going to do what you want.
    You can place a table across a multiple page spread, but the odds of being able to do that and still keep the file printable are marginal, at best. You can't for example, leave blank space at the gutters unless you are able to add a blank column that spans the gutter, and the limt for multipage spreads is 10 pages wide, whcih doesn't sound like it's probably enough to hold almost 600 columns.
    Perhaps placing the table using named ranges of appropriate widths would work...

  • Select from (too many) tables

    Hi all,
    I'm a proud Oracle Apex developer. We have developed an Interactive Report that is generated from many joined tables in a remote system. I've read that to improve performances we can do the following:
    1) Create a temporary table on our system that stores the app_user id and the colmun as a result of the query
    2) Create a procedure that does:
    declare
    param1:= :PXX_item
    param2:= :PXY_item.
    param3:= :V('APP_USER')
    insert into <our_table>
    (select param3, <query from remore system>)
    commit;
    3) Rediresct to a query page where IR reads from this temp table
    On "Exit" button there's a procedure that purge table data of that user (delete from temp where user=V('app_user'), so the temp table is only filled with necessary data.
    Do you see any inconvenience? Application will be used from about 500 users, about 50 concurrent users at a time.
    Thank you!

    1) We don't have a control on source syste, we can only perform query on itI was referring to a materialized view on the system where Apex is installed, not on the source database.
    2) There are many tables involvedI don't understand why this is a problem. Too much data I can see, but too many tables... not so much.
    3) Data has to be in real time, with no delayThis would a problem for MV or collections. The collections would store the data as of the initial query. Any IRs using the collection after the fact would be using stale data. If you absolutely have to have the data as of right now every time, then the full query must run on the remote system every time. Tuning that query is the only option to make it faster.
    4) There are many transactions on the source tables (they are the core of the source system) and so MV could not be refreshed so fastProbably could be with fast refresh enabled, but not necessarily practical to do so. As I indicated in 3, you have painted yourself into a corner here. You have indicated a need for a real-time query and that eliminates a number of possibilities for query-once use-many performance solutions.

  • Bex Query: Too many table names in the query The maximum allowable is 256

    Hi Experts,
    I need your help, Im working on a Query using a multiprovider of 2 datastores, I need to work with cells to assign specific acconts values to specific rows and columns, so I was creating a Structure with elements from a Hierarchy, but I get this error when I'm half way of the structure:
    "Too many table names in the query. The maximum allowable is 256.Incorrect syntax near ')'.Incorrect syntax near 'O1'."
    Any idea what is happening? is ti possible to fix it? do I need to ask for a modification of my Infoproviders? Some one told me is possible to combine 2 querys, is it true?
    Thanks a lot for your time and pacience.

    Hi,
    The maximum allowable limit is 256 holds true. It is the max no. of characteristics and key figures that can be used in the column side. While creating a structure, you create key figures (restricted or calculated) and formulas etc.. The objects that you use to create these should not be more than 256.
    http://help.sap.com/saphelp_nw70/helpdata/EN/4d/e2bebb41da1d42917100471b364efa/frameset.htm
    Not sure if combination of 2 query's is possible.  You can use RRI. Or have a woorkbook with 2 queries.
    Hope it helps.

  • %COMMON_FIB-6-FIB_RECURSION: has too many (8) levels of recursion during process switch

    Hi,
    I often get this message in my logs;
    %COMMON_FIB-6-FIB_RECURSION:  has too many (8) levels of recursion during process switch
    Does anyone have any idea what this means? This same router has, on average, one disconnect from our GRE tunnel each day and I can't connect to it externally until the cable modem is rebooted. The log above is the only thing I've got to go on really. Everything else looks normal.
    Thanks!

    i am using weblogic 10.3 but still getting <Oct 8, 2009 3:26:35 AM EDT> <Error> <Application Poller> <BEA-149411> <I/O exception encountered java.io.FileNotFoundException: /my123Domain456/123456ServerName/servers/123456ServerName/cache/.app_poller_lastrun (Too many open files).
    java.io.FileNotFoundException:
    My clients are getting to others as I use Oracle 10G Rac oracle 10 Weblogic and getting 100s of problems, save me geeks.

  • Trying to download a movie on a laptop.  tellls me i can't play it on that computer because my apple account has too many users.  how do i see who is listed as a user so that i can delete one if it's not needed

    trying to download a movie on a laptop.  tellls me i can't play it on that computer because my apple account has too many users.  how do i see who is listed as a user so that i can delete one if it's not needed
    please help
    [email protected]

    The list you saw that shows what drivers are available from Apple Software Update is based on what drivers are supplied by the vendor to Apple. So it would appear that HP has not provided Apple with a scanner driver for 10.9 (known as an ICA driver), or provided an update if one was available for a previous version of OS X, so that you can scan from Image Capture.
    I checked the HP web site for your model and they don't show any scanner driver or scanning software. If there was a scanner driver, you would be able to use Vuescan.
    As for the Scan button not working, the following is documented by HP
    Scanning to the computer from the printer control panel is not available when you scan with Preview, Image Capture, or Printer browser methods. You must use HP Scan software to scan from the printer.
    But there does not appear to be any version of HP Scan software available for 10.9. So unless someone else has some workaround, it seems that you won't be able to scan with this model of HP.

  • How do I add a VM that has too many dependencies to be shown as "Map View " ?

    When in Table View there is no option to add/remove a VM to an App or to create/delete an App.
    f.eks. I added three VM's and created an App called "Convergion"
    Two of those VM's can only be shown in "Table View" because of too many outgoing dependencies.
    I accidentally removed the Third VM (the one that could be shown in "Map View") and now I have no way of:
    1) Adding the third VM back to the App
    2) Removing the App or
    3) Remove the two remaining VM's from the App
    So, to create the App again I have to call it "Convergion~1" or something similarilly stupid.
    But two of the VM's now still belong to "Convergion" (the now "Zombied" App) as well as "Convergion~1"
    Any ideas ?
    P.S. I should be able to create an App and manually add the VM's needed from the vCenter Inventory (Search box or similar) without having to have a "Visual" contact in the Map View.
    Some maps get huge and it's not very practical.
    Consider this a feature request.

    Hi,
    I'm Galit from the QE team of VIN.
    All the things that you've described are correct.
    It is actually an edge case where the only VM, that the manual App can be managed from its Map view, was removed from the App.
    The Manual App management is as designed, and may be changed in the future.
    There are 2 ways to overcome this situation:
    1.You can, as you stated, create another Manual App with similar name and remain with the "Zombie App".
    2. To run a specific command that will remove the Zombie App from the DB.
    Please note that option no. 2 involves using an API that we do not publish.
    If you would like to use option no. 2 contact me in private and we will see about supplying the relevant commands to run in order to delete the "zombie" application.
    Thanks,
    Galit Gutman

  • ITunes 9/iPod OS 3.1.1 combo has too many issues/bugs

    After upgrading to iTunes 9 and Touch to 3.1.1 I am having too many issues:
    iPOD TOUCH:
    1. Everytime I launch music, it displays "upgrading library" message and takes eons (5 minutes) to show the library
    2. Playlists don't work: most playlists show tracks in random order not matching iTunes, and also with total number of tracks different from iTunes. This had rendered most playlist as useless. Wondering when Apple will fix it.
    iTUNES:
    1. Much hyped arranging of applications through iTunes doesn't work. I took whole lot of time arranging the applications in iTunes virtual desktop, but after syncing I found entire arrangement lost both in iTunes and in Touch. I did it many times, but with the same unwanted result.
    Any help?

    That's what i used to tell people. but I up(down)graded to version 9 itunes, and version 3.1.1 for the ipod touch and now i can't restore the ipod because itunes can't connect to the software update server. why do i want to restore the ipod touch? mostly because every extra app added refuses to work! nothing launches. even apple's own remote app can't push through this mess the updates have created.
    I'm on a mac. 10.5.8 everything used to work just fine before these updates. What hurts even more is that i actually had to pay for the touch 3.1.1 update as well, and now i've got a non-functioning ipod. cheers apple. How about they release an update to reverse the wonderful job this latest version has performed... Or at least a single company communication as to what is wrong, and how to fix it, rather than a dozen different suggestions in forums and non-existent support documentation!
    rant now over. please just fix it apple.

  • My ipod 5th gen has too many GB on the other, and now the rest of my apps and music won't download. What do I do?

    so I went to sync my ipod, and the computer says i have too many GB of space being used on my ipod for "other". I checked yesterday and there wasn't nearly that much space being used. What happened, and can i fix it? Thanks!

    What is the Other on my iPhone and How to Remove It
    An "other" larger than about 1 1/2 usually indicates that the "other" includes corrupted files.
    First try:
    "First you go settings/general/usage/music/then left swipe over music and press delete and you would think it deletes your music but it doesn't instead it deletes your other but make sure your ipod is connected to a computer while doing this"
    as recommended by:
    How do I get rid of "other" storage: Apple Support Communities
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Oracle Instance has been terminated

    Hi,
    we are facing some weird problem with one of our Oracle database where oracle instance is getting terminated very frequently. below are the alert logs. Kindly suggest what could be the issue & how to resolve it.
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    This is an IBM X series server & we have get hardware checked from vednor who have not found anything wrong with hardware (HDD).
    Sat Aug 25 08:00:34 2012
    KCF: read, write or open error, block=0xfba4 online=1
    file=2 'J:\ORACLE\DB1\DB1\SYSAUX01.DBF'
    error=27070 txt: 'OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 1117) The request could not be performed because of an I/O device error.'
    Errors in file J:\ORACLE\DB1\diag\rdbms\DB1\DB1\trace\DB1_dbw0_7012.trc:
    ORA-63999: data file suffered media failure
    ORA-01114: IO error writing block to file 2 (block # 64420)
    ORA-01110: data file 2: 'J:\ORACLE\DB1\DB1\SYSAUX01.DBF'
    ORA-27070: async read/write failed
    OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 1117) The request could not be performed because of an I/O device error.
    Sat Aug 25 08:00:35 2012
    Errors in file J:\ORACLE\DB1\diag\rdbms\DB1\DB1\trace\DB1_m000_5168.trc:
    ORA-00322: log 3 of thread 1 is not current copy
    ORA-00312: online log 3 thread 1: 'H:\ORACLE\DB1\ORIGLOG3\LOG_G3_M1.DBF'
    Sat Aug 25 08:00:35 2012
    System state dump requested by (instance=1, osid=7012 (DBW0)), summary=[abnormal instance termination].
    System State dumped to trace file J:\ORACLE\DB1\diag\rdbms\DB1\DB1\trace\DB1_diag_6996.trc
    DBW0 (ospid: 7012): terminating the instance due to error 63999
    Dumping diagnostic data in directory=[cdmp_20120825080035], requested by (instance=1, osid=7012 (DBW0)), summary=[abnormal instance termination].
    Sat Aug 25 08:00:49 2012
    Exception [type: IN_PAGE_ERROR, ] [] [PC:0x76E59C12, 0000000076E59C12]
    ERROR: Unable to normalize symbol name for the following short stack (at offset 213):
    dbgexProcessError()+200<-dbgeExecuteForError()+65<-dbgDB1stErrorKGE()+2235<-dbkDB1stKGE_kgsf()+77<-kgeade()+563<-kgerelv()+151<-kgerev()+45<-kgerec5()+60<-sss_xcpt_EvalFilterEx()+1869<-sss_xcpt_EvalFilter()+174<-.1.4_5+59<-0000000076E485A8<-0000000076E59D0D<-0000000076E491AF<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14<-0000000076E81278<-0000000076E59C12<-0000000076E48F14
    Errors in file J:\ORACLE\DB1\diag\rdbms\DB1\DB1\trace\DB1_d000_7044.trc (incident=153752):
    ORA-07445: exception encountered: core dump [PC:0x76E59C12] [IN_PAGE_ERROR] [] [PC:0x76E59C12] [] []
    Incident details in: J:\ORACLE\DB1\diag\rdbms\DB1\DB1\incident\incdir_153752\DB1_d000_7044_i153752.trc
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Sat Aug 25 08:00:52 2012
    Instance terminated by DBW0, pid = 7012
    Dhiraj
    Edited by: 876613 on Aug 25, 2012 1:15 AM

    Sorry i don't have much knowledge about oracle so posting here trace log file details.
    Dhiraj
    Trace file J:\ORACLE\db1\diag\rdbms\db1\db1\trace\db1_dbw0_7012.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Windows NT Version V6.1 Service Pack 1
    CPU : 16 - type 8664, 8 Physical Cores
    Process Affinity : 0x0x0000000000000000
    Memory (Avail/Total): Ph:4773M/8148M, Ph+PgF:23035M/26535M
    Instance name: db1
    Redo thread mounted by this instance: 1
    Oracle process number: 10
    Windows thread id: 7012, image: ORACLE.EXE (DBW0)
    *** 2012-08-25 08:00:34.653
    *** SESSION ID:(161.1) 2012-08-25 08:00:34.653
    *** CLIENT ID:() 2012-08-25 08:00:34.653
    *** SERVICE NAME:(SYS$BACKGROUND) 2012-08-25 08:00:34.653
    *** MODULE NAME:() 2012-08-25 08:00:34.653
    *** ACTION NAME:() 2012-08-25 08:00:34.653
    KCF: read, write or open error, block=0xfba4 online=1
    file=2 'J:\ORACLE\db1\db1\SYSAUX01.DBF'
    error=27070 txt: 'OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 1117) The request could not be performed because of an I/O device error.'
    DDE rules only execution for: ORA 1110
    ----- START Event Driven Actions Dump ----
    ---- END Event Driven Actions Dump ----
    ----- START DDE Actions Dump -----
    Executing SYNC actions
    ----- START DDE Action: 'DB_STRUCTURE_INTEGRITY_CHECK' (Async) -----
    Successfully dispatched
    ----- END DDE Action: 'DB_STRUCTURE_INTEGRITY_CHECK' (SUCCESS, 0 csec) -----
    Executing ASYNC actions
    ----- END DDE Actions Dump (total 0 csec) -----
    error 63999 detected in background process
    ORA-63999: data file suffered media failure
    ORA-01114: IO error writing block to file 2 (block # 64420)
    ORA-01110: data file 2: 'J:\ORACLE\db1\db1\SYSAUX01.DBF'
    ORA-27070: async read/write failed
    OSD-04016: Error queuing an asynchronous I/O request.
    O/S-Error: (OS 1117) The request could not be performed because of an I/O device error.
    kjzduptcctx: Notifying DIAG for crash event
    ----- Abridged Call Stack Trace -----
    ksedsts()+585<-kjzdssdmp()+329<-kjzduptcctx()+288<-kjzdicrshnfy()+87<-ksuitm()+1557<-ksbrdp()+4373<-opirip()+853<-opidrv()+907<-sou2o()+98<-opimai_real()+299<-opimai()+191<-BackgroundThreadStart()+646<-0000000076A1652D<-0000000076E5C521
    ----- End of Abridged Call Stack Trace -----
    *** 2012-08-25 08:00:35.683
    DBW0 (ospid: 7012): terminating the instance due to error 63999
    Dump file j:\oracle\db1\diag\rdbms\db1\db1\trace\db1_dbw0_7012.trc
    Sat Aug 25 08:00:42 2012
    ORACLE V11.2.0.2.0 - 64bit Production vsnsta=0
    vsnsql=16 vsnxtr=3
    *** 2012-08-25 08:00:42.079 ssthreadkillsafe: about to forcefully terminate tid=5904, dumping call stack:
    ------------------- Call Stack Trace ---------------------
    *** 2012-08-25 08:00:42.204
    calling location entry point arg #1 arg #2 arg #3 arg #4
    0000000076E8165A 0000000000000000 0000000000000000 0000000000000011 0000000010847e38 0000000000000011
    000007FEFD3A1203 0000000076E81650 0000000026c0d268 0000000000000000 0000000026c0d1d0 0000000000000000
    ksuitm()+840 000007FEFD3A1150 000000000ae6b180 0000000000000001 0000000000000000 0000000000000000
    ksliwat()+16250 ksuitm() 0000000000000000 0000000000000444 0000000000000000 0000000000000000
    kslwaitctx()+184 ksliwat() 000007ff7b46e698 000007ff7b46e698 000001f4000001f4 0000000000023660
    kslwait()+160 kslwaitctx() 0000000000000001 000007ff747e4240 0000000000000048 0000000145e4d6f9
    ksarcv()+222 kslwait() 000000a2002a280e 00000000000000e2 00000000000000cd 0000000000024dcc
    ksbabs()+539 ksarcv() 00000000000001d0 0000000100000fd8 0000000000000001 000000001d3967e0
    ksbrdp()+1298 ksbabs() 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    opirip()+853 ksbrdp() 000000000000001e 00000001474b1574 0000000026c0f930 0000000000000001
    opidrv()+907 opirip() 0000000000000032 0000000000000004 0000000026c0fd20 4f5c3a4a00000000
    sou2o()+98 opidrv()+150 0000000000000032 0000000000000004 0000000026c0fd20 0000000000000000
    opimai_real()+299 sou2o() 01cd81d90b41b30c 0000000000000000 000e0018000807dc 00050023002e002d
    opimai()+191 opimai_real() 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    BackgroundThreadStart()+646 opimai() 0000000026c0fe68 000000000000000d 0000000000000000 0000000000000000
    0000000076A1652D BackgroundThreadStart() 000000001227de30 0000000000000000 0000000000000000 0000000000000000
    0000000076E5C521 0000000076A16520 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    ---------------- End of Call Stack Trace -----------------
    Call stack acquisition performance stats:
    setup time (lock acquis., memory alloc.): 0 ms
    frame get time (time the target proc was suspended): 94 ms
    symbol translation time: 0 ms
    total time: 94 ms
    *** 2012-08-25 08:00:48.428 ssthreadkillsafe: about to forcefully terminate tid=6232, dumping call stack:
    ------------------- Call Stack Trace ---------------------
    *** 2012-08-25 08:00:48.506
    calling location entry point arg #1 arg #2 arg #3 arg #4
    0000000076E8165A 0000000000000000 0000000000000000 000000000000000d 0000000010847e38 000000000000000d
    000007FEFD3A1203 0000000076E81650 00000000169de798 000080f153baec1f 000007ff01002000 0000000000000000
    sltrusleep()+58 000007FEFD3A1150 0000000000023558 0000002500000000 0000002500000000 0000000000000000
    kskvkrmmain()+817 sltrusleep() 0000000000000000 0000000000000003 0000000000000008 000000209a2e0ea0
    ksbrdp()+1298 kskvkrmmain() 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    opirip()+853 ksbrdp() 000000000000001e 00000001474b1574 00000000169df930 0000000000000001
    opidrv()+907 opirip() 0000000000000032 0000000000000004 00000000169dfd20 4f5c3a4a00000000
    sou2o()+98 opidrv()+150 0000000000000032 0000000000000004 00000000169dfd20 0000000000000000
    opimai_real()+299 sou2o() 01cd8258c2d597a9 0000000000000000 00060019000807dc 0006007000000000
    opimai()+191 opimai_real() 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    BackgroundThreadStart()+646 opimai() 00000000169dfe68 000000000000000d 0000000000000000 0000000000000000
    0000000076A1652D BackgroundThreadStart() 000000000b79d160 0000000000000000 0000000000000000 0000000000000000
    0000000076E5C521 0000000076A16520 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    ---------------- End of Call Stack Trace -----------------
    Call stack acquisition performance stats:
    setup time (lock acquis., memory alloc.): 0 ms
    frame get time (time the target proc was suspended): 62 ms
    symbol translation time: 0 ms
    total time: 62 ms
    *** 2012-08-25 08:00:52.453
    ksuitm: waiting up to [5] seconds before killing DIAG(6996)

  • How do i run a class which has too many dependencies/class/jar file

    i am very new in java environment, i have developed a class which has to many jar file, it works fun when i run it from ide but problem arise which i wanna run it from command promt like
    java classname
    here is my code
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.HashMap;
    import java.util.Map;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.xml.JRXmlLoader;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.view.JasperViewer;
    public class ReportViewer {
         public static void main(String[] args) {
              try {
                   JasperDesign jasperDesign = JRXmlLoader.load("EmpDeptReport.xml");
                   JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);
                   Map parameters = new HashMap();
                   parameters.put("Title", "JasperReport");
                   Connection conn = Database.getConnection();
                   JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,
                             parameters, conn);
                   JasperExportManager.exportReportToPdfFile(jasperPrint, "Sebl_Statement.pdf");
                   JasperViewer.viewReport(jasperPrint);
              } catch (JRException e) {
                   e.printStackTrace();
              } catch (SQLException e) {
                   e.printStackTrace();
    so expert people , please help a novice people.
    [code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    If you place all of your extra .jar files into a "lib" folder in same folder as your jar file then you can call the java class easily using a script similar to.....
    #--------- runJava.bat file to call java program --------------------
    cp=.
    for f in lib/*.jar; do cp=$cp:$f; done
    java -cp $cp:PROGRAM_JAR_FILE.jar com.myclass.mainclass
    #--------- end script -------------
    This loops over the *.jar files in the lib folder and adds them to the classpath. Please note that ":" is used as a cp seperator since this script was run on linux.
    hth,
    Robin

  • Why Has Too Many Tabs Been Suddenly Removed?

    Firefox and add ons have been working fine.
    Following a crash I am now informed that Too Many Tabs 1.3.6 is not compatible with Firefox 3.6.18 .
    I don't want to upgrade because, usually, numerous add ons fail to work with upgrades and an upgrade tends to be a retrograde step as regards add ons.
    Firefox usually issues new versions prematurely, and tends to put the cart before the horse as regards add ons.
    They can't patiently wait until add ons are ready and compatible.

    I can't see why there would be a problem. Have you tried uninstalling and re-installing Too Many Tabs? If you have continuing problems you should get in touch with the developer.
    Waiting for add-on developers would take forever and a day. The worst culprits are the toolbars of big commercial operations who have many months notice of version changes. And often the changes required are truly minor. I manage very well with no third party toolbars.
    My extensions have not needed updating for weeks. If you have an extension that is lagging there are often better alternatives, certainly better maintained. Too Many Toolbars doesn't seem to be a culprit.
    Sorry for the lecture. I have no connections with Firefox except as a happy user.

Maybe you are looking for