SQL fundamentals I exam guide - (mod(employee_id,4)+1) mistake?

Hi guys, am getting a bit fed up with the official SQL I exam to be honest. I think I've found another mistake......
On page 341 it has this example:
+"You wish to divide staff into four groups named after the four regions in the REGIONS table. Is it possible to obtain a list of EMPLOYEE_ID, LAST_NAME, and REGION_NAME values for each employee by joining the EMPLOYEE_ID and REGION_ID columns in a round-robin manner?+
+Yes. The REGION_ID value ranges from 1 to 4. Adding 1 to the remainder of EMPLOYEE_ID divided by 4 creates a value in the range 1 to 4. The round-robin assignment of employees may be done as+
+follows:+
*SELECT LAST_NAME, EMPLOYEE_ID, REGION_NAME,*
*FROM EMPLOYEES*
*JOIN REGIONS ON (MOD(EMPLOYEE_ID,4)+1=REGION_ID)*"
BUT THIS APPEARS TO JUST BE WRONG (syntax errors aside)
Prior to reading the answer I wrote the following solution (which appears to produce the correct answers):
SELECT e.last_name, e.employee_id, r.region_name
from employee e
full outer join departments d on (e.department_id=d.department_id)
full outer join locations l on (d.location_id=l.location_id)
full outer join countries c on (l.country_id=c.country_id)
full outer join regions r on (c.region_id=r.region_id)
order by r.region_id;
I've checked the results individually, (and added the code (mod(employee_id,4)+1) to my select statement for comparison) and the exam guide just appears to be wrong (it assigns for example employee Zlotkey 179 to region 2, rather than region 1, which is Europe)
Am I missing something?????!!!!!!
Thanks,
Nick

Hi, Nick
You found the correct answer for a different question.
The question was:
nick woodward wrote:
... On page 341 it has this example:
+"You wish to divide staff into four groups named after the four regions in the REGIONS table. Is it possible to obtain a list of EMPLOYEE_ID, LAST_NAME, and REGION_NAME values for each employee by joining the EMPLOYEE_ID and REGION_ID columns in a round-robin manner?+This seems to be asking you to assign each employee to a region arbitrarily. It does not assume that there is any actual relationship between employees and regions.
>
+Yes. The REGION_ID value ranges from 1 to 4. Adding 1 to the remainder of EMPLOYEE_ID divided by 4 creates a value in the range 1 to 4. The round-robin assignment of employees may be done as+
+follows:+
*SELECT LAST_NAME, EMPLOYEE_ID, REGION_NAME,*
*FROM EMPLOYEES*
*JOIN REGIONS ON (MOD(EMPLOYEE_ID,4)+1=REGION_ID)*"
BUT THIS APPEARS TO JUST BE WRONG (syntax errors aside)Do you mean "syntax error [singular] aside"?
The only error I see is the comma at the end of the SELECT clause. They did, however, spell employees correctly, so they had the same number of errors as you.
I agree that this is a confusing question, partly because the question it addresses is something that occurs so rarely in real life. It's a shame they couldn't think of a better question, or a better way of phrasing this one.
Edited by: Frank Kulash on Apr 8, 2013 4:40 PM

Similar Messages

  • 1Z0-051 SQL Fundamentals 1 Exam Guide Problem with loading HR schema

    Hi,
    I’m new to Oracle Databases and have started studying with Oracle Press 11g SQL Fundamentals 1 Exam Guide 1Z0-051.
    The book is good except the problem I have is the HR schema they talk about is made up off seven tables (Countries, Departments, Employees, Job_History, Jobs, Locations and Regions).
    But the HR schema that I get is only made up off 4 tables (Bonus, Dept, Emp, Salgrade).
    Can anyone who has used this book please advise what I’m doing wrong and how I can get the correct Schema please.

    Hi,
    Well I haven't used that book but with whatever little I know , I shall try to attempt the question.
    There was an ancient schema for Human Resource, SCOTT which is haivng 4 tables only. Since 9i, there were an introduction of new schemas like HR ( Human Resource), OE( Order Entry) and so on. So the book is referring to that.
    Now when you create the database using Database Configuration Assistant, there comes an option with a check box, that do you want to create sample schemas or not? If you select that option, you get all these schemas in your db. If not, you only get the old SCOTT schema.
    If you have missed creating these schemas( which I belive is the case) than you need to manually create them. Here is the description for how to create them manually.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28328/installation.htm#sthref20
    HTH
    Aman....

  • Practice CD of SQL Fundamentals I Exam Guide (Exam 1Z0-051)

    ok i erased everything...
    Edited by: user12022313 on Apr 12, 2010 3:14 PM

    user12022313 wrote:
    Hi everyone,
    I just did the quiz available on the CD a few times. Now, I just realized that the practice CD quiz's answers is filled of mistakes.
    Example:
    ... MULTIPLE CHOICE QUESTION ...
    Below are the answers given at the end of the quiz by the CD:
    Correct Answer:
    .... whatever ...
    MY ANSWER:
    ... my answer ...
    I tried these options on SQL developer, and I can assure that C. AND E. should be the one not working. Is it just me or is this CD filled with mistakes!?!?!?
    Even in the book there were countless typos and spelling mistakes toward the end...
    Now I am left doubting the study guide provided with the book!I REALLY dislike it when people pur multiple choice questions on the forum. Perhaps its just me, but the publishing of these questions simply will end up leading to copyright breaches or worse.
    There are (at least) two books you could be talking about. (and i'm not going to bother working out which one it is).
    The existing errate for one of them (Watson et al) is here : [http://www.mhprofessional.com/downloads/products/0071597867/0071597867_errata.txt]
    It is a right pain these books and associated CDROMs contain mistakes. In general the situation is probably getting a little better as the years go on.
    The correct procedure for a book mistake is to:
    (0) check the errata.
    (1) Try it for oneself.
    (2) Check it with a peer.
    (3) Contact the author publisher.
    Publishing the authors's work on the world wide web is probably not the way to go.
    If at all possible try not to publish the whole question.
    As this is not a high stakes exam I am probably ranting more than i should .....
    Despite mistakes the book it overall quite valuable.
    In my opnion the publsihing of mulitple choice questions by candidates can easily end up where someone slips up and publishes something stupid like a real exam question .... and then there's trouble for everybody and someone could end up getting exam results taken away and stuff.
    As I say this rant is merely my personal opinion and is not authorative.

  • 1z0-051 Oracle Database 11g SQL Fundamentals 1 exam DUMPS

    Hi dear associates.
    can you please help me 1z0-051 Oracle Database 11g SQL Fundamentals 1 exam dumps for preparation sql fundamental exam......!

    https://blogs.oracle.com/certification/entry/0477
    https://blogs.oracle.com/certification/entry/the_route_you_choose
    If you sincerely expect to get certified via legitimate means, pl edit your post to remove words with negative connotations
    HTH
    Srini

  • Oracle Database 11g: SQL Fundamentals I 1Z0-051 Question

    i bought the OCA Oracle Database 11g: SQL Fundamentals I Exam Guide (Exam 1Z0-051) and i am not sure do i have to read the whole book ! or just go through the exam objectives table ? because the book covers lots of topics that's not in the exam and i am kind of tight on time if any one had the book or used it pls help
    To make it more clear i have a table in the book that shows each exam topic with page number next to it Like this:
    Restricting and Sorting Data
    [ ]      Limit the rows that are retrieved by a query Pg:104
    [ ]      Sort the rows that are retrieved by a query Pg:136
    [ ]      Use ampersand substitution to restrict and sort output at runtime
    Using Single-Row Functions to Customize Output
    [ ]      Describe various types of functions available in SQL Pg:170
    [ ]      Use character, number, and date functions in SELECT statements Pg:177
    Edited by: user7804566 on 01-Mar-2009 02:00

    Yes indeed. Practice at work (and elsewhere) is the best way to learn and ro reinforce learning.
    However, the more you read, the more you will be exposed to ideas and variations. Eventually you will find that many of the books have errors in various places. You will be winning when you are able to read and identify the errors AND explain why they are errors.
    The way your original question was written implied that you were after the minimum effort to pass an exam. Your last reply implies a different, and better, attitude.
    My suggestion therefore is to concentrate on the actual examples, but as quickly as possible expand to areas of interest. Explore as much as you possibly can, but make it a 'learning exploration' byut asking yourself questions and then investigating what the answer is.
    Also note that in Oracle nearly every answer has an exception. The best of the best know this and try very hard to understand when things go according to plan and when (and why) expections occur.

  • 1z0-051: SQL Fundamentals objective inquiry

    Hi,
    first of all I wish if this is the right way/ forum to ask. If not, please accept my apologies, in advance.
    I'm preparing for 1z0-051 Oracle Database 11g SQL Fundamentals 1 exam. My main refrence is :
    OCA Oracle Database 11g SQL Fundamentals I Exam Guide (Exam 1Z0-051) Complete Exam Preparation-John Watson and Roopesh Ramklass , from Oracle Press.
    I could find in the book a reference for the objective of the Using DDL Statements to Create and Manage Tables:
    Describe how schema objects work.
    Any help with that objective, please???
    Thank you

    Hell AHS, I just answered your question in the other topic you opened. The info provided in the link Markus Waldorf gave you is too detailed. You don't need to know about CLUSTER, DIMENSION, EXTERNAL PROCEDURES, etc etc.
    I passed the exam not so long ago and the book is enough (along with 5 years using Oracle almost everyday in my case).
    Cheers,

  • Exam Guide: Exam 1Z0-051 (Oracle Press).

    Hi, I am planning to appear in the 1Z0-051 test. and got the book (OCA Oracle Database 11g SQL Fundamentals I Exam Guide: Exam 1Z0-051 (Oracle Press). this is an old copy, and does not have the CD with the sample exam.
    Are the questions on the exam CD same as at the end of the book, or are those different than those in the book. I don't want to buy the book, if I don't have to.

    Saying that you do not want to buy a book does not endear you to the auhors
    Nore that I am only a part author of that one, my colleague Roopesh was an equal (or greater) contributor.
    I have not gone through the material on the CD, but I was under the impression that it was the same as the printed content. Certainly what I have seen of all the illegal copies that criminals put up on web sites for thieves to download suggests that. THere are other sets of a few hundred questions on the McGraw-Hill website, I think if you can demonstrate that your copy is legal you will have access to them.
    Overall, I would make two suggestions. First, do not rely on dummy questions. They are not the real thing (which would be illegal) and all they do is lt you confirm that you have studied the relevant material. There is absolutely no point in repeating them unil you get all right, which is what some people do. Second, do not do that exam at all, it is out of date. Do the 1z0-061 exam insead. Roopesh's book http://www.amazon.com/gp/product/0071820280 is excellent.

  • Is the only 1Z0-051 SQL Fundamentals I certification useful/recognised in the international labour market?

    Hi,
    I've been studying for passing the 1Z0-051 "SQL Fundamentals I" exam before taking the 1Z0-144 "Program with PL/SQL" exam and so I wonder if the only (for the moment) "SQL Fundamentals I" certification may be considerated useful/recognised in the international labour market or if it's "only" an intermediate certification for taking the "Program with PL/SQL" exam.
    I ask for that 'cause I wonder if once I'll have taken the "SQL Fundamentals I" certification, this might be added in my curriculum or if it's just an intermediate certification
    Thanks!

    Hemant K Chitale wrote:
    ...The SQL exam 051 or 061 by itself doesn't have value. But the SQL Expert exam 047 is a standalone certification exam.
    I really don't like the statement that the SQL Fundamentals exams have no value.  Passing the exams will not earn a certificate.  That is not the same thing as having no value.  I am in the final stages of hiring an assistant to act as a backup for me.  For several reasons the company decided to hire a recent college graduate with minimal (read almost zip) Oracle knowledge.  I plan to assign them a set of reading material to study and certification exams to prepare for.  I wrote an article detailing the specific steps on Certification Magazine here:
    How to train your assistant: Certification makes the minion - CertMag
    The very first test I will have them work towards is 1Z0-051. If that test 'had no value', why would I bother doing this? The SQL Expert Exam (1Z0-047) earns a certification and so obviously is'the more valuable exam, right? Wrong (at least in my opinion). The SQL Fundamentals exam has a better coverage of the basic SQL elements that I need to be confident my assistant has learned.  After my backup has completed all of the certifications listed in the above article, I may well have him move on to some more advanced exams, including 1Z0-047, among others.  However, much of the SQL Expert exam content is on seldom-used elements of the language.  I don't think I have ever used the ROLLUP, CUBE, or GROUPING SETS operations for real-world work. Likewise I cannot recall having a need for multitable INSERTs. I have never had a need to set a column to UNUSED.  I think I've used regular expressions less than five times in twenty years.  I use CONNECT BY PRIOR more than that, but still seldom enough that I often Google the syntax when I need to write a hierarchical query.
    In short -- why would I bother making them spend time studying aspects of SQL that they almost certainly won't use very often.  I need them to be knowledgeable about the SQL syntax that they will be using on a daily basis.  That's what the SQL Fundamentals exam contains and that is why that exam is more valuable for people just starting out with the Oracle database.

  • Newly Added Topics Missing From steve o'hearn Exam Guide (1Z0-047)

    Hi,
    I am planning to take exam 1Z0-047.
    I got to se the exam guide for this,(OCA Oracle Database SQL Certified Expert Exam Guide (Exam 1Z0-047)) by Steve o'hearn in market.
    But it seems that syllabus of the exam is modified on 15th september 2014; and newly added topics are NOT present in the exam guide.
    Below are the objectives and topics I feel are missing from the book.
    Restricting and Sorting Data
    Use the SQL row limiting clause**
    Create queries using the PIVOT and UNPIVOT clause**
    Use pattern matching to recognize patterns across multiple rows in a table**
    Displaying Data from Multiple Tables
    Use the cross_outer_apply_clause**
    Using Subqueries to Solve Queries
    Create a lateral inline view in a query**
    Using DDL Statements to Create and Manage Tables
    Truncate tables, and recursively truncate child tables**
    Use 12c enhancements to the DEFAULT clause, invisible columns, virtual columns and identity columns in table creation/alteration**
    Manipulating Large Data Sets
    Use explicit default values in INSERT and UPDATE statements**
    We can find material on these topicsover internet(in fact I have actually worked on few of these topics already as part of my job.)
    But i prefer referring to book as it helps to understand the scope.
    I just joined the oracle forums,and not sure if I am placing this discussion on correct forum/category.
    A humble request to advice if it is at wroing place.

    I am just thinking what next course should I take ?
    Immediate target will be obviously  some PL SQL related test like 1Z0-147.
    BUT what to do after that ?
    In my work experinece so far, I have worked as a developer, senior developer(mainly in maintenace projects , both OLTP and OLAP projects I have worked for.
    that is, small as well as relatively big data volumes.Right from simple DB to DW systems of big enterprise corporation where millions of transactions happen and enter into system each day). I have  also participated in database designing when I worked on project where database was being designed from scratch. so, I am aiming/aspiring for a role something like Designer  or architect roles in the long run.
    I'm glad you found my page useful. I actually recommend 1Z0-144 over 1Z0-147.  The two exams are equivalent in their results, but I feel 144 is the better exam.  Also, 147 was almost retired at one point.  OU backed off, but may put it back on the chopping block at any time.  I wrote an article explaining why I prefer 144 here:
    Oracle PL/SQL Developer Certification: 1Z0-147 or 1Z0-144?
    As to the step after that, 1Z0-146 is the obvious one to gain the PL/SQL OCP.  147/144 will only gain the OCA-level cert.
    If you want to end up as a designer or architect, eventually you must get into database design, which would argue pursuing the DBA track.
    Millions of transactions implies a significant requirement for performance tuning which would argue for the SQL Tuning (1Z0-117) or performance certifications (1Z0-054/1Z0-064).

  • Study source for 1Z0-051 exam Oracle11g SQL Fundamentals certification

    Greetings,
    What are some good sources for this exam that are legit. I have the OCA/OCP Oracle Database 11g All-in-One Exam guide, read the whole section regarding SQL and have practiced the test questions until I scored 100% multiple times. Yet (with all humility), I failed the exam. I don't want to cheat and will keep trying until I pass it the right way! I'm going to keep studying the areas I need to really master., but I noticed that the real Exam was nothing like the practice exam. For me, the real exam was a lot trickier and there were a few questions that the book didn't cover. The guy working at the test center recommended testking but upon further research, some sites consider using testking as cheating. I have not purchased any new study guides and would like feedback to some legit study guides. Is the transcender study guide legit and worth it? Please pardon me if this question has been asked a dozen times. I will scour the forums for more info regarding this but also wanted some direct feedback.
    Thank you,
    A mon

    A mon wrote:
    Rene,
    Thanks for the link and the advice. Very helpful! And yes, it got to the point where I knew some of the answers before I finished reading the questions.
    Thanks,
    A monI was going to say possibly the cheapest way is buy the sybex Book : ISBN-13: 9780470395127 which is like the Watson Book ... but it isn't that cheap andalso coves 1z0-052 which you don't need.
    ( Selftest Sofware is reputed to be good, Transcender a little better (they are both Kaplan Brans and overlap common material). Ucertify may be cheapter but quality may be less. And make sure you get the right site and not a phishing link pretending to be them.
    .... wsa it you who i said to try the exam and see where you were really at ? .. if so sorry and better luck next time. Perhaps though it is an opportunity to revise study technique.
    See: http://blogs.oracle.com/certification/entry/question_of_the_day_how_to_pre
    .... Doing your own flash cards and notes can be useful.
    I always regard practice questions as precious and leave it as late as possible in study before doing questions.
    (If you must peek ahead choose a chapter just before half way through the book and do end of chapter questions for that only).
    But I won't even do end of chapter practice questions until I think I know the whole exam topics and have notes on all the material.
    Only when I think I know it all will I do even end of chapter questions.
    And I wont do them if I have read up on the topics during the day. I will wait until the next day.
    And after doing end of chapter results I re-read the chapter and topics and practice. But I wont redo those questions for a few days
    And only when I get good enough practice score from the chapter do I take a full practice test.
    Basic principle is concentrate on learning and use the precious study ids to fill the gaps. It's a little slower getting there that way but these is more chance of a pass.
    Edited by: bigdelboy on 19-Jan-2012 14:49 typos.

  • May i go for sql expert(1Z0-047) exam or 11g sql fundamentals 1(1Z0-051)

    Hi all,
    Please suggest me, may i go for sql expert(1Z0-047) Test or 11g sql fundamentals 1(1Z0-051) Test with
    oracle Administration 1(1Z0-042) Test.
    Which will be the best option.
    Thanks & Regards

    You may use either exam along with the Oracle Administration 1 (1Z0-042) exam if your goal is to get a 10g DBA OCA credential.
    The SQL Expert exam is quite a bit more challenging than the SQL Fundamentals exam. On the other hand, the SQL Expert exam gives you a separate SQL Certified Expert credential. If you can pass it, you should take the SQL Expert exam.
    Justin

  • Exam guide for advance pl/sql 11g

    Hi,
    Can I get a exam guide for advance pl/sql 11g from anywhere ?
    Edited by: sajalkdas on Aug 3, 2009 9:39 PM

    Hi,
    Here's some really good reading stuff:
    http://www.oracle.com/pls/db111/homepage
    Perhaps you'll get an answer on the [Certification Forum|http://forums.oracle.com/forums/forum.jspa?forumID=459]

  • Do i have to pay exam center fee to an authorized oracle exam center(new horizon) in Bangladesh rather than the exam fee of Oracle Database 11g: SQL Fundamentals I ?

    Do i have to pay exam center fee to an authorized oracle exam center(new horizon) in Bangladesh rather than the exam fee of Oracle Database 11g: SQL Fundamentals I ?

    I agree with Matthew that I cannot be sure exactly what you are asking.
    Generally i regard it as less risk to yourself to schedule and pay Pearson Vue directly.
    However if you contact the exam center and get them to schedule for you my understanding is you pay them. Unfortunately there is risk of the exam center overcharging you (99%++ of most most worldwide wont).
    The only reasons for doing this I can think of is (there may be more) :-
    - is if you do not have credit/debit cards that Pearson Vue would accept.
    - The center will accept turn up and schedule and your transport to the exam center might be unreliable and you are worried you might miss the appointment and you are hoping to pay on arrival (some will not accept this).

  • Errors in 1z0-051 and 1z0-061 Official Oracle exam guides

    What can we do about errors in the official Oracle exam guides.
    I am doing the 1z0-061 (Oracle Database 12c: SQL Fundamentals).
    The 051 and 061 exams are exactly the same.
    051 is written by John Watson and Roopesh Ramklass and the 061 is written by Ramklass, but the thing is, both books have the same content word for word.
    I found these errors in the books:
    (1.) In chapter 08 (Using subqueries to solve problems) in both books it says "A subquery can be used to select rows for insertion but not in a VALUES clause of an INSERT statement".
    But this is wrong. You CAN use a subquery in a VALUES clause: This will work ->
    INSERT INTO values_test (f1) VALUES ((SELECT SYSDATE FROM DUAL));
    However you have to have the 2 brackets in red.
    (2.)
    Chapter 2: Self test question 9
    The following character literal expression is selected from the DUAL table: SELECT 'Coda""s favorite fetch toy is his orange ring' FROM DUAL; (Choose the result that is returned.)
    A.  An error would be returned due to the presence of two adjacent quotes
    B.  Coda's favorite fetch toy is his orange ring
    C.  Coda""s favorite fetch toy is his orange ring
    D.  Coda""s favorite fetch toy is his orange ring'
    The books says the correct answer is B. But this is wrong.
    Correct answer is C, since the "" are 2 double quotes and they will appear as it is.
    Even if "", is actually 4 single quotes the output then will be Coda''s favorite fetch toy is his orange ring
    which has 2 single quotes.
    I wrote to the author  (emai [email protected]) but got no reply.
    How can we let Oracle certification know that there are errors in these books. This can affect the exam and can mean the difference between passing and failing.

    >The book cover says "Oracle Press", meaning Official Oracle.
    No -- the name does not mean that.  'Oracle Press' is a division of the McGraw-Hill publishing company that specializes in writing books for the Oracle suite of products.  Oracle has close ties with the publisher and often supplies information to the authors that is not publicly available.  However, Oracle is not responsible for the content of the books.
    >If not, then what ARE the Official Oracle guides?
    The only thing that you could call an 'Official' Oracle guide would be student guides developed by Oracle University for one of their courses.  This content is supplied to attendees of the courses. The material is copyrighted and should not be available on the Web.

  • I just took the 1Z0-051 SQL Fundamentals test

    I read this book to study for the test. I went through the quizes in the book and the cd with test on it that came with the book. I did ok with those. I came across UCertify and saw they had some practice test and everything so i go that too and really used that as my main study tool.
    I was making 90 - 95s on every test with the UCertify stuff. So i thought I was ready for the test. I got signed up and went and took it yesterday.
    THE UCERTIFY STUFF WAS NOTHING LIKE THE TEST!!!!
    It was so different that about 15 questions into the test I knew I wasnt going to pass. The UCertify questions were geared towards stuff you could memorize...rules, what different functions do, what certain characters mean.
    The test was 90%...here are 4 queries...which one works based on the given exhibit. They werent just simple one line queries either. I swear one question had a query with a subquery with a subquery and all of them had joins from 4 different tables. The question was so hard to follow what they wanted that it was almost a joke. Alot of the questions asked for 2 answers..."select two correct answers"
    I know what to study now but I will definitely NOT be using UCertify to study with anymore.
    If you are studying the best thing to study is what breaks a query, look for questions that ask you to figure out whats wrong in the query or what the outcome will be.
    Know a LOT about grouping, sorting, subqueries, and being able to determine what a query will return.

    Hi,
    I took the SQL Fundamentals test too, although the one I took was for 9i.
    I too prepared for it using uCertify and a OUP book (Jason Couchman), and like you, I was getting around 85-95% on the uCertify tests. Furthermore, their Final Test said that this is harder than the actual exam, so when I got over 90%, I was very confident. However, like you, when I did the actual test, it was a lot harder, and eventually I passed with a much lower mark than I expected (pass mark was 37, I got 41). So I was definitely disappointed with uCertify.
    I do believe they say that "pass or your money back", so I would advise you to ask them to refund you!!!
    Good luck in your next test.

Maybe you are looking for

  • Can't sync contact with my MBP

    Dear All, My MBP is osx 10.6.8 and iPhone4 5.1.1 Last week my iphone can't sync contacts with MBP, it sync with my gmail contacts! I try to reset my iphone and sync again, but it can't work. Only contacts have problem, calender is work fine. Anyone k

  • How to Disable the CD Drive

    Help! My CD drive quit working on me, so I decided to buy an external CD drive. Whenever I try to use the new drive, my old drive (that no longer reads CDs) opens and tries to take over, making it difficult to use the new one. Is there a way that I c

  • Get Old Value and the new value based on the date

    Hi I have a table called roster created below with following insert statements. CREATE TABLE ROSTER ROSTER_EMPLOYEE_DEF_ID NUMBER, EMPLOYEE_ID NUMBER, DEFINITION_REGION_CODE NUMBER, DEFINITION_DISTRICT_CODE NUMBER, DEFINITION_TERRITORY_CODE NUMBER, S

  • 10.1.3.5 - Unable to delete tmp files during bpel redeployment

    when I try to re deploy bpel process, i am getting the following error An error occurred while attempting to deploy the BPEL suitcase file "C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\bpel_2455783.tmp"; the exception reported is: archive

  • Data export

    Hi!Does anyone know how to export data from a script into a fixed length file, so it can be read into a mainframe program.Thanks,Jason