Use of Prefix SYS before dbms.output()

Hi all,
This may be silly. But i have a doubt what is the difference between the below two:
DBMS_OUTPUT.PUT_LINE('TEST');
AND
SYS.DBMS_OUTPUT.PUT_LINE('TEST');
What is the use of SYS prefix?
Regards
Vijayaragavan

788844 wrote:
This may be silly. But i have a doubt what is the difference between the below two:
DBMS_OUTPUT.PUT_LINE('TEST');
AND
SYS.DBMS_OUTPUT.PUT_LINE('TEST');
Not silly at all. This is a scope resolution issue.
All programming languages have scope resolution. You refer to a call (method, function, procedure, etc). The system (compiler or run-time engine) needs to figure out exactly what you are referencing , in order to execute that call.
In the case of PL/SQL, the PL/SQL engine will first use the local scope - in other words, the objects (procedure, functions, variables, etc) defined in the current code unit and schema.
If it fails to resolve the call reference, it looks at the public scope.
DBMS_OUTPUT.put_line() is a package call reference. So the 1st check would the local check. Does such a package exist in the current schema? Is there a local synonym that can be used?
If this fails, scope becomes public. Is there a public reference (synonym in this case) that resolves this?
The answer for DBMS_OUTPUT is yes - and that public synonym refers to the package owned by the SYS schema.
If you had a local package with the same name, or a local synonym, then that would have been used.
When you now code SYS.DBMS_OUTPUT.put_line() instead, you explicitly state the scope to the PL/SQL engine. You are telling it that you are referring to the DBMS_OUTPUT object owned by the SYS schema.
Both methods have certain advantages and disadvantages.
Simplistically, implicit scope (where you leave it up the engine to find the object you are referencing) provides more flexibility. Let's say you need to modify the behaviour of DBMS_OUTPUT - have it for example also write output to a log file. You can create your own DBMS_OUTPUT package with the exact same interface as the SYS.DBMS_OUTPUT package. Inside your custom package you can write output to a log file and then call the SYS.DBMS_OUTPUT package to do its part.
The original source code using DBMS_OUTPUT.put_line() works unchanged. All you have now introduced is a local reference that satisfy the scope - and your local DBMS_OUTPUT package is now used instead.
Explicit scope can be argued to be more secure. As no-one can "hijack" your code's call by manipulating scope resolution - and do the above and create a custom DBMS_OUTPUT package. But this also makes the code a lot more rigid.
In general in PL/SQL - implicit scope is desirable as it provides the flexibility that is often needed. When one writes "trusted" code (code that does superuser stuff and needs to be trusted to always do the right thing), then explicit scope should be considered instead.

Similar Messages

  • DBMS Output stops working intermitantly

    Hi,
    Version 1.5.1
    When I am creating a PL/SQL script in SQL Developer I like to check the results in DBMS Output. The problem I am experiencing is it returns the results to the DBMS Output pane some of the time and then for some of the time it does,nt. I cannot work out why it stops working. Some of the time creating a new work sheet is successful.
    Has anyone else experienced this problem. It is a little frustrating when it stops working, especially when you are in the middle of writing and testing scripts.
    I have had this experience with every version of SQL Developer I have used.
    Ben

    Ben,
    Hitting the DBMS Output enable button in SQL Developer effectively performs the same as the "set serveroutput on size <buffer size>" or "dbms_output.enable(<buffer size>);" commands. As I understand it, if you are only ever going to run your code through the SQL Worksheet, then using the DBMS Output enable button means you don't need the dbms_output.enable call.
    The Poll slider is how frequently that DBMS Output tab checks to see if there is any DBMS Output to display - the tooltip shows "Poll frequency max 15s". I have no idea what the minimum frequency is.
    I don't know why it still isn't working - after closing all but one worksheet, have you confirmed that the DBMS Output tab shows "set serveroutput on"? If not, I would suggest you disable DBMS Output (should show "set serveroutput off") and then re-enable it (should show "set serveroutput on").
    As a bit of background that might help clarify what is going on, without the set serveroutput on or dbms_output.enable or enabling DBMS Output through SQL Developer, calls to dbms_output.put_line (for example) are effectively ignored and the text is not saved. After a set serveroutput on or dbms_output.enable (without enabling DBMS Output through SQL Developer) calls to dbms_output.put_line are recorded but not displayed (they are only cached). After enabling DBMS Output through SQL Developer, the worksheet then polls the DBMS Output cache with the frequency defined by the slider and displays the results if any. The difference between SQL Developer and SQL Plus is that in SQL Plus the set serveroutput on also switches on the polling (done after every statement completes rather than on a frequency basis).
    theFurryOne

  • 4.1EA2 User-Defined-Report strips CRLF when using PL/SQL DBMS Output

    Hi,
    I have a report with a child report.
    That child report uses pl/sql to print to the screen. (dbms output)
    When i use the procedure manually it prints fine.
    When i copy this output to a text editor i can see the CRLF in there.
    If i call the same procedure tru the reports section of SQLDeveloper the output is stripped of any CRLF characters.
    This is causing it to be useless for me: i am using it to generate code and it all appears as one big line on the screen.
    Copying this to a text editor indeed shows all CRLFs gone.
    Is this intentional or a bug ?

    Jeff,
    Thnx for the answer.
    I don't have a problem writing html in my code being a former webdeveloper with experience in apex as well.
    The problem is that the option presents itself as a standard plsql dbmsoutput, which suggests identical output as a dbmsoutput pane in sqldeveloper.
    From your answer i gather it really is supposed to do html formatting.
    Your "solution" of inserting br tags would be fine if it weren't for the fact that when i do a copy of the output in this report pane sqldeveloper strips away the br tags but doesn't replace them with crlf's.
    And since the crlfs that were in the output are also stripped in this result pane i get a single line of text when i copy over a page of text from the result pane into a normal texteditor.
    As such it behaves differently then say a browser when i copy a page of text from the browser and paste it in a text editor. There i see the crlfs that were present in the original source.
    Is there a listing somewhere that explains what tags are supported?
    Or CSS ?
    Does it support stuff like white-space: pre ?
    I understand the usefullness of a html-aware plsql dbmsoutput output option in the reports list of a user-defined report.
    However i would like to use this opportunity to advocate to include , as an extra option or tick box etc., an option to just display the output as the normal dbmsoutput pane displays it.
    That is without extra formatting.
    I like the idea of being able to click in the table section above and to have bottom pane generate the appropriate code as output.
    That  use-case can not happen right now since it formats as html (and not even the correct way) or, when going along with this route, strips everything to a single line of text when copying the data from the result pane.
    rgrds mike

  • Getting errors in dbms output

    Hi All,
    I've written a function to calculate the value for QTD, Previous QTD, YTD and Previous YTD, by giving the parameters of Date, Table name, FilterCol(Date Column in the table), Column name to calculate...
    --------------------------The function code is below:-----------
    DECLARE
    V_REPORT_DATE VARCHAR2(20):='&V_RPRT_DATE';
    V_FILTERCOL VARCHAR2(100):='&V_FLTRCOL';
    V_COL_NAME VARCHAR2(100):=UPPER('&V_COL_NAM');
    V_TAB_NAME VARCHAR2(100):=UPPER('&V_TBL_NAME');
    V_START_DATE VARCHAR2(20);--:='&stdate';
    V_LAST_DATE VARCHAR2(20);--:='&lastdate';
    V_QUARTER_NUMBER VARCHAR2(1000);
    V_STR VARCHAR2(1000);
    V_QTY VARCHAR2(1000);
    V_SUM NUMBER(14,3):=0;
    V_TAB VARCHAR2(100);--:=
    V_COL VARCHAR2(100);--:=;
    V_COL2 VARCHAR2(100);
    V_PRV_QDATE VARCHAR2(20);
    V_PRV_QDATE2 VARCHAR2(20);
    V_SUM3 NUMBER(14,3):=0;
    V_CURRQTD VARCHAR2(1000);
    V_PRVQTD VARCHAR2(1000);
    V_SUM1 NUMBER(14,3):=0;
    V_YTD1 VARCHAR2(20);
    V_YTD2 VARCHAR2(20);
    V_YTD VARCHAR2(1000);
    V_SUM2 NUMBER(14,3):=0;
    V_PRVYTD VARCHAR2(20);
    V_PRVYTDSTR VARCHAR2(20);
    V_PRVYTDEND VARCHAR2(20);
    V_PRV_YTD VARCHAR2(1000);
    V_CUMM VARCHAR2(1000);
    BEGIN
    ---------------GETTTING QUARTER NO.------------------------------
    V_QTY:='SELECT TO_NUMBER(TO_CHAR(TO_DATE('''||'19/12/2012'||''', ''DD/MM/YYYY''), ''Q'')) FROM DUAL';
    DBMS_OUTPUT.PUT_LINE(V_QTY);
    EXECUTE IMMEDIATE V_QTY INTO V_QUARTER_NUMBER ;
    DBMS_OUTPUT.PUT_LINE('QT NUM'||V_QUARTER_NUMBER);
    ----------------CURRENT QUARTER VALUE----------------------------
    SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_START_DATE,V_LAST_DATE
    FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
    TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
    FROM DUAL
    CONNECT BY LEVEL <= 12) A
    WHERE A.QTD = V_QUARTER_NUMBER;
    DBMS_OUTPUT.PUT_LINE(V_START_DATE||'****'||V_LAST_DATE);
    V_CURRQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_START_DATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_LAST_DATE||''',''DD/MM/YYYY'')';
    --WHERE  trans_date betwen V_START_DATE1 AND V_LAST_DATE1';
    DBMS_OUTPUT.PUT_LINE(V_CURRQTD);
    EXECUTE IMMEDIATE V_CURRQTD INTO V_SUM;
    DBMS_OUTPUT.PUT_LINE(V_SUM);
    --RETURN V_SUM;
    ----------------END OF CURRENT QUARTER--------------------------
    -----------------------PREVIOUS QUARTER---------------------------
    SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_PRV_QDATE,V_PRV_QDATE2
    FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
    TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
    FROM DUAL
    CONNECT BY LEVEL <= 12) A
    WHERE A.QTD = V_QUARTER_NUMBER-1;
    DBMS_OUTPUT.PUT_LINE(V_PRV_QDATE||'****'||V_PRV_QDATE2);
    V_PRVQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRV_QDATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRV_QDATE2||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_PRVQTD);
    EXECUTE IMMEDIATE V_PRVQTD INTO V_SUM1;
    DBMS_OUTPUT.PUT_LINE(V_SUM1);
    -----------------------END OF PREVIOUS QUARTER---------------------------
    -----------------------CURRENT YTD------------------------------
    SELECT TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'),'YEAR')INTO V_YTD1 FROM Dual;
    SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_YTD1,'DD/MM/YYYY'),12 -
    TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_YTD2 FROM DUAL;
    V_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_YTD1||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_YTD2||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_YTD);
    EXECUTE IMMEDIATE V_YTD INTO V_SUM2;
    DBMS_OUTPUT.PUT_LINE(V_SUM2);
    ---------------------------END OF CURRENT YTD------------
    -------------PREVIOUS YTD-------------------
    SELECT ADD_MONTHS(TO_DATE('19/12/2012','DD/MM/YYYY'),-12) INTO V_PRVYTD FROM DUAL;
    SELECT TRUNC(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),'YEAR') INTO V_PRVYTDSTR FROM DUAL;
    SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),12 -
    TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_PRVYTDEND FROM DUAL;
    V_PRV_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRVYTDSTR||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRVYTDEND||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_PRV_YTD);
    EXECUTE IMMEDIATE V_PRV_YTD INTO V_SUM3;
    DBMS_OUTPUT.PUT_LINE(V_SUM3);
    END;
    I am getting the dbms output:
    SELECT TO_NUMBER(TO_CHAR(TO_DATE('19-DEC-2012', 'DD/MM/YYYY'), 'Q')) FROM DUAL
    QT NUM4
    01-OCT-12****31-DEC-12
    SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-OCT-12','DD-MON-YYYY') AND TO_DATE('31-DEC-12','DD-MON-YYYY')
    01-JUL-12****30-SEP-12
    SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-JUL-12','DD/MM/YYYY') AND TO_DATE('30-SEP-12','DD/MM/YYYY')
    For calculating the QTD and Previous QTD, it's showing only the query in dbms output not the sum----I've chkd the error and realize its converting the date format like DD-MON-YYYY instead of i've defined the date format as DD/MM/YYYY, so values aren't comin.
    Note:- All the queries in function are giving the correct values as expected, if I fire them outside the function code, and giving correct values as data is there.....
    -----For YTD and PYTD----------showing error i.e.
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "SPARC.DBMS_OUTPUT", line 116
    ORA-06512: at "SPARC.DBMS_OUTPUT", line 65
    ORA-06512: at line 81
    I've given the string varchar2 type and 1000:
    Help appreciated, Plz help me out.....
    One more favor I ask i.e.----Can any1 help me to write dbms output to show all the values in one line i.e values of SUM, SUM1, SUM2, SUM3
    Thnx in Advance

    Your code is against the basics of PL/SQL..
    Why are you sing DYNAMIC SQL?
    And all these values (QTD,YTD..) - Cant you find it in plain SQL..?
    Plase provide sample data (CEATE TABLE and INSERT statements) and expected output..
    Provide the logic to arrive at expected output..
    And your DB version..
    And use {noformat}{noformat} tags to format the code and data you post..
    What you are doing is *COMPLETELY WRONG*
    Read FAQ: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can I use my Gaming series as an output device for another computer?

    Hello,
    I tried to search for some similar topics but nothing showed up, so I apologize in advance if this has been asked before:
    Can I use my Gaming series as an output device (monitor) for another computer?? I am searching for use my Gaming series as a monitor for a more powerful machine. And if so how can it be done ?
    Thanks,   

    What is your AiO model?

  • Java Stored Proc - Oracle DBMS Output

    The title pretty much says it all. I have a Java Stored Procedure and I need to direct output preferably to DBMS output from within the Java code. (This is a proof of concept and the managers want to see out put from it so they "know" it's working.)
    System.out.println seems to disappear (though why that is the case I have no idea) in spite of the fact that the samples all show the use of System.err to generate error messages.
    I'm not married to the idea of DBMS output, but it's an easy place to have the output for debugging purposes.
    Comments suggestions and ideas most welcome.
    Regards,
    P

    This might get you going in the right direction:
    DBMS_JAVA
    Gives you the ability to modify the behavior of the Aurora Java Virtual Machine (JVM) in Oracle. You can enable output (meaning that System.out.println will act like DBMS_OUTPUT.PUT_LINE), set compiler and debugger options, and more.
    You can try this link and look for SET_OUTPUT
    http://www.unix.org.ua/orelly/oracle/guide8i/ch09_07.htm
    Good Luck!

  • DBMS OUTPUT

    I want to be able to output data more than the 1000000bytes limit for dbms output.
    In my environment my application server sits on a different IBM server from the database server and this makes it difficult to for me to use UTIL_FILE utility.
    Please how can i spool this data without using UTIL_FILE.

    The buffer size limit is 1000000 and 32767 bytes per
    line. Is your query a plain simple SQL and does not
    involve any PL/SQL? If it is try to use the SPOOL
    command.It is a PL/SQL and it is trying to spool data more than 1000000. Is there a way i can achieve this without UTIL_FILE since my DB server sits on different Machine from my application Server and my reports are executed from my application server.
    thanks

  • 2.1 RC1 Dbms Output not working

    I don't know if this is new, or an existing bug from the EA releases (saw a couple threads in regards to dbms_output). I don't seem to be catching any results in the Dbms Output window. Even for something as simple as this run as a statement or script:
    BEGIN
      dbms_output.enable;
      dbms_output.put_line('HI');
    END;
    /I tried it by opening dbms_output before opening the worksheet, opening it after opening the worksheet, opening a new worksheet after both of the above, and an unshared work sheet.

    I noticed this not working for any 9.2 Db. We have internal dev dbs on that release.
    However this works on 10g. I would appreciate a fix ASAP.
    Java(TM) Platform     1.6.0_11
    Oracle IDE     2.1.0.63.73
    Versioning Support     2.1.0.63.73

  • Prefix timestamp before the name of the file

    Hi Experts,
    Can we prefix timestamp before the name of the file?
    Generally file name followed by timestapm instead of that
    can we add timestamp before file name? .If so please let me know .
    thanks in advance
    N.P.Babu

    Hi,
    all you need to do it to create the filename
    in one of the tag in your xml message and
    then use variable substitution:
    refere to Variable Substitution section on this page
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    it's easy but using
    Adapter-Specific Message Attributes
    with sp14 is much better
    Regards,
    michal

  • Can dbms.output in procedure impact its performance?

    If dbms.output is used in procedure inside a loop, which gets executed for bulk data, can it have a performance impact in terms of execution time it takes?
    Consider server.output is ON..

    user11878374 wrote:
    Consider server.output is ON..This makes no difference.
    With server_output=OFF, a dbms_output.put_line has exactly the same performance characteristics (read: uses exaclty the same number of cpu cycles).
    Serveroutput = ON/OFF just controls wether SQLPlus will, upon completion of a database call, go ahead and execute dbms_output.read_line, to check if there is output that should be retrieved to be displayed.
    Also: do not forget that every call dbms_output.put_line will claim some memory (SGA or PGA, don't know) to store the output temporarily (until sqlplus retrieves it).
    Toon

  • Dbms output printing white spaces

    when i loop thro the code, i get 20 rows but when it is tryign to print it, its printing white spaces. when i quesry the table, i can see data for those 20 rows. i cannot understand why dbms output is printing white spaces for this collection. i have the same results in toad and plsql editor.
    declare
      -- Local variables here
      io_Loopid number :=651852;
       o_LoopSHELFpsr      NRW.t_SHELFpsr;
    begin
      -- Test statements here
      io_Loopid:= 651852; -- DONT COPY THIS ONE. JUST TO UNIT TEST.  
        IF(io_Loopid <> -1) THEN
        -- determine the PSR values associated to teh To customer look of the order
          pkgapi.determinendwdownstream(o_psrlist =>  o_loopSHELFpsr,
                                           i_loopid =>  io_Loopid);
          dbms_output.put_line( ' no of rows coming back card list ' || o_loopSHELFpsr.count);
          For i in 1..o_loopSHELFpsr.count
          LOOP
          dbms_output.put_line(o_loopSHELFpsr(i).terminalid );
          dbms_output.put_line(o_loopSHELFpsr(i).TERMSYSID );
          dbms_output.put_line(o_loopSHELFpsr(i).CARDTYPEID );
          END LOOP;
        END IF ;
    end;

    show us that the collection data is not null. i.e. use:
         dbms_output.put_line(nvl(to_char(o_loopSHELFpsr(i).terminalid), 'null') );
    ....Amiel Davis

  • DBMS OUTPUT WINDOW

    Using sql developer 3.2.20.09
    Don't know what I clicked accidentally, my dbms output window is screwed up. I can not see its top end . So I can not close it or see /change the db connection. Only thing I can do with this window is to change its size from bottom edge or from sideways.
    Please help!
    Thanks and Regards,
    RN

    You could try minimising or moving some other panes to make the top of the dbms_output pane visible.
    Failing that, you could delete windowinglayout.xml which will reset the windows to the defaults.
    The file should be in SQL Developer\system3.2.20.09.87\o.ide.11.1.1.4.37.59.48 in your home directory (.sqldeveloper if not on windows

  • DBMS OUTPUT window add behaviour

    Using Version 2.1.1.64, when you click on the 'add' button in the DBMS output window, you are prompted for the connection to add.
    I have upwards of 30 connections defined and the default connection rarely happens to be the one I want, so I have to scroll to find it, which is a pain in the neck. Especially when I'm only opening it to fake a keep alive function in the first place.
    It would make sense for the "Select Connection" dialog to
    1) Default to the current connection (lets say the one in use by the window that has the focus) and
    2) By default only show connections that are currently open
    For bonus points, I'd like to be able to default DBMS_OUTPUT to open whenever I open a connection.
    Thanks!

    The bonus part was requested a couple of years ago and has been accepted, but apparently didn't have enough weight to make it in past releases, so do add your vote.
    Regards,
    K.

  • Help: use command "run" and "exec", no output

    I create a script file Test.sql, and type "run d:\test.sql" in ttisql's command prompt, but there is no output, not even any error messages.
    Command> run d:\test.sql;
    Command>
    I try to use "Prepare" and "Exec", still no output
    Command> prepare 1 select * from employee;
    Command> exec 1;
    Command>
    ttisql looks recognize these commands, but it doesn't execute them. Who knows the reason? thanks.

    Hi,
    I create a script file Test.sql, and type "run d:\test.sql" in ttisql's command prompt, but there is no output, not even any error messages.What SQL statements are in Test.sql? To see more verbose output from ttIsql, try increasing verbosity. The default is 2. The highest (most verbose) is 4.
    Command>verbosity;
    verbosity = 2
    Command> verbosity 4;
    The command succeeded.
    try to use "Prepare" and "Exec", still no outputTry adding a fetchone or fetchall command to retreive the result. e.g.
    Command> prepare 1 select * from emp;
    Command> exec 1;
    Command> fetchone;
    < 7369, SMITH, CLERK, 7902, 1980-12-17 00:00:00.000000, 800.0000, <NULL>, 20 >
    1 row found.
    Command> fetchone;
    < 7499, ALLEN, SALESMAN, 7698, 1981-02-20 00:00:00.000000, 1600.000, 300.0000, 3
    0 >
    1 row found.
    Command> fetchall;
    < 7521, WARD, SALESMAN, 7698, 1981-02-22 00:00:00.000000, 1250.000, 500.0000, 30
    >
    < 7566, JONES, MANAGER, 7839, 1981-04-02 00:00:00.000000, 2975.000, <NULL>, 20 >
    < 7654, MARTIN, SALESMAN, 7698, 1981-09-28 00:00:00.000000, 1250.000, 1400.000,
    30 >
    < 7698, BLAKE, MANAGER, 7839, 1981-05-01 00:00:00.000000, 2850.000, <NULL>, 30 >
    < 7782, CLARK, MANAGER, 7839, 1981-06-09 00:00:00.000000, 2450.000, <NULL>, 10 >
    < 7788, SCOTT, ANALYST, 7566, 1987-04-19 00:00:00.000000, 3000.000, <NULL>, 20 >
    < 7839, KING, PRESIDENT, <NULL>, 1981-11-17 00:00:00.000000, 5000.000, <NULL>, 1
    0 >
    < 7844, TURNER, SALESMAN, 7698, 1981-09-08 00:00:00.000000, 1500.000, 0.000000e+
    00, 30 >
    < 7876, ADAMS, CLERK, 7788, 1987-05-23 00:00:00.000000, 1100.000, <NULL>, 20 >
    < 7900, JAMES, CLERK, 7698, 1981-12-03 00:00:00.000000, 950.0000, <NULL>, 30 >
    < 7902, FORD, ANALYST, 7566, 1981-12-03 00:00:00.000000, 3000.000, <NULL>, 20 >
    < 7934, MILLER, CLERK, 7782, 1982-01-23 00:00:00.000000, 1300.000, <NULL>, 10 >
    12 rows found.
    Command>
    Good luck.
    Simon

  • Why when I try and login to iTunes with my apple ID it says that it hasnt been used with iTunes store before and then does nothing?

    I just got a apple ID and an iPod touch and when I'm trying to sync it to my iTunes and try and log on it says that my apple id hasnt been used in iTunes store before and wont let me do anything...?

    No iCloud account previously.  Message suggests I need to give email address in account username/I'D which isn't my Apple ID which is something different to an email address?

Maybe you are looking for

  • Possible video problems in iTunes 8.1 [no grid or cover flow views]

    I had posted this problem under iTunes, but mentors there suggested instead I connect it to a video problem *"...my video drivers or other related problems I've had over the last two months with the iPhoto...* *Ah, didn't know about that. Try re-post

  • BC4J bug in 9.0.3.3

    Hi, I've just downloaded Jdev 9.0.3.3 and the very first thing I tried seems to have a bug. I tried to remove an attribute from a BC4J entity using the Entity Object Editor. The first thing it does is lock up for about a minute, then it eventually st

  • Canon Digital Rebel XTi RAW support?

    I just purchased a Canon Digital Rebel XTi and cannot get RAW files to import into iPhoto. I even tried the Image Capture trick (downloading to disk and then importing) to no avail. The file format is listed as CR2, which is supposed to be supported.

  • Lock not working on OSX 10.6.7 !

    My issue is: under System Preferences, it doesnt matter what I do, I can not activate the lock for anything ! Any help will be much appreciated !

  • All web browsers freeze (non responsive)

    Hi, can anyone here please help me with the following... I own a fairly good iMac which I bought brand new from apple in 2008, however in the last few weeks I've started noticing problems. Both the web browsers are freezing or hanging constantly, thi