Could you please tell me, which oracle commands can get below result?

Could you please tell me, which oracle commands can get below result?
1. Total size of archive generated
TotalArchive (GB) Date
24.415 28-02-2013
14.223 29-03-2013
12.133 30-02-2013
2. Total number of archive logs generated
COUNT(SEQUENCE#) TO_CHAR
123 28-03-13
234 29-03-13
124 30-03-13

997398 wrote:
Could you please tell me, which oracle commands can get below result?
1. Total size of archive generated
TotalArchive (GB) Date
24.415 28-02-2013
14.223 29-03-2013
12.133 30-02-2013
2. Total number of archive logs generated
COUNT(SEQUENCE#) TO_CHAR
123 28-03-13
234 29-03-13
124 30-03-13query V$LOG

Similar Messages

  • Could you please tell me how to resolve the following import error? Thanks.

    Hi,
    When run the following command to import two tables:SPSSDMRESPONSE_LOG and SPSSSCORE_LOG, there are some error in the log. Could you please tell me how to resolve these error? Thanks.
    Command:
    imp S3SLORL10/Pass1234@SPSS file=/yhan/subTables.dmp ignore=y tables=SPSSDMRESPONSE_LOG,SPSSSCORE_LOG
    There are some error in the log file.
    The log file is:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses AL32UTF8 character set (possible charset conversion)
    export client uses WE8MSWIN1252 character set (possible charset conversion)
    . importing S3SLORL10's objects into S3SLORL10
    . importing S3SLORL10's objects into S3SLORL10
    IMP-00061: Warning: Object type "S3SLORL10"."Info224_T" already exists with a different identifier
    "CREATE TYPE "Info224_T" TIMESTAMP '2011-09-21:06:54:13' OID 'A1F8D176EF2949"
    "07882153DE7E4CC9F9' AS OBJECT ("SYS_XDBPD$" "XDB"."XDB$RAW_LI"
    "ST_T","Response" "Response225_COLL","Property" "ModelOutput223_COLL")FINAL "
    "INSTANTIABLE "
    IMP-00063: Warning: Skipping table "S3SLORL10"."SPSSDMRESPONSE_LOG" because object type "S3SLORL10"."Info224_T" cannot be created or has different identifier
    IMP-00061: Warning: Object type "S3SLORL10"."Metric214_COLL" already exists with a different identifier
    "CREATE TYPE "Metric214_COLL" TIMESTAMP '2011-09-20:09:56:02' OID '98999BF48"
    "84F4BAB81D391109E4BB823' AS VARRAY(2147483647) OF "nameValueT"
    "ype208_T""
    IMP-00063: Warning: Skipping table "S3SLORL10"."SPSSSCORE_LOG" because object type "S3SLORL10"."Metric214_COLL" cannot be created or has different identifier
    IMP-00017: following statement failed with ORACLE error 942:
    "ANALYZE TABLE "SPSSDMRESPONSE_LOG" ESTIMATE STATISTICS "
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    IMP-00017: following statement failed with ORACLE error 942:
    "ANALYZE TABLE "SPSSSCORE_LOG" ESTIMATE STATISTICS "
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    Import terminated successfully with warnings.

    *Import of table containing object type(s) fails with IMP-00061 IMP-00063 [ID 203822.1]*
    in short: search for the TOID_NOVALIDATE parameter

  • Could you please tell me the arithmetic of ORA_HASH? Thanks.

    Hello,
    I need to use java code to implement the function of ORA_HASH(expr, max_bucket, seed_value).
    I saw the ORA_HASH(expr, max_bucket, seed_value)'s description from http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/functions097.htm.
    But I still don't know the detailed arithmetic of ORA_HASH(expr, max_bucket, seed_value).
    So could you please tell me the detailed arithmetic of ORA_HASH(expr, max_bucket, seed_value)?
    Thanks.

    Not sure Oracle will actually divulge the internal workings of their functions to you.
    However, they are standard algorithms (depending on which parameter you pass to the function) i.e. it depends on whether you are doing an SHA-1 hash or a MD5 hash etc.
    Information is available on the web...
    e.g.
    http://www.secure-hash-algorithm-md5-sha-1.co.uk/
    which describes who or where the algorithms were developed and then you can look up to see if the actual specifications for them are on the web (they'll be around somewhere) e.g.
    http://en.wikipedia.org/wiki/MD5
    http://infohost.nmt.edu/~sfs/Students/HarleyKozushko/Presentations/MD5.pdf
    http://www.uow.edu.au/~jennie/CSCI971/hash1.pdf
    etc.

  • Could you please tell me why as a Brit resident in Japan therefore having a billing address that is Japanese is forced to only get service from the Japanese online store? Is there not some way of allowing me to select movies and music to buy and download

    Could you please tell me why as a Brit resident in Japan therefore having a billing address that is Japanese is forced to only get service from the Japanese online store? Is there not some way of allowing me to select movies and music to buy and download from other stores. Why do am i forced to try to nread Japanese when I have selected English as my language. The price for Downloads is no different and even if it was I am happy to pay. This also applies to Movie rental which is crazy and extremely restrictive. I a supposed GLOBAL community why does Apple do this.

    You can buy ONLY from the itunes store of your country of residence (As proven by valid billing address of credit card) and ONLY while inside the borders of that country.
    These are the terms of the itunes store.

  • Could you please tell me the secret of fast graphics operations?

    Could you please tell me the secret of fast graphics operations? you see I am trying to make arcade games but you don't know how my games D R A G! It is terrible! I have tried only repainting the areas that move but it still goes even slower than when I use plain old repaint();
    All advice wanted.
    Thanks
    Joshua

    It is pretty simple actually. I usually use free tools, including simple custom profiling code using System.currentTimeMillis(), and the free "hprof" heap profiler that comes with the JDK.
    To run hprof, you invoke java with the -Xrunhprof parameter, in this manner:
    java -Xrunhprof:cpu=samples,depth=5 -classpath (...)
    my.package.MyProgramand it writes the report out to a test file when your program exits. (By default, java.hprof.txt, but see the output from java -Xrunhprof:help for how to send it somewhere else.)
    To make use of the profiling data, go to the end of the file, and you will see the different stack traces and how much time they took of the total execution time.
    You will want to start at the top, at the traces with the highest percentages. Now each trace has a TRACE NUMBER. So you use the summary at the end, with the percentages, to tell you which trace you're interested in.
    Then go up and you will find the traces. I usually search for "TRACE: xxx" in my editor to find the one I'm looking for.
    Hope this helps get you started.
    Cheers,
    Colin

  • Could you please tell how to caculate the salary ?

    Hi all:
         Could you please tell me how to calculate the salary ? what elements should be taken into account?  
         Thank you very much!!!

    Hi Sony
    Ther are many components that are used to calculate a salary.
    It is dependent on the country in which you are implementing the Payroll.
    Can you be little more clear on your question?
    Ravee
    0.99206.33669

  • When I type into Spotlight the name of a folder on the desktop, it doesn't appear in Spotlight. Could you please tell me how to get it right? Thank you.

    When I type into Spotlight the name of a folder on the desktop, it doesn't appear in Spotlight. Could you please tell me how to get it right? Thank you.
    And, what do I do if one of the harddisks on my Mini (2010, SL Server) starts misbehaving?

    Which security software (firewall, anti-virus) do you have?
    Try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps and allows to delete the Firefox program folder.

  • Could you please tell me how to change below infromation to xml?

    Dear Experts,
       Could you please tell me how to change below information to xml?
       I use this function 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send email,but I receive this inormation,could you please tell how to change this inormation to xml.
    3C3F786D6C2076657273696F6E3D22312E302220656E636F64696E673D227574662D38223F3E3C6661786D616B6572646174613E3C6974656D3E3C524543495049454E54533E3C4641583E3C524543495049454E543E3C46495253544E414D453E2667743B266C743B215B43444154415B5D5D2667743B3C2F46495253544E4
    414444524553533E266C743B215B43444154415B5D5D2667743B3C2F454D41494C414444524553533E3C4E554D4245523E266C743B215B43444154415B32373935353733365D5D2667743B3C2F4E554D4245523E3C564F4943454E554D4245523E266C743B215B43444154415B5D5D2667743B3C2F564F4943454E554D42455
    Best Regards,
    Merry

    Are you attaching a document to the mail? If yes, in which format?

  • Could you please tell me, why we need Materialized view?

    Hi
    could you please tell me, why we need Materialized view, when we already have database tables?
    Thanks

    See the Data Warehousing Guide : http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/basicmv.htm#sthref421

  • I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    Is this happing because the external is formatted to PC and not mac?
    Yes that is correct.
    Will I need to get a mac external hard drive if I wish to continue to save my documents like this?
    If you no longer use a PC you could format this drive for the Mac. However be aware that formatting a drive will erase all the data on it. So you would need someplace to copy the data off this drive to while you did the re-format and then you could copy the data back.
    You could get another drive, format it for the Mac and copy the data to it. Then re-format the original drive and use it as a backup drive. Always good to have backups.
    Post back with the drive type and size of the current drive, if you are doing backups now and how and if you still need to access this drive from a PC.
    regards

  • HT3775 hello, im trying to open a document but it seems like my computer does not have the require software to open it could you please tell me what can of software do i need in my laptop?

    hello, im trying to open a document but it seems like my computer does not have the require software to open it could you please tell me what can of software do i need in my laptop?

    In order to help, more information is needed.
    What type of document is it (word document, picture or?) And do you know what software it was created with and what file format it is?

  • Hello, could you please tell me how much is replacement of cracked iPhone 5 screen. Thanks

    Hello, could you please tell me how much is replacement of cracked iPhone 5 screen. Thanks

    Depends on your country
    In US
    some Apple stores will replace the screen on iPhone5 and 5C and if the service is available the cost is $149
    Where the service is not available  then an exchange iphone  price is $269

  • I would like to order photochop cc - for 2014.  I was advised to use the educators discounted membership.  Could you please tell me what plan this is?  Thanks.

    I would like to order photoshop cc for 2014.  I was advised to use the educators discounted membership.  Could you please tell me what plan that would be?
    Thanks for your help.

    Start here https://creative.adobe.com/join/edu
    Education Plan https://creative.adobe.com/plans?plan=edu
    One Year Intro Price http://forums.adobe.com/thread/1448933?tstart=0
    http://www.adobe.com/products/creativecloud/students.edu.html
    http://www.adobe.com/education/students/student-eligibility-guide.edu.html
    ID Proof http://www.adobe.com/store/au_edu/academic_id.html

  • Could you please tell me what are Firefox Aliases and why do have 9 of them?

    In my applications folder Firefox Alias keeps appearing, I now have 9 of them. Could you please tell me what they are? Also, when I go to open a new tab the screen fills with boxes of sites I have been to previously. I do not like this, how do I stop that from happening?
    Thanks

    Aliases are the same as shortcuts. You can remove the aliases without hurting anything.

  • Could you please tell me the path of PR header text?

    Dear experts,
            I want to add delivery informtion in pr header text,but i can not find the path ,i only found the path:spro=>materials management=>Purchasing=>Purchase Requisition=>Texts for purchase requisition=>Define text  types,this path is to add PR line item text,could you please tell the path to add PR header text?
    Many thanks.
    Best Regards,
    Merry

    Hi,
    There is no SPRO configration to create PR Header text
    Use the Function module
    Goto SE37
    Use FM CREATE_TEXT - for create header text, SAVE_TEXT - for change.
    Parameters:
    TDOBJECT = 'EBANH'
    TDNAME = purchase requisition number (with leading zeros)
    TDID = 'B01'
    CLIENT and LANGU - client and languag
    regards,
    santosh

Maybe you are looking for