Studying for PL/SQL Certification, which ver of DB to install

Just a quick question, I am about to embark on studying for Oracle PL/SQL Developer certification and wonder what version of the database people recommend installing on a home machine.
Would people recommend Express Edition, Standard Edition, Standard Edition One or Enterprise Edition?
Thanks

Given that the differences in PL/SQL between them are effectively non-existent, I'd recommend installing XE since there would then be no question of the legality of your install. Nothing that you'll need to know for the exam will require anything that you can't get from using XE.

Similar Messages

  • 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.
    ;)

  • Studying for 3.0 Certification exams -- Any useful books??

    Hi all,
    I know abt Catherine Rose's book, in fact my buddy gave me his old copy, 2002 circa. I was wondering with all the changes, is there anything that is more upto date? Is there a source on the web that would have similiar stuff??

    Pashang:
    This is not about studying for the exam, I have a question for you.
    Is this Pashang Patel who attended University of Pittsburgh for Grad school?
    Darlene Ellinger

  • Exam topics for PL/SQL certification

    can anybody give link for exam topics for PL/SQL certification

    Its not that difficult to search the Oracle site.
    This group is to discuss the problems and share experience!!
    Anyways, here's the link
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=141

  • For Finding sql statements which consumes High CPU

    Hai,
    Can any help me for finding, which sql statements are comsumes high CPU

    generaly:
    1. from unix site :
    us top command or ps (but this depend on platform) -> use pid in select * from v$process where spid <>
    2. from db site
    select * from v$sql_area order by buffer_gets desc ;
    this can You join with v$session where v$session.sql_address=v$sqlarea.address
    and when You wont to see % of os select *spid from v$process where addr=<v$session.paddr>
    and then in unix ps -ef | grep <spid>
    But point 2 is maybe discutable because also parse is one style how to consume CPU ... etc
    In 10g
    from AWR dba_hist_osstat -> DBA_HIST_SQLSTAT You can see high usage CPU interval , but this show You not momentaly action , but historical data
    momentali from ASH
    now I study viraq_sh script ... I thing this answer your question tottally
    Message was edited by:
    branislav.dobrotka

  • Version control for PL/SQL. Which is the best approach?

    We are developing a quite complex system which involves several
    pl/sql packages, some triggers and stored procedure. We have a
    version control system (StarTeam) in which we can store the
    history of each change at our pl/sql code.
    The problem is: which is, in your opinion, the best way to "mark"
    a version in pl/sql? For example I putted a costant in a package
    interface named "Version=1" which I increment for each new
    release; but what about trigger and stored procedure? I need a
    system, as simple as possible, which allows a customer to query
    the database and tell us "which version" of the overall system
    (package+trigger+proc) he/she has.
    Thanks in advance
    Nicola Farina

    Most version control systems have special keywords that can be
    inserted into the text. In Visual SourceSafe the following can
    be added as part of your packages, triggers etc.
    -- $Logfile: /LMES+/LMES_db/packages/batch.body $
    -- $Revision: 4 $
    -- $Date: 01-09-03 12:33 $
    The benefit of this is that the version control system maintains
    the file name, version number, date etc. You do not have to
    remember to update them!
    Then you can create a procedure to retrieve the information from
    all_source/user_source.
    Bo Pedersen

  • BEA MS Sql server which driver to use?

    We have BEA weblogic 8.1 and want to work with sql server Which driver
    shoudl we use ?
    i believe driver is deprecated
    Bea talks about the new driver
    "WebLogic Server 8.1 SP1 includes a new JDBC driver from BEA for connecting
    to a Microsoft SQL Server database. The BEA WebLogic Type 4 JDBC MS SQL
    Server driver replaces the WebLogic jDriver for Microsoft SQL Server, which
    is deprecated. The new driver offers JDBC
    3.0 compliance, support for some JDBC 2.0 extensions, and better
    performance. BEA recommends that you use the new BEA WebLogic Type 4 JDBC MS
    SQL Server driver in place of the WebLogic jDriver for Microsoft SQL
    Server."
    Do we have to install sp1 or sp2 to work with this driver. How can we get
    sp1 ,
    Thanks,

    Where did the Driver file place?
    You can copy the driver file to the JAVA_HOME/lib
    folderDo not put that JDBC JAR in JAVA_HOME/lib.
    You should put it someplace close to your app and add it to the CLASSPATH when you compile and run?
    Geez, doesn't anybody think about a standard directory structure to use for their apps? Put it in a /lib directory with the rest of your app stuff. - MOD

  • JDBC Receiver adapter  configuration for MS SQL

    Hi friends,
    I have configured receiver jdbc adapter for MS SQL database which are as follows:
    jdbc driver : com.microsoft.sqlserver.jdbc.SQLServerDriver
    connection: jdbc:sqlserver://USLABWDB01:1433;DatabaseName=Central_Lab_BIDB
    In communcation channel i am getting following error:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error when attempting to get processing resources: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: DriverManagerException: Cannot establish connection to URL 'jdbc:sqlserver://USLABWDB01:1433;DatabaseName=Central_Lab_BIDB': UnsupportedClassVersionError: com/microsoft/sqlserver/jdbc/SQLServerDriver (Unsupported major.minor version 49.0)
    Kindly tell me what is the root cause of the issue.
    Renu.

    Hi Renu,
    Try foll. 2 steps:
    1) Add the IP address of the server(USLABWDB01) to the host file of your PI server, as you are connecting using Hostname.
    2)Try the following connection strings:
        jdbc driver : com.microsoft.jdbc.sqlserver.SQLServerDriver
        connection: jdbc:microsoft:sqlserver://USLABWDB01:1433;DatabaseName=Central_Lab_BIDB
       Here, 'microsoft' word is added in connection string.
    Try using this, it should work.
    -Tanaya.

  • Need SQL Query which saves query results to an excel file

    Hi,
    I am looking for a sql query which saves/ export results of an query to a excel file
    Thanks,
    Chetan

    I am looking for a sql query which saves/ export results of an query to a excel file
    Thanks,
    Chetan
    Options:
    1) You can use
    BCP command to export result to excel
    2) Insert into excel by using OPENROWSET
    3) Use Import and Export Wizard and provide SQL query as source and Excel as destination
    Please refer:
    http://stackoverflow.com/questions/87735/how-do-you-transfer-or-export-sql-server-2005-data-to-excel
    http://www.codeproject.com/Questions/617527/Export-sql-query-result-in-excel-file
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • SQL certification for a java developer?

    Hello,
    Can somone please let me know which dba or sql certification I should get as a java developer? My heart is at application development but I though having a solid knowledge in sql queries or database management would help me in writting a better softwares.
    Please let me know.
    Thank you.

    matthew_morris wrote:
    ....I have been thinking slightly on our debate .... ( and have these rushed thoughts before heading for bed).
    * I am sure we both agree on the certification study journey and knowledge gained being more important than the end certificate (except perhaps the certificate is needed for job interview or OPN partner points)
    * wrt 1z0-051 .... Taking a test that doesn't provide a certification is even more pointless.
    ... IMHO it may a have little value to some
    [1] ... they can still say exam passed on CV .... maybe that helps get a job.
    [2] it is chance to gain experience of certification exams ... 1z0-047 is a tough introduction to certification exams.
    [3] It is a chance to get a quicker certification exam 'win'
    [3] It is a cheaper exam (as it it online available and not 'high stakes' ... ie does not give a certifcation by itself).
    .... 1z0-051 is about 2/3 the cost of 1z0-047
    But I am willing to accept this is a perhaps a small set of positives; and thier may be no point for many.
    I really don't like the fact that anyone wanting an Oracle (Enterprise Edition) SQL certification (without PL/SQL) has to go for SQL OCE. An earlier certification would be better.
    I generally like the CIW Database Design Specialist: (Exam 1D0-541) content .....
    I would certainly modify my earlier idea of 1z0-047 having as a pre-requisite an earlier SQL exam / certification as a pre-req ....
    And would certainly have 1z0-051 or CIW Database Design Specialist: (Exam 1D0-541) on the pre-req list ...
    ( There are precedents for non-oracle exams/certs being acceptable in lieu of an oracle exam .... eg LPIC-1 for 1z0-402 )
    ( There is however IMHO no precedent for an OCE exam having another exam as a precedent ).
    .... Apologies to original poster .... I may have sidetracked your orginal question with a slight debate.

  • How to study for the MCSA: SQL Server Exams?

    Hi guys, 
    Forgive me if this question has already been answered but I'm simply trying to find out the best way to tackle the three exams required for the MCSA in SQL Server. I read a blog post on the Pluralsight website which, in discussing the MCSA in Windows
    Server, it was advised that the best approach is to study for all three exams rather than one at a time as there's a certain amount of overlap.
    My question is does this apply to SQL Server 2012 too? Or would it be bets to study for, and take, the three exams separately and one at a time? I'm just completing the Trainsignal (now Pluralsight) SQL Server 2012 Administration Essentials 28-video course
    and was just about to begin going through the equivalent book when I read the blog post.
    My background is mainly in desktop/server support (10years following an IT degree) and before now, have had no real exposure to SQL Server. I was asked about a year ago by my current manager to "keep an eye" on the SQL instances we have and began
    by replicating the our fail-over cluster in a virtual environment for testing purposes and to gain an understanding of the set-up. I've since developed a keen interest in SQL Server and plan to get certified...  
    Many thanks in advance.
    Marcus.
    Exams are:
    1
    Querying Microsoft SQL Server 2012
    2
    Administering Microsoft SQL Server 2012 Databases
    3
    Implementing a Data Warehouse with Microsoft SQL Server 2012
     

    Hello,
    My humble recommendation is to study for each exam one at a time. I found 70-461 most difficult exam of SQL Server I have
    taken to this date for its XML content and the extent of the exam. Go for 70-461 first.
    You will find tips and recommendations on the following Channel 9 resources:
    http://channel9.msdn.com/Events/TechEd/Europe/2013/EXM15
     (70-461)
    http://channel9.msdn.com/Events/TechEd/Europe/2013/EXM16
     (70-462)
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • What book to use for SQL certification?

    I'd like to know what do you recommend me to study best:
    Course ID: D47359, Oracle Database 10g: SQL Fundamentals Self-Study CD Course Self-Study CD-ROM
    or
    Course ID: D20964 Introduction to Oracle9i: SQL Self-Study CD Course Self-Study CD-ROM
    for SQL certification. I have many years of experiences in Oracle SQL (SQLplus, PLSQL, forms, reports), but I think I'm weak on tricks and tips and on the last new syntaks.
    Thanks!
    m.

    IMHO
    Course ID: D47359, Oracle Database 10g: SQL Fundamentals Self-Study CD Course Self-Study CD-ROM is better as 10g is latest version.

  • IZ0-144 PL/SQL certification Study material

    Hi,
    Can somebody guide me as to where I could find the pdf format study material for IZ0-144 exam?
    Thanks in advance.
    regards,
    KNR
    PS: What I meant is legitimate version.
    Edited by: KNR on Mar 19, 2010 9:02 AM

    While I don't think there is a hard copy version of this material, the 'Oracle PL/SQL Language Reference for 11gR2' is downloadable in PDF form and is a good place to learn from or use as a reference. It can be downloaded at :
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e17126.pdf
    However, it is not specifically written for the certification, nor is the certification based off of this PDF document. Therefore, it may or may not cover all the exam objectives and those that are covered may be discussed in insufficient, or possibly excessive, detail. It's best to double check the exam objectives and use this PDF only as a learning tool and not an authoritative study guide.
    As I am also studying for this exam, I keep a copy of this on my laptop for when I have a little free time but I don't have a book or wireless internet connection available. Hope that helps.
    -Joey
    P.S. Quick note about a statement made by the prior poster (or****) before it causes any confusion. He said...
    "That being said to gain Oracle Certification you have to have taken the Oracle Certified course."
    That is not quite true. While the Oracle course materials may be the best study guides available, there is no Oracle Certified course required for the OCA or OCP level PL/SQL (Advanced) Developer certifications.

  • I'm going to be a senior this year and my school is switching over to the iPad for classroom activities. Which iPad is the best for taking notes, researching, studying, reading, etc?

    I'm going to be a senior this year and my school is switching over to the iPad for classroom activities. Which iPad is the best for taking notes, researching, studying, reading, etc?

    I Recommend the iPad Mini Retina, it's not to big, and not to small. It has the speed of the iPad Air due to it having the same 64 Bit chips. ( And it's a lot cheaper!!) I have one myself and it's perfect for my school work!
    iPad Mini
    http://www.apple.com/ipad-mini/
    or don't 'to take my word for it, compare the iPads!
    http://www.apple.com/ipad/compare/

  • How to get the exact sql developer which used for data migration?

    Hi all,
    Hope doing well,
    Sir i seen a link for data migration that is : http://www.oracle.com/technetwork/developer-tools/sql-developer/sql-server-connection-viewlet-swf-089886.html
    in this link when they are connecting to sql database so after clicking on new connection four tab is showing that is oracle, access, my sql, sql server.
    i downloaded latest version of sql developer which version is: 3.02.09.30 when i opened this i am not getting those option.
    and one more thing i am not getting miragation menu name in menu items.
    please help me.
    thanks and regards

    Hi,
    To connect to non-Oracle databases from SQL*Developer youneed to download the relevant JDBC driver.
    This is detailed in the documentation in the User Guide -
    http://docs.oracle.com/cd/E35137_01/appdev.32/e35117.pdf
    in the section -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    ■For IBM DB2: the db2jcc.jar and db2jcc_license_cu.jar files, which are available from IBM
    ■For MySQL: a file with a name similar to mysql-connector-java-5.0.4-bin.jar, in a directory under the one into which you unzipped the download for the MySQL driver
    ■For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    ■For Teradata: tdgssconfig.jar and terajdbc4.jar, which are included (along with a readme.txt file) in the TeraJDBC__indep_indep.12.00.00.110.zip or TeraJDBC__indep_indep.12.00.00.110.tar download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Regards,
    Mike

Maybe you are looking for

  • I need help converting a file to a word document to edit it

    How do I convert the file to a word document for editing?

  • TS3274 My IPad does not have sound in the apps.

    My IPad 2 does not have sound for the apps. I have checked everything . What should I do ?

  • Converting a rich content ms excelsheet to PDF

    Is there any opensource java api that I can use to convert a rich content spreadsheet to a pdf? I have tried using[b] itext api and jexcel api with no luck because of the rich content of the spreadsheet.

  • Accessing OIM APIs remotely

    Hi all, I am trying to access the OIM API remotely from OAM and I am getting the following error. Please help. Thor.API.Exceptions.tcAPIException: unread block data      at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)      at Thor.API.t

  • Itunes 10.4 invalid licence

    Hi just bought an iphone 4 fitted the sim card entered the pin then told to connect to itunes. Itunes is an older version prompted to download 10.1 or newer for the phone ok so search for updates and down load 10.4 but windows 7 and norton 360 say it