Where is the output of analyze table name validate structure cascade

Hi,
database version:8.1.7.0.0
os :solaris 5.9
since i used to get ORA-00600: INTERNAL ERROR CODE, ARGUMENTS: [25012], [7], [39] and i need to validate the table and this table is very huge(200 gb) where will be the output generated if any error is there in table including indexes.
sql>analyze table event_t validate structure cascade;
Regards
Prakash

Hello Helios
sorry ,
I am using 10.2 and reviewing
http://docs.oracle.com/cd/B14117_01/server.101/b10759/statements_4005.htm#sthref4205
my quote is from this document. My question of an ideal case, when there is no block corruption
regards ,
Pavel
Edited by: Pavel on Oct 17, 2012 3:55 AM

Similar Messages

  • "Analyze ... validate structure cascade" and performance

    Hello!
    Does commands
    Analyze cluster ... validate structure cascade;
    Analyze table ... validate structure cascade;ivalidates shared cursors in SGA ?
    If the statistics collected by this clause are not used by the Oracle Database optimizer, this operation does not any impacts of performance, am I right ?
    Thanks and regards,
    Pavel
    Edited by: Pavel on Oct 17, 2012 4:14 AM

    Hello Helios
    sorry ,
    I am using 10.2 and reviewing
    http://docs.oracle.com/cd/B14117_01/server.101/b10759/statements_4005.htm#sthref4205
    my quote is from this document. My question of an ideal case, when there is no block corruption
    regards ,
    Pavel
    Edited by: Pavel on Oct 17, 2012 3:55 AM

  • Where to see  dim and fact table names for a cube.

    Hello Experts,
    Where to see  dim and fact table names for a cube.

    Do a wild character search with the cube name (with '*' on both sides of the cube name) in transaction code SE11 or LISTSCHEMA...
    For Eg : Cube Name is ZFIN_C111
    Goto transaction code SE11
    Tables - ZFIN_C111 & then F4 would give you all the associated tables for the InfoCube.

  • Weblogic 11g, e.printStackStrace() -  where does the output goes

    I have deployed my j2ee ear in weblogic 11g server. But i am not able to find in any of the logs the output of e.printStackTrace().
    Pls let me know in weblogic 11g where does the output of e.printStackTrace() goes... ? I mean to which log file does it goes.
    I checked the my AdminServer.log and also mydomain.log file, but could not see any exception in this.

    Hi Anilkumar,
    There is a data model document which lists all the tables, I've attached a copy to this response for future reference.
    The job output is stored in the JobOutput table and the jobrun_output field has the actual output.
    Thanks,
    Prakash

  • Is it possible to find the transaction code via table name ??

    Hi
    Can any body please let me know is it possible to find the transaction code via table name ??
    Thanks in advance
    Sesh
    Edited by: seshu_sapfico on Dec 8, 2009 12:21 PM

    Please, specify your requirement... A table could be modified by various programs which are called by numerous transactions.

  • Where is the output panel located at in adobe bridge?

    where is the output panel located at in adobe bridge?

    You might want to ask in Bridge General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • DBXML where is the output storing from?

    Hi,
    I try to use the DBXML utility like steve Muench descries, but I don't no where's the output from this tool.
    I just get a message that the procedure succes ...
    I need to write tje resilt in a .xml file
    If anyone has a Idea how3 to do this it would be much appreciated.
    TIA
    Zlatko
    null

    Would you try to use following command line:
    java OracleXML getXML -user "scott/tiger" "select * from emp"
    Before using this command line please set following libraries into your classpath:
    xsu12.jar(or xsu111.jar), xmlparserv2.jar, classes12.zip.
    null

  • Where does the output of  System.out.write go??

    My question might be silly... but i couldn't find out the exact answer anywhere..
    Where does the output of System.out.write go??!! I am not getting anything in the console.. below is the snippet!
    public class TestWriteApp {
    public static void main(String[] args) {
         char a = 'c';
         System.out.write((byte)a);
    PEACE,
    Sandeep

    Is goes to the console. But a write of a byte isn't the way to see it.
    Try something that will show up easier like
    System.out.println("Hello World");What OS are you using? Are you using a command window? Or a GUI like Netbeans?

  • How to find the interface with the help of target table name

    Hi friends,
    Whether with the help of target table name, is it possible to find the interface name that invokes this target table in ODI 11.1.1.7.
    Thanks in advance.
    Regards,
    Saro

    highlight the datastore in the navigator, expand its sub tree, there is a 'populated by' node, under the node, it will list all datastores which are used as sources to the current datastore
    then expand 'used by'->interfaces, it will show all interfaces which include current datastore(but maybe current datastore is used as source)
    that's all you can get from UI, otherwise I suppose you can use SDK.

  • Table name from structure name

    Hi experts
    can anyone tell me how to find the table name if structure name is known.
    when i press F1 in table field ,it give me struct name and field name.
    how can i find table name from this struct.
    Thanks in advance

    Hi ,
    You can Check the where used list from your structure,
    or
    From SE84 transaction in abap dictionary ,give your
    structure name and execute it will show where it has
    been used.
    Hope it helps
    Regards
    Mansi

  • What is the concept behind using table PA0002 and structure p0002.

    Hi,
    What is the concept behind using table PA0002 and structure p0002.
    Many times, I have seen Looping at structure e.g. p0002, p0006 etc. and data is processed and also seen Looping at table PA0002, PA0006 etc. with further appropriate subtypes if any to retrieve a value and process the same.
    In which context tables like PA,HRP,IT etc. are used and structures p0001,p0002 etc. are used.
    Regards,
    Ameet

    HI,
    As mentioned  that that Structure Pnnnn is user as a internal tablw when a LDB is used.
    Ex.
    TABLES: PERNR.
    INFOTYPES: 0001.
      GET PERNR.
        PROVIDE * FROM P0001 BETWEEN PN-BEGDA AND PN-ENDDA.
        WRITE:  / P0001-PERNR,
                  P0001-STELL,
                  P0001-BEGDA,
                  P0001-ENDDA.
        ENDPROVIDE.
    Here it is important to declare the infotypes you want to read  and so the system will create internal tables  ex. P0001.
    Tables PA0001 are database table with following fields
    MANDT
    .INCLUDE  PAKEY
    .INCLUDE  PSHD1
    .INCLUDE   PS nnnn
    Thanks,
    Poonam.

  • Where is the output of "Reports trace" written to?

    Hi All,
    When I submit a concurrent request there is a button labeled [Debug Options]. Pressing that button opens a window that lists four different options, one of which is "Reports Trace". Does anyone know where the output of a "Reports Trace" is stored?
    I checked the folder where SQL Trace files are written to but couldn't find any files with my req. id or user name at that location.
    (this is on an R12 instance)

    -- To get trace file of a concurrent request
    COLUMN traceid format a8
    COLUMN tracename format a80
    COLUMN user_concurrent_program_name format a40
    COLUMN execname format a15
    COLUMN enable_trace format a12
    SET LINES 80 PAGES 22 HEAD OFF
    SELECT           'Request id: '||request_id ,
                   'Trace id: '||oracle_Process_id,
                   'Trace Flag: '||req.enable_trace,
                   'Trace Name: '||dest.value||'/'||lower(dbnm.value)||'_ora_'||oracle_process_id||'.trc',
                   'Program Name: '||prog.user_concurrent_program_name,
                   'File Name: '||execname.execution_file_name|| execname.subroutine_name,
                   'Status : '||decode(phase_code,'R','Running')||'-'||decode(status_code,'R','Normal'),
                   'SID Serial: '||ses.sid||','|| ses.serial#,
                   'Module : '||ses.module
    FROM           apps.fnd_concurrent_requests req,
                   v$session ses,
                   v$process proc,
                   v$parameter dest,
                   v$parameter dbnm,
                   apps.fnd_concurrent_programs_vl prog,
                   apps.fnd_executables execname
    WHERE           req.request_id = &request
    AND           req.oracle_process_id=proc.spid(+)
    AND           proc.addr = ses.paddr(+)
    AND           dest.name='user_dump_dest'
    AND           dbnm.name='db_name'
    AND           req.concurrent_program_id = prog.concurrent_program_id
    AND           req.program_application_id = prog.application_id
    AND           prog.application_id = execname.application_id
    AND           prog.executable_id=execname.executable_id;
    You can use the above sql for a given concurrent request (assuming you have enabled tracing) to get the full path of the file. Note if you have RAC database then depending on which instance is serving you concurrent request the file will be located in that host.
    Cheers,
    Nagendra Chillale

  • OEM 10G -- how to print the output of a table in a html report

    Hi everyone,
    I am trying to print the out of a particular table from the DB using OEM but having some hard time to do so, does any one know the way. Thanks for reading.
    Oracle version: 10.2
    OS: Windows xp
    Regards,
    katheri

    after login to the OEM ,
    you want the rows of the table or structure of the table?
    you can find administration tab top of the page,
    again you database objects -> tables
    new web page will open -> there you have to enter schema name and table name -> you will get the list of table and then click to view , data types and sizes and all..

  • Need the file extensions database table name

    Hi,
    I need to know the Database table name for file extensions in WCC.
    Please check the image for reference .

    Hi 2790552
    Please look at file doc_config.htm in the location <middleware_home>/Oracle_ECM1/ucm/idc/resources/core/tables/doc_config.htm
    This is the file which helps in building the applet view.
    I do belive that revisions and documents table might be used for validation and other specific things, but thats more in the context of document processing and from component IBR at runtime. But administration sake, i thing it works from the these config files since database doesn't have any table to hold this info.

  • What is the table name for structure field MUEBS???

    Hi...Experts...
        How can I know the table for a screen-field if i get structure from it F1 Technical settings....
    Ex: Here MUEBS is the screen field (Char. Display) in one of the subscreens of VA41. And it is from
          RV45A structure...
    Now how can I know the table name for this field MUEBS.
    I know some methods but they r not help ful.. please try it and get back to me.
    Thanks,
    Naveen.I

    Naveen,
    Table field                    Short Description                                                                               
    VBMUE            Sales Document: Characteristic Overview           
    MUEBS                          Characteristic display                                                                               
    VBMUEZ           Sales Document: Characteristic Overview Assignments
    MUEBS                          Characteristic display                                                                               
    VBMUET           Sales Document: Characteristic Overview Description
    MUEBS                          Characteristic display
    You can find same by SE15>Abap dictonary>fields>table fields.
    Amit.

Maybe you are looking for

  • IPhoto won't open after a reinstall.....

    You'll have to excuse my lack of specific Mac details, as I'm relatively new on the system. I've got a Mac mini, had it for about 8 months, and the system froze up and would not restart. I talked to an associate in an Apple store, told me to reinstal

  • Static Vs Dynamic Safety stock

    Hello Gurus I want to know the following 1. Whats a Dynamic Safety Stock ? 2. The basic difference between  Static Vs Dynamic Safety Stock 3.In which business scenario do we use a Dynamic & in which cases Static safety stock -

  • SELECT statement causing error

    Hi all, a particular errors keeps on popping up when i try to activate my program. Error message is as follows: The field "C~NAME1" from the SELECT list is missing in the GROUP BY clause. addition INTO wa or into (g1,...,gn) is required. fields of ty

  • Flash C5 pro used to create feature length animated films

    First, I have Adobe Production Suite CS5 on it's way and have been loooking for information on using several of the programs like Flash, Photoshop, Illustrator, After Effects and Premiere. How is Flash C5 pro used to create feature length animated fi

  • Excel macro issue

    I have an employee that uses the add-in and works with macros a lot in Excel. Occassionally, we he opens an Excel macro, it causes the Essbase toolbar to stop working. The dropdown essbase menu works, but the toolbar does not. He has to go through ou