Doubt in Joins - 1Z0-051 Preparation

Hi,
In Chapter 7, p.no 317 of 'OCA Oracle Databse 11g, SQL Fundametals I Exam Guide' regarding the joins, there is below lines.
If no joins are N-1 joins are specified in the WHERE clause conditions, where N refers to the number of tables in the query, then a cartesian or cross join is performed.
If an adequate number of joins conditions are specified, then the first optional conditional clause specifies a natural join, while the second two optional clauses specify the syntax for right and left outer joins.I didnt quite understand this well. For ex.
select regions.region_name , countries.countries_name from  regions , countries where  regions.region_id = countries.region_id.
Countries table has coutry_id , country_name, region_id.
Regions table has region_id, region_name.In the above case, it is a natural join, But as per the lines from book, it has N-1 (2-1) joins in the where clause, so this is a cartesian or cross join.
I might be wrong in uderstanding it clearly.
Can anyone help me in understanding those 2 lines regarding the joins.
Thanks in advance. :-)

agathya wrote:
If no joins are N-1 joins are specified in the WHERE clause conditions, where N refers to the number of tables in the query, then a cartesian or cross join is performed.Hmm... Might be a printing mistake. If there are less than n-1 join conditions or if there are no joins, then the result will be a Cartesian Product or what you consider as CROSS JOIN.
The number of rows in a Cartesian product is equal to the product of number of rows in the first table and number of rows in the second table and the number of rows in the third table. In the following example it will be 5*2*3 = 30 rows.
SQL> set feedback on;
SQL> SELECT * FROM test_tab_1
  2  /
     COL_1
         1
         2
         3
         4
         5
5 rows selected.
SQL> SELECT * FROM test_tab_2
  2  /
     COL_2
         1
         2
         3
3 rows selected.
SQL> SELECT * FROM test_tab_3
  2  /
     COL_3
         1
         2
2 rows selected.
SQL> SELECT a1.*, a2.*, a3.*
  2    FROM test_tab_1 a1, test_tab_2 a2, test_tab_3 a3
  3  /
     COL_1      COL_2      COL_3
         1          1          1
         2          1          1
         3          1          1
         4          1          1
         5          1          1
         1          2          1
         2          2          1
         3          2          1
         4          2          1
         5          2          1
         1          3          1
     COL_1      COL_2      COL_3
         2          3          1
         3          3          1
         4          3          1
         5          3          1
         1          1          2
         2          1          2
         3          1          2
         4          1          2
         5          1          2
         1          2          2
         2          2          2
     COL_1      COL_2      COL_3
         3          2          2
         4          2          2
         5          2          2
         1          3          2
         2          3          2
         3          3          2
         4          3          2
         5          3          2
30 rows selected.The following code gives a demonstration where you will have less than N-1 Joins (In this case you should have 2 Joins to avoid Cartesian Product). In this case it will be the resultant of the join conditions between test_tab_1 and test_tab_3 multiplied by the number of rows in the unjoined table (test_tab_3)
SQL> SELECT a1.*, a2.*, a3.*
  2    FROM test_tab_1 a1, test_tab_2 a2, test_tab_3 a3
  3   WHERE a1.col_1 = a2.col_2
  4  /
     COL_1      COL_2      COL_3
         1          1          2
         1          1          1
         2          2          2
         2          2          1
         3          3          2
         3          3          1
6 rows selected.
SQL>Hope this helps,
The example mentioned above assumes that there is 1 to 1 relationship between the three tables.
Regards,
Jo

Similar Messages

  • 1Z0-051 exercises for preparing the exam

    Hello, I'm preparing for the 1Z0-051 exam and It could be useful for me some link o similar with exercises about SQL.
    Thanks in advance.
    Regards.

    What you are asking for and what the original poster was is 'guided practice'.  The only thing that really fits that description is lab exercises. Generally these are only created as part of a class.  I don't know of anyone that creates labs and puts them online.
    I always encourage candidates to load Oracle XE on their computer and practice with the topics covered on certification exams, If you have any certification book for 1Z0-051, it will have some SQL examples inside it.  They probably won't be labs which tell you exactly what to do in a step-by-step fashion. However, you can execute the same SQL on your machine if you have an Oracle instance.  The Oracle sample schemas are available online.  My study guides have a sample schema that can be downloaded from my website.  I believe the Oracle Press 051 book likewise has a schema (or possibly it uses the sample schemas).  Just typing in the examples straight from the book is a start.  You can then play with those examples -- varying them to see what works and what does not.  For example -- if an example shows a multi-table select the INNER JOIN syntax, take that SQL and modify it to the USING syntax or the NATURAL JOIN syntax.
    The 1Z0-051 exam is all about the capabilities and syntax of SQL... basically what can and cannot be done. Much of this is really memorization of the syntax and certain facts -- like what clauses a subquery can appear in. Executing working SQL and then modifying it to see what works and what does not can help to cement those facts in your memory.

  • Doubt in 1Z0-051 course book

    Hello,
    I am preparing to write Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051.
    I am refering the book OCA Oracle Database 11g: SQL Fundamentals Exam Guide (Exam 1Z0-051).
    In the second chapter dealing with select statements it mentions that though sql queries are not case sensitive, the data stored in the database is case sensitive. For example:
    select....where JOB_ID='SALES'; and
    select....where JOB_ID='sales' will yield different results.
    I have performed the above queries in 11.2.0.1.0 and got that the same output for both queries.
    So was there an error in the book or am I wrong in interpreting it.
    Regards

    937520 wrote:
    Hello,
    I am preparing to write Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051.
    I am refering the book OCA Oracle Database 11g: SQL Fundamentals Exam Guide (Exam 1Z0-051).
    In the second chapter dealing with select statements it mentions that though sql queries are not case sensitive, the data stored in the database is case sensitive. For example:
    select....where JOB_ID='SALES'; and
    select....where JOB_ID='sales' will yield different results.
    I have performed the above queries in 11.2.0.1.0 and got that the same output for both queries.
    So was there an error in the book or am I wrong in interpreting it.
    Regardsplease post the output here,
    select ....... where JOB_ID IN ('SALES','sales');
    also
    select....where JOB_ID='SALES'; and
    select....where JOB_ID='sales'
    regards,

  • Is the Oracle Database Express Edition 11g Release 2 enough for preparing for the 1Z0-051 and 1Z0-144 Exams?

    I am planning on getting certified as an OCA PL\SQL developer. I will be teaching myself and I have all the material needed to prepare.
    Except, I don't have a database that I can solve exercises on and practice commands.
    The two exams I will be taking are the :
    1Z0-051 exam: Oracle Database 11g: SQL Fundamentals I
    1Z0-144 exam: Oracle Database 11g: Program with PL/SQL
    So is the Oracle Database Express Edition 11g Release 2 is enough ?
    If it is not what other options do I have (I am running Windows 8.1) ?

    Yes -- 11gXE should be sufficient for practicing the vast majority of the skills required for those two exams.  I *think* that PARALLEL is not enabled in XE, so you could not test the functionality referred to in the "Use NOCOPY hint, PARALLEL ENABLE hint and DETERMINISTIC clause" topic of 1Z0-144.  I don't consider that to be a significant problem, however.  The material from the manual should suffice for the questions you'll see.
    As for what other options you have, you could download and install VirtualBox (free from Oracle).  You could then make a virtual machine on your Windows 8.1 machine and install Oracle Linux (free from Oracle).  You could then download and install Oracle Enterprise for Linux and install it on your virtual machine (allowable under the licensing when used for learning purposes only).  I have a similar setup on my Windows 7 laptop that I use when I absolutely have to test some feature that requires Oracle Enterprise.  Mind you, when I have the VM running on my system... it is ssssslllllloooooowwwwww because of the memory requirements.  I talk about using virtual machines as a certification aid in the following article:
    There is virtually no excuse to lack hands-on experience - CertMag

  • Preparation guide for 1Z0-051

    Hi,
    I am preparing for 1Z0-051 11g sql fundamentals exam as path to OCA. I have SYBEX publications book by Biju Thomas. Can you please suggest any other good books and any sample mock exams to be ready for the actual exam.
    Thanks
    Vivek

    Handle:     user509266
    Status Level:     Newbie
    Registered:     May 10, 2006
    Total Posts:     213
    Total Questions:     16 (15 unresolved)
    why do you continue to waste time here when you only rarely get answers to your questions?

  • Certification topics for 1z0-051

    I am preparing for the SQL fundamental exam 1z0-051. I am following the book :"OCA: Oracle Database 11g Administrator Certified Associate Study Guide: (Exams1Z0-051 and 1Z0-052) " by Biju Thomas.
    Question: The exam topics in Oracle's certification website do not indicate subtopics. eg. Group functions is a topic listed but are sub-topics such as ROLLUP and CUBE part of the certification?
    Thanks in advance.
    Sudhakar

    mango_boy wrote:
    bigdelboy wrote:
    sayantan chakraborty wrote:
    Sir
    i am also preparing for this and want to sit for it at the September end.
    [amazon link|http://www.amazon.com/Oracle-Database-Osborne-ORACLE-Press/dp/0071498508/ref=pd_sim_b_3] is this book enough for iz0-051??
    can you refer a sybex book for this,so that can tally the explanations?...............
    For anyone who has SQL experience, or has studied SQL as part of a WDP, or has a general SQL book already then either of the two books (+ their associated practice test in book and on CDROM should be adequate for 1z0-051:I did not get any testkit CDROM forr 007 even.as i am under WDP for 9i.
    * ISBN-13: 978-0071597869: OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Oracle Press)i found 2008 edition in our local market.so ISBN no. did not match.
    * ISBN-13: 978-0470395127: OCA: Oracle Database 11g Administrator Certified Associate Study Guide: (Exams1Z0-051 and 1Z0-052) (Sybex)this book (probably written by Biju Thomas).
    The first is usually cheaper, the second while more expensive also covers 1z0-052. I have seen the first book and it is adequate ; and I know of no reason why the second should not be adequate too. While for the self studying for OCA/OCP 10g/11g candidates i somtimes hint to people they should consider getting both Oracle Press and Sybex books; for this exam i tend to think this is not so necessary for most people.
    wrt the book you referenced:
    * ISBN-13: 978-0071498500: Oracle Database 11g SQL (Osborne ORACLE Press Series)
    This book is designed to cover 11g SQL in general. It is more orientated towards learning and reference. While not tied to an exam it does probably cover most (if not all) topics needed for 1z0-047. Probably most professionals would find it as easy to look up oracle documentation most of the time. I actually have it, mainly because I it was an easy way for me to get a grip on the newer ANSI join forms whcih I am less useful. I cant say its not useful, but certainly some people would find it of limited use and others are quite happy with it.This book still to come in local market(india).
    Thanx.whatever..........but remember this sybex books have very little hands on practice.ie.hardly you will find a query that is left for your practice.All of questions in MCQ basis.
    Edited by: user11838351 on Aug 28, 2009 8:07 AM
    to dissolve ambiguity

  • OCA - Choice between  1Z0-144,1Z0- 047 and 1Z0- 051

    Hello everyone,
    I am a developer working on Java EE and our DB is Oracle 10g.
    I intend to take an exam that prepares me for :
    1. Writing DDL,DML and usage of functions
    2. Creating cursors,procedures,triggers,indexes etc.
    3. Focus on writing efficient queries - sub-queries,joins,manipulating BLOBs etc.
    4. Creating & using Java-like 'collections' in the DB
    Given the above requirements, I decided to go for OCA certification. I realized the following path from Oracle's site :
    _1Z0-047_ Oracle
    Database SQL Expert
    OR
    _1Z0-051_ Oracle Database
    11g: SQL Fundamentals
    I
    AND
    Program with PL/SQL
    _1Z0-147_
    OR
    Oracle Database 11g:
    Program with PL/SQL
    _1Z0-144_
    Now,I am quite unsure as to which exam I must target first.
    Given my requirements,please suggest the best approach( I know the basics of PL/SQL )
    Thanks !

    Thanks for the replies, guys !
    Just to prevent the fragmentation of the information, I am posting my further question in this thread itself.
    My objective now is to consolidate the study material for 1Z0-051.
    After scanning the previous threads, I got the following suggestions :
    OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne ORACLE Press Series) by John Watson and Roopesh Ramklass
    SQL Developer guide from the oracle documentation at http://tahiti.oracle.com
    OCA: Oracle Database 11g Administrator Certified Associate Study Guide: (Exams1Z0-051 and 1Z0-052) ISBN-13: 978-0470395127 sybex.
    I prefer to read a certification oriented book to get started and the other stuff - forums,documentation,references for practice.
    Hence,please suggest the appropriate study material.
    Thanks !

  • 1z0-147 preparation

    Hi All,
    I just gave my 1z0-051 exam and passed with 100%. I prepared for that exam from Sql Fundamentals Exam guide from Oracle. Now I want to go ahead and give my 1z0-147 in a month. I have an enquiry on where to prepare from for the exam. I did not find any book dedicated to this exam from Oracle. Could you please suggest on the name of the book that i can go ahead with.
    Thanks in Advance.
    Vamsi

    The first one (Programming, 4th Ed) is the one you want. The rest are excellent but best delayed if on a budget.
    In my opinion, almost all of the 'exam study' books have some deficiency. If you want to use those, consider getting TWO and comparing. If two have a difference, you know that is an area you need to look at Oracle's docs or ask in the forums. If they are the same, chances are high that they are correct - or you've hit one of the common myths. (A good DBA is always on the verge of total paranoia. Trust no one. Believe nothing. They ARE out to get you.)
    Also consider getting an official Oracle course on CD Rom for self-study. Much less expensive than instructor led, and - if not correct - at least it will be consistent with the exams.
    (ANd yes, there are errors in the exams as well. Mostly because the exams make some assumptions about the environment. We all know about assumptions, don't we ...)

  • Does 1Z0-001 fit the requirement of 11g DB OCP requirement (1Z0-051)?

    Dear Sir:
       Hi, I would like to ask 3 questions about the certification requirement of 11g DB OCP.
    Please advice me what do I have to do to prepare the OCP exam, thanks a lot in advance.
    Q1:
    Does 1Z0-001 fit the requirement of 11g DB OCP requirement (pass 1Z0-001 = pass 1Z0-051)?
    AFAIK, 11g DB OCP requires passing 3 exams: 1Z0-051 (SQL), 1Z0-052 (AW1), 1Z0-053 (AW2) and finishing a hand-on course at least.
    I have passed the 1Z0-001 (Introduction to SQL ans PL/SQL) many years ago.
    After searching the discussion in the community, I've found 2 relative:
    https://forums.oracle.com/thread/2526631  It said :"1Z0-001 will satisfy the SQL requirement."
    https://forums.oracle.com/thread/2467872 It said : "I can confirm that the 001 exam will fulfill the SQL exam requirement if it was passed before it retired."
    I was confused on that. Please help me to clear it.
    Do I have to prepare the exam 1Z0-051 since I have passed 1Z0-001 (an retired exam)?
    Q2:
    Please confirm that finishing the SSC (Self-Study Course) DOES NOT apply the "hand-on course requirement ".
    It still need to pay more money for an instructor-led (face-to-face) course, right?
    Q3:
    Can I just finish ONE course "Oracle 11g Database Administrator Workshop II" from an Oracle authorized education center to fit the " hand-on course requirement " ?
    Sorry I have to ask this because the budget consideration.
    Thank you very much!
    Steve C.

    Q1:
    Does 1Z0-001 fit the requirement of 11g DB OCP requirement (pass 1Z0-001 = pass 1Z0-051)?
    Q2:
    Please confirm that finishing the SSC (Self-Study Course) DOES NOT apply the "hand-on course requirement ".
    Q3:
    Can I just finish ONE course "Oracle 11g Database Administrator Workshop II" from an Oracle authorized education center to fit the " hand-on course requirement " ?
    A1 -- Yes, if you passed 1Z0-001, you do not need to take 1Z0-051.  When courses are retired, it simply means they are no longer given to *new* students.  Anyone who passed them still retains credit for having done so.
    A2 -- Self Study CDs do not count for the hands-in requirement.  On the approved courses page of OU, it specifically states: "Self Study CD-Rom and Knowledge Center courses are excellent study and reference tools but DO NOT meet the Hands-on Requirement for certification."
    A3 -- Only one course is required for the 11G OCP.  That one is on the approved list and so will be acceptable if the vendor is authorized by OU.

  • Howto learn 1Z0-051

    Hello,
    I want to learn the 1Z0-051, but how can I do that? I treid to install oracle 11gr2 on linux and windows, but I'va got a lot of errors. Is there an other way to learn the 1Z0-051? Is there a virtualbox image with everything I need? I hope someone can help me.
    Is it possible to use oracle 10g xe for this exam?
    Thanks a lot,
    Smika
    Edited by: user10517641 on Jun 11, 2010 4:09 PM

    You should install Oracle database XE on windows. It's a breeze installing. Do try it out, and spend sometime with it and you will learn a lot.
    Besides, here is a good material for preparing for this exam:
    OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne Oracle Press Series)
    regards

  • Training for 1z0-051?

    Hello all,
    I have a requirement by my employer to achieve Oracle Certification.  I passed 1z0-052 last week after studying off and on for the last year and a half.  Next up is 1z0-051 or 061.
    Fortunately my employer is funding a training class for this exam.  We have 11g in our environment, so it is the 051/052 track I started on.  I noticed on the 051 exam page that the recommended training is no longer offered.  I'm planning to take the training class linked from the 061 page (Oracle Database 12c: Introduction to SQL Ed 1.1).  Is this adequate/sensible training for the 051 exam?  Or should I scrap 051 in favor of 061?  I see that either will count towards OCA/OCP. 
    I am speaking out of honest ignorance here, but it seems that the material covered for 061 is completely applicable to 051.  Any sage advice for me?  Am I off track in my assessment? 
    Many thanks for any help you can offer.
    -Alan

    The 1Z0-051 and 1Z0-061 exams have about a 95% commonality in topics.  The 'Introduction' section was added to 1Z0-061 and the 'Creating other schema objects' section that was in 1Z0-051 has been removed in 061.  As such, the 061 training should prepare you for the vast majority of the 1Z0-051 exam.
    That said -- there is no reason not to simply take the 1Z0-061 exam if that's what you are taking the training for anyway.  I generally consider picking one over the other to be largely a toss up. Last week someone had the Oracle Press book for 1Z0-051 and was asking about taking 061.  I suggested going with 051 since they had the study materials for it.  In your case, the opposite applies, so I would suggest that the 1Z0-061 exam would probably be the (slightly) better choice.

  • OCA 1Z0-051 self-study material guidance

    Hi!
    I'm preparing for OCA 1Z0-051 exam and have been reading the book "OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne ORACLE Press Series)". I have few questions:
    - Is the book enough for preparing and passing the exam? If not, what other books do I need to study?
    - Apart from the book's questions, do I also need to try some other exam practice? If yes, could you please provide me the info.
    For me it is not possible to attend training. However, I can do self-study. Apart from the above book, if I'm missing something in the self-study, could you please guide me.
    Many thanks and looking forward to your kind reply!
    Edited by: user13019636 on Jun 8, 2010 4:45 AM

    user13019636 wrote:
    Hi!
    I'm preparing for OCA 1Z0-051 exam and have been reading the book "OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Osborne ORACLE Press Series)". I have few questions:
    - Is the book enough for preparing and passing the exam? If not, what other books do I need to study?
    - Apart from the book's questions, do I also need to try some other exam practice? If yes, could you please provide me the info.I would always recommend the oracle univsersity's books but since you have mentioned that you can't go for training, then using the SQL Developer guide from the oracle documentation at http://tahiti.oracle.com would be another thing to refer time to time. Please note that I have not read your mentioned book so I can't comment about it precisely.
    For me it is not possible to attend training. However, I can do self-study. Apart from the above book, if I'm missing something in the self-study, could you please guide me.I believe for sql exam, more than reading, its more important how much you have understood the logic of the question and can use different options to achieve the required result. So I would suggest that you do more practice about different problems. Thats what is main required for going for the sql paper.
    HTH
    Aman....
    Many thanks and looking forward to your kind reply!

  • Taking OCA exam ... need help to find books for 1Z0-052 and 1Z0-051

    Hi All,
    Am new to oracle but intend to take up the oracle 11g OCA exam.
    Any recommanded URL from official oracle site to help me prepare the exam paper
    1) Oracle-Oracle Database 11g: Administration I - 1Z0-052
    2) Oracle Database 11g-SQL Fundamentals-I - 1Z0-051
    Please don't guide me to site like amazon.
    I trying to find online books that does not require me to pay. I tried searching on oracle documentation but i can't seems to find any related books for preparing the exam.
    Regards

    Any recommanded URL from official oracle site to help me prepare the exam paper
    1) Oracle-Oracle Database 11g: Administration I - 1Z0-052
    2) Oracle Database 11g-SQL Fundamentals-I - 1Z0-051
    Please don't guide me to site like amazon. Oracle Database 11g Release 1
    http://www.oracle.com/technology/documentation/database.html
    Database Administration (For 1Z0-052, read Concepts Guide, Administrator's Guides. For 1Z0-051, read SQL Language Reference)
    http://www.oracle.com/pls/db111/portal.portal_db?selected=4&frame=
    I trying to find online books that does not require me to pay.I believe sharing soft copies of such documents/books is illegal.

  • How to pass 1Z0-051 exam

    I prepared to this exam well by reading and implementing the book topics of "OCA Oracle Database 11g:SQL Fundamentals I Exam Guide (Exam 1Z0-051)" + plus articles reads from Oracle website itself; but unfortunately i failed twice, the reason isn't that i did not digest the SQL material or found hard topics to understand, but it is more about the timing of the exam which it limit my thinking process and make me confuse to select the right answer; as you have 70 questions to read, understand, deduce and then answer, as in average time for each question is one minutes and twenty seconds.
    I admitted that sometimes i have problem in calculation, but i believe if time is aloud more to me i would easily figure out the question.
    I need some advice and instruction here if that possible.
    Thanks in advance
    Edited by: user12108967 on Feb 15, 2010 1:56 PM
    Edited by: user12108967 on Feb 15, 2010 2:02 PM

    user12108967 wrote:
    I prepared to this exam well by reading and implementing the book topics of "OCA Oracle Database 11g:SQL Fundamentals I Exam Guide (Exam 1Z0-051)" + plus articles reads from Oracle website itself; but unfortunately i failed twice, the reason isn't that i did not digest the SQL material or found hard topics to understand, but it is more about the timing of the exam which it limit my thinking process and make me confuse to select the right answer; as you have 70 questions to read, understand, deduce and then answer, as in average time for each question is one minutes and twenty seconds.
    I admitted that sometimes i have problem in calculation, but i believe if time is aloud more to me i would easily figure out the question.
    I need some advice and instruction here if that possible.
    Thanks in advance
    Edited by: user12108967 on Feb 15, 2010 1:56 PM
    Edited by: user12108967 on Feb 15, 2010 2:02 PMI guess first check this: [http://blogs.oracle.com/certification/2008/10/question_of_the_day_how_to_pre.html]
    and this [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=179]
    You don't mention if you took this test online .... for various reason my personal opinion is people may be under more time pressure taking it online. I have read somewhere also that if you retake an exam within 5 days you are statisitically almost highly likely to fail it again.
    The time element is obviously one part of these exams. 1z0-051 can be done within the time with a little to spare.
    Not all questions will take the same amount of time.
    In a proctored exam you have the following aids available to you:-
    - A timer indicating time left
    - The ablility to mark a question for review later.
    - The ability to leave a question blank.
    - The ability to make notes on wipe board.
    Decide a strategy of how you are going to approach questions. For instance i may choose to:
    - If I know the answer to a question straight away, mark it, double check then move to next question.
    - If I am unsure mark the question, make best possilble answer, note on my wiprepad any certaily wrong answers.
    - If I think I am going to take too long on a question (more than 2 mins) make notes of where I'm at, mrk it for review and move on.
    Basically you should be able to get through some questions fairly quickly. Others may take longer.
    You may also be resented with exhibits and things ..... its very easy to take too much time looking at all the information and getting overwhelmed.
    Read the question, elminate wrong answers and move on as quickly as possilbe.
    The should already have been practice exams on the CDROM with the book you have bought. These are less useful the more you use them, as you remember the answers.
    Additional practice tests can be purchased from [http://www.oracle.com/global/us/education/certification/sts.html] (Either buy transcender or SelftestSoftware, not both).
    You may be able to speed up your calculations with time, however if you are having trouble with them permanently then perhaps this is not the career for you, as you may have trouble if you get a job also.
    However you may find with practice it all comes into place and you speed up.
    Rgds - bigdelboy

  • 1Z0-051

    Hey,
    I have just started working, and since my work profile deals with sql and pl/sql development primarily I want to go for 1Z0-051 exam. My query is as follows:
    1.I want to know the level of difficulty to expect. I plan to study for the same from the official guide for 1.5 -2 months. Will it turn out to be enough?
    2.Is the helping material like the simulation exam absolutely necessary given ?
    3.Does a OCA certification with relatively lesser experience useful?
    Thanks in advance.\_/

    845910 wrote:
    What are your thoughts about the simulation exams provided in the cd with 1Z0-051 watson guide?Well there is a couple of mistakes, the exam, particular the downloaded bonus one, can seem a little clunky and even annoyingly buggy.
    My view on smulation exams and test questions are that i regard them to be rare golddust. I only use them after all my other preparations are complete. And even then only one at a time. In other words I use them to confirm my skills and identifiy gaps at the end of my preparation.
    Generally the question set can be used for exams or for learning. If you use them for learning you may get to the exam point quicker, but there is danger of learning the questions and not the exam topics.
    Apart from that can we also take help from the exams on the cd's for exams 1Z0-007,1Z0-047, while preparing for 1Z0-051?1z0-007 will cover a comparable topic set and level to 1z0-051 therefore sample questions and anwers will generally be valid.
    1z0-047, while it is a superset of 1z0-051 topics, will generally have questions that concentrate on 1z0-047 specific topics and to a higher difficulty level. Therefore IMHO 1z0-047 questions will probably be more of a hinderance than a help to people studying 1z0-051.
    If you really are massively into simulations, and have the money, Oracle have a Kaplan IT as a practice exam provider. See http://certification.oracle.com/ - Preparation - Practice Tests.
    - (Nearly all other simulations you will find on the net are braindump simulations and must be avoided)

Maybe you are looking for

  • Calendar no longer syncing properly after 3.0 update

    Anyone run into this problem? Any solutions? After the 3.0 update, any events that I've entered into the iPhone's calendar are not showing up in iCal. As well as that, all of my iCal events have been duplicated on the iPhone... I use Mobileme, but ha

  • CSV output/ issue if data contains comma

    Hi, I have a report which I enabled CSV output. Some of the columns in the report, I masked them with the format "FML999G999G999G999G990D00", which is one of the currency formats. I realized that if the numbers are 4 digits or larger, which means the

  • From DATE & To Date functionality in EXIT_SAPLRRS0_001

    Hi Guys, I need us assistance about a problem I am facing. In a particular query i am having a query variable From date and To date. The variable is of the type 0CALDAY.While executing the query, I am inserting the date range at From & To date respec

  • Using B2B as file / ftp gateway

    We have a need to reach out various ftp servers and retrieve files. We can do it in BPEL directly, but i was wondering if it is possible for b2b server to go out to these ftp servers and retrieve the files on a scheduled basis ?

  • Delta load - LIS extractor to several target - test load to single target

    Hi I want have a daily delta load from a LIS extractor to 3 targets (ODS's). I would like to make a test delta load to one of the 3 targets (because it has been reconstructed). Will it cause any problems if I make a delta load from the LIS extractor