About Oracle SQL Certification Details

Hi All,
I want to Details About Oracle SQL Certification. How many Type and what are there.
Thanks & Regards

You will get better answers in the [Oracle Certification Forum|http://forums.oracle.com/forums/forum.jspa?forumID=459]
Thanks,
Karthick.

Similar Messages

  • [ask] about oracle sql injection and escalation

    Hello,i'm student , i'm studying oracle,now i want to research about oracle sql injection,i had read some tuttorial such as *'Hacking Oracle From Web,Advanced SQL Injection In Oracle Databases,Oracle Hacker HandBook ...'* but when i try to demo on localserver (11.0.1.6) but not run,and this is my demo
    -- first,i created table users
    create table users (name nvarchar2(50),pass nvarchar2(50))
    -- then i created procedure with system user
    create or replace procedure system.adduser(u nvarchar2,p nvarchar2)
    as
    begin
      insert into users values(u,p);
    end;
    -- grant execute privilege to oc user
    grant execute on adduser to oc
    -- login with user oc and create a procedure
    create or replace procedure sqli
    as
    begin
      execute immediate 'grant dba to oc';
    end;
    -- and then,i run system's procedure
    declare
    begin
      system.adduser('admin','admin'' ; execute immediate  ''declare begin sqli() end;');
    end;
    i hope oracle master help me to i can understand and improving my knowledge
    Thanks

    The best forum for this is probably Forum Home » Java » SQLJ/JDBC
    Presumably you are refering to oracle.sql.TIMESTAMP. While this is intended to (and does) correspond to java.sql.Timestamp it can't be a subclass because it needs to be a subclass of oracle.sql.Datum.

  • Wht's the best n basic material to prepare for Oracle SQL certification

    Can anyone suggest me the best material to prepare for the Oracle SQL certification.

    > By the way, why did you open the thread
    As voice number 1.
    > and answered it for yourself
    As voice number 2...
    > as if, you are addressing some second person,
    .. addressing voice number 1.
    I have no problem with that Sarma. It is that 3rd little voice in the OP's head that makes me quite nervous.
    ;)

  • A silly question about oracle.sql.timestamp and java.sql.timestamp

    Hi,
    I'm looking at a method that takes objects of type Object and does stuff if the object is really a java.sql.timestamp. If it is not then an error is flagged. In my case it flags an error when an object of type oracle.sql.timestamp is passed to it. Not really entirely comfortable with java (i'm still learning it), here's my stupid question :- why isn't oracle.sql.timestamp a subclass of java.sql.timestamp? Also in various books it indicates that java.sql.timestamp maps to oracle.sql.timestamp. Does that mean you have to physically do the mapping:
    i.e.
    java.sql.Timestamp t = new Timestamp( new oracle.sql.Timestamp( CURRENTTIMESTAMP ).timestampValue() );
    or is there something else to it.
    Thanks.
    Harold.

    The best forum for this is probably Forum Home » Java » SQLJ/JDBC
    Presumably you are refering to oracle.sql.TIMESTAMP. While this is intended to (and does) correspond to java.sql.Timestamp it can't be a subclass because it needs to be a subclass of oracle.sql.Datum.

  • Some problems about oracle.sql.CharacterSet.java

    When I debugging a program,which should execute an insert statement into Oracle database,but I found there's missing Oracle.sql.CharacterSet.java source file,and some errors occur:
    java.sql.SQLException: ORA-01400: cannot insert NULL into ("EPICS"."IOC_DB_FILE_ASGN"."EXT_SRC_FILE_NM")
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:124)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:304)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:271)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:622)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:180)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:542)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1027)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2887)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:2978)
    at gov.sns.apps.jeri.apps.dbimport.DBFileParser.updateDBFileIOCData(DBFileParser.java:3028)
    at gov.sns.apps.jeri.apps.dbimport.DBFileParser.saveToDatabase(DBFileParser.java:2930)
    at gov.sns.apps.jeri.apps.dbimport.DBImportFrame$19.run(DBImportFrame.java:640)
    at java.lang.Thread.run(Thread.java:534)
    The database is Oracle 10g,and development tools is Jdeveloper10g。I have added oracle_home/jdbc/lib/classes12.jar into the classpath.but it doesn't work。I hope someone can tell me what's the matter and how to get the source file of CharacterSet.java?I'll be very grateful for your help!Thank you very much!

    hello user457523
    I have found the reason to that error.It's because there's a trigger and ext_src_file_nm is populated by the trigger from another column ext_src_file_loc when inserting and I didn't give any value to ext_src_file_loc so ext_src_file_nm is null.
    I have disabled that trigger and now I get new errors.When I traced to a line of Jave code I got missing source file warning,and the source file is also oracle.sql.CharacterSet.java.I can not trace into the source file and then I skipped that code and then I got new errors.I want to know how to trace into the jave code and find what's the matter.
    Thank you very much.

  • "Explain Plan" in Oracle SQL Developer is greyed out

    Hi all,
    I know this is not the right place to post this, but I have look around and do not know where to post question about Oracle SQL Developer - I presume this tool is also discussed here in this forum.
    My question is very simple (I presume):
    1. I installed Oracle SQL Developer 3.0.04.
    2. I added a new DB connection to a DB hosted in one of my servers in the LAN.
    3. However, when I am writing some SQL queries, I intend to use the "Explain Plan" feature, but it is being greyed out (disabled).
    4. How can I enable it back?

    Hello,
    {forum:id=260}
    Regards
    Marcus

  • Oracle SQL Developer 3.2, SQL*Plus COLUMN FORMAT bug

    SQL*Plus command COLUMN truncates output result in SQL Developer.
    Script in Worksheet:
    column nn format 999
    select level nn from dual connect by level<=10;The Run Script (F5) result contains only 8 lines in Script Output window:
    NN
    1
    2
    3
    4
    5
    6
    7
    8
    Changing column alias:
    select level nn2 from dual connect by level<=10NN2
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    10 rows selected
    The output can contain no data for more formatted columns.
    ===============================================================
    About
    Oracle SQL Developer 3.2.09
    Version 3.2.09
    Build MAIN-09.30
    Copyright © 2005, 2012 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product Version: 11.2.0.09.30
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.7.0_02
    Oracle IDE     3.2.09.30
    Versioning Support     3.2.09.30

    sqldeveloper64-3.2.09.30-no-jre.zip.
    My jdk now is 1.7.07 x64, Windows 7 x64.
    C:\Java\jdk17\bin>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) 64-Bit Server VM (build 23.3-b01, mixed mode)
    Gary Graham wrote:Also, I don't understand what you mean by
    The output can contain no data for more formatted columns.
    Sript:
    col owner format a10
    col table_name format a20
    col column_name format a20
    col comments format a50
    select
       row_number() over(order by column_name) r11,   
       count(*) over() c11,
       owner ow,
       table_name tn,
       column_name cn,
       comments co
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select
       row_number() over(order by column_name) r,   
       count(*) over() c,
       owner,
       table_name,
       column_name,
       comments
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select 1 from dual;
    prompt abcThe output truncated after headers of second queryR11 C11 OW                             TN                             CN                             CO                                                                                                                                                        
      1  25 SYS                            INDEX_STATS                    BLKS_GETS_PER_ACCESS           Expected number of consistent mode block gets per row. This assumes that a row chosen at random from the table is being searched for using the index
      2  25 SYS                            INDEX_STATS                    BLOCKS                         blocks allocated to the segment                                                                                                                    
      3  25 SYS                            INDEX_STATS                    BR_BLKS                        number of branch blocks in the b-tree                                                     
      4  25 SYS                            INDEX_STATS                    BR_BLK_LEN                     useable space in a branch block                                                           
      5  25 SYS                            INDEX_STATS                    BR_ROWS                        number of branch rows                                                                     
      6  25 SYS                            INDEX_STATS                    BR_ROWS_LEN                    sum of the lengths of all the branch blocks in the b-tree                                 
      7  25 SYS                            INDEX_STATS                    BTREE_SPACE                    total space currently allocated in the b-tree                                             
      8  25 SYS                            INDEX_STATS                    DEL_LF_ROWS                    number of deleted leaf rows in the index                                                  
      9  25 SYS                            INDEX_STATS                    DEL_LF_ROWS_LEN                total length of all deleted rows in the index                                             
    10  25 SYS                            INDEX_STATS                    DISTINCT_KEYS                  number of distinct keys in the index                                                      
    11  25 SYS                            INDEX_STATS                    HEIGHT                         height of the b-tree                                                                      
    12  25 SYS                            INDEX_STATS                    LF_BLKS                        number of leaf blocks in the b-tree                                                       
    13  25 SYS                            INDEX_STATS                    LF_BLK_LEN                     useable space in a leaf block                                                             
    14  25 SYS                            INDEX_STATS                    LF_ROWS                        number of leaf rows (values in the index)                                                 
    15  25 SYS                            INDEX_STATS                    LF_ROWS_LEN                    sum of the lengths of all the leaf rows                                                   
    16  25 SYS                            INDEX_STATS                    MOST_REPEATED_KEY              how many times the most repeated key is repeated                                          
    17  25 SYS                            INDEX_STATS                    NAME                           name of the index                                                                         
    18  25 SYS                            INDEX_STATS                    OPT_CMPR_COUNT                 optimal prefix compression count for the index                                            
    19  25 SYS                            INDEX_STATS                    OPT_CMPR_PCTSAVE               percentage storage saving expected from optimal prefix compression                        
    20  25 SYS                            INDEX_STATS                    PARTITION_NAME                 name of the index partition, if partitioned                                               
    21  25 SYS                            INDEX_STATS                    PCT_USED                       percent of space allocated in the b-tree that is being used                               
    22  25 SYS                            INDEX_STATS                    PRE_ROWS                       number of prefix rows (values in the index)                                               
    23  25 SYS                            INDEX_STATS                    PRE_ROWS_LEN                   sum of lengths of all prefix rows                                                         
    24  25 SYS                            INDEX_STATS                    ROWS_PER_KEY                   average number of rows per distinct key                                                   
    25  25 SYS                            INDEX_STATS                    USED_SPACE                     total space that is currently being used in the b-tree                                    
    25 rows selected
    R C OWNER      TABLE_NAME           COLUMN_NAME          COMMENTS                                        
    - - ---------- -------------------- -------------------- --------------------------------------------------

  • REGARDING THE DISCOVERER CERTIFICATION DETAILS

    HI . THIS IS VARUN . I WANT ORACLE DISCOVERER CERTIFICATION DETAILS. SO CAN ANYONE HELP ME RAGARDING THIS MATTER. I WILL BE REALLY THANKFUL TO THEM . PLEASE REPLY BACK TO ME WITH COMPLETE DETAILS LIKE PRICE,DURATION,TOPICS ETC.
    THANK YOU

    I do not believe Oracle offers any certifications for Discoverer as it is a sunset product.
    All current certifications are listed here - http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=141
    HTH
    Srini
    PS - You do not have to SHOUT.

  • Oracle database certification

    Hello, I would like to give an exam for oracle sql. So which exam should i have to give (oracle 9i introduction to sql or oracle 11g fundamentals of SQL)?

    That question is common enough in this forum that I wrote an article discussing the differences between the two tests and why you might choose one over the other:
    http://ezinearticles.com/?Oracle-SQL-Certification:-1Z0-007-or-1Z0-051?&id=7103921

  • About Oracle Certification

    I want to ask about Oracle Certification
    is there a hard copy for certification of Oracle E-Business Suite 12 Financial Management Certified Implementation Specialist: Oracle Payables after pass the exam ??
    regards

    935128 wrote:
    I want to ask about Oracle Certification
    is there a hard copy for certification of Oracle E-Business Suite 12 Financial Management Certified Implementation Specialist: Oracle Payables after pass the exam ??Not sure what do you mean by hard copy but all the details about this certification can be found at:
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=458&get_params=p_track_id:EBS12FMOP
    http://www.oracle.com/partners/en/knowledge-zone/applications/oracle-e-business-suite/ebs-payables-exam-168625.html
    Thanks,
    Hussein

  • Need SQL Beginners Certification Details

    HI All,
    Im a java deveoper.. I want to do a entry level certification in oracle sql.
    Can anyone give me details of registration / training material / dumps ?
    Thanks for your help

    kmk wrote:
    HI All,
    Im a java deveoper.. I want to do a entry level certification in oracle sql.
    Can anyone give me details of registration / training material / dumps ?
    Thanks for your helpYou've learned the word 'dumps' from somewhere.
    Thats not good.
    Dumps ... braindumps are what cheats use .... you should be looking for authorized practice exams. Dont abreviate those to dumps .... it gives you the wrong mindset.
    Ref:: [http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html]
    [http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html]
    In terms of 'Oracle' there's not an absolute entry level SQL certiifcation as such.
    Your choices in this area are:-
    (1) PL/SQL OCA : by 1z0-051 + 1z0-144 ... there are alternative exams. [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=155]
    (2) SQL OCE - only requires a pass of 1z0-047 ... but quite stretching. [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=189]
    (3) SCMA : This is a very entry level but IMO too basic and not worth the price. [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=331] (mysql)
    (4) SCMDEV : [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=332] (mysql)
    View the forums annnoucement posts and go over: [http://www.oracle.com/education/certification/index.html] - including the Getting Started and Support FAQ's.
    In practice if you going to self study perhaps consider getting: OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne Oracle Press Series) (Paperback) - ISBN: ISBN-13: 978-0071597869 which can usually be obtained cheaply. If your comfortable as you go through that, great, if not get more training material. Be aware though that 1z0-051 does not in itself form a certification, it i just an exam which would need to be combined with another for a certifcation.

  • CERTIFICATION DETAILS FOR ORACLE DATABASE 11gR2 (11.2.0.3) with Oracle 9i AS.

    Hi,
    My client is planning to upgrade from 10.2.0.2 to 11.2.0.3 database(AIX 6L). Client having ORACLE 9I AS on different machine and connecting to 10.2.0.2.  I am trying to check the certification details for this. but could not able to.  Any references please?
    I gone through MOS certification, but could not find any thing related to this combination.
    I am in the way of checking further options as well..
    Regards
    DBA....

    Well, seeing as how AS 10g has been gone since 2009 Oracle Application Server 10g 9.0.4 & 9.0.4.x (Doc ID 295948.1) I'm not sure an older version would be supported.  Now, that's been superseded by an alleged lifetime support policy http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdf
    but that probably has a funny definition of who's life.

  • Regarding Certification Details in Oracle Portal

    Hi All,
    I did OCA and OCP certification two years back. I have used weblink to see the history of my certification details with score card in oracle portal. Now i m hutting for the same link to see my certification details in the portal.
    If anybody know how to see our certified details in oracle portal please forward me the same and its quite urgent.
    Thanks in advance.
    Regards
    Prabu

    Hi Prabu,
    There is currently not a way to view your certification history online. We are working on a system that will allow this, but the system is still several months out. If you need to verify your certification details for a 3rd party (or for yourself), you can send an email to [email protected] and request verification of your certification(s). If you need to verify for a 3rd party, simply copy the 3rd party on the request and ask that the verification team reply to all in their response. Your 3rd party will receive the information required.
    Regards,
    Brandye Barrington
    Certification Forum Moderator
    Certification Program Manager

  • What is the validity of Oracle SQL 1ZO-007 certification?

    Hi,
    I have done Oracle SQL 1ZO-007 certification in May 2006. However, I could not write the next level, PL/SQL 1ZO-047. Now I am planning to write it.
    My doubt is whether my SQL certification is till valid so that upon clearing 1ZO-047 I can get OCA.
    Also, is there an alternate way of getting developer's path OCA.
    Please clarify.
    Thanks,
    Natraj

    Don't worry. Its valid for ever
    And please post your Certification related questions in Certification topic. May be there you can find more information
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • Will Oracle pl/sql certification help me get  IT job

    Hello guys,
    I have completed my B.tech in Computer Science, I am confused a bit , Can i get a job after getting certified in Oracle Associate Pl/sql developer

    1005323 wrote:
    Hello guys,
    I have completed my B.tech in Computer Science, I am confused a bit , Can i get a job after getting certified in Oracle Associate Pl/sql developerYou may get a job after achieving Pl/sql developer OCA
    You may get a job after without achieving Pl/sql developer OCA
    You may fail to get a job after achieving Pl/sql developer OCA
    You may fail to get a job after without achieving Pl/sql developer OCA
    There are several factors involved in getting a job. And there are several ways a job may be obtained. But usually there are there stages:
    - Stage Zero: A company but has a job to offer.
    - And you need to be aware of it. - A friend may tell you, or an agency may tell you. And it must suit you for location and remuneration etc.
    - Stage one: An interview is obtained with the company.
    - Stage two: The job is offered to you rather than anyone else and you find it acceptable.
    So ... to your question:
    "Can i get a job after getting certified in Oracle Associate Pl/sql developer?"
    Well .... there is only three possible answers ... yes, no, and maybe; and maybe is probably the only correct answer, and most people will have worked this out, which means the question may have not been the best question to have asked.
    (( That said I now read the title of the thread and it says: Re: Will Oracle pl/sql certification help me get IT job)
    I have been known on occasion to have been given a question by a boss.
    And I have answered him:
    "You have given me the wrong question
    The question you should have answer me is this.
    And the answer I will give you is this."
    And the boss goes away happy
    So you you a better question would have been:
    How much will an OCA PL/SQL certification increase my chances of getting a job?
    Mind you even that question won't help you get a much better answer.
    For a proportion of jobs where PL/SQL is relevant that will help (for those where it is not it might be occasionally be a problem), for people with identical CV's it sometimes might help get to interview stage. But there are other factors as well. For instance if I was thinking of giving you a job on the basis of your post I might for example:
    - Not be impressed with an "Hello Guys" greeting ( though this is a forum so that isn't relevant here).
    - Not be impressed with you being confused.
    - etc.
    You probably need to get a good appreciation of the job market in your locality; and the numbers of applicants for each job. Which jobs you can apply for, what is your skillset and knowing youself as well.
    Sometimes an ITIL certification may be a better differentiator for some positions in business. But it will depend on the job you can think you can get.

Maybe you are looking for