SQL / PLSQL practice review

Hello
I'm looking for SQL, PLSQL practice Exam questions.
Can you get it someone please let me know where I can find these?

Concerning
FM

Perhaps the [certificate Forum | http://forums.oracle.com/forums/forum.jspa?forumID=459] can help you.
We are mostly just typing (PL /) here on this forum SQL and PL/SQL SQL statements ;-)

Tags: Database

Similar Questions

  • I need issue of SQL/PLSQL for practice

    Hi all

    I need to question of SQL/PLSQL for practice; could everything on send me the URL.

    I need only the PDF file.

    Thank you
    Gregory

    Here is the link for the link of PL/SQL oracle

    http://www.Oracle.com/pls/db111/portal.portal_db?selected=5&frame=

    IN the section of SQL and PL/SQL language, there is the language Pl/SQL.. PDF reference .you can download... its preety good to start.

  • I'm looking for the practical review of Photoshop CS5 files.

    I'm looking for the practical review of Photoshop CS5 files.  I downloaded the screenshots, but I need the files.

    I need to 2 - 3.psd, 3_2mask, SleepingPug, Parking, 4.1.psd etc.

    Hi Angelas,

    You can download the PSD files: free, PSD + 5.500 free Photoshop files

    Kind regards

    Tanuj

  • Suggest me a good text on SQL/PLSQL book

    Please, someone suggest me a good text book on SQL/PLSQL and DataWare housing...

    I entered this field... Thanks in advance.

    For pl/sql, I would recommend Steven Feuerstein: http://amzn.com/0596514468

    For the storage of data (at least the features of Oracle support), I think that the Oracle manuals are very good:

    http://www.Oracle.com/pls/db112/to_toc?pathname=server.112/e16579/TOC.htm
    http://www.Oracle.com/pls/db112/to_toc?pathname=server.112/e16541/TOC.htm

  • sql/PLSQL algorithm: is a rectangle filled with the other rectangles

    Hello
    I have 2 tables: T1 and T2:
    with T1 as
    (select 2 FromPeriod, 4 ToPeriod, 10 FromSum, 12 ToSum  from dual)
    select * from t1;
    
    
    with T2 as
    (select 1 FromPeriod, 2 ToPeriod, 9 FromSum, 5 ToSum  from dual
    union all
    select 1 FromPeriod, 3 ToPeriod, 9 FromSum, 4 ToSum  from dual
    union all
    select 2 FromPeriod, 5 ToPeriod, 9 FromSum, 11 ToSum  from dual
    union all
    select 2 FromPeriod, 5 ToPeriod, 11 FromSum, 12 ToSum  from dual)
    select * from t2;
    FromPeriod, ToPeriod are positive whole number without decimal point.
    FromSum, ToSum are positive numbers can have the comma.

    Table T1 contains unique in the columns 'FromPeriod-ToPeriod' points, that means that is there is a record where "FromPeriod-ToPeriod" = [2-4], then it is certainly not rendered as "FromPeriod-ToPeriod" = [1-4] keys wich [2-4] period, such a thing is not possible in table P1, it contains only unique periods that do not touch. Then the records with periods [2-4], [5-6] are ok in there.
    But table T2 allows periods affecting somehow. You can see that T2 contains "FromPeriod-ToPeriod" = [1-2] and also [1-3] that touch each other.

    We can look at the two tables T1 and T2 as rectangles where X - axis is the values of the axes and the "FromPeriod-ToPeriod" is [FromSum, ToSum].
    I need sql/plsql algorithm that returns true if the rectangle of table T1 is discovered/filled with rectangles in table T2. If the rectangle in T1 is completely filled or even more filled than necessary, then algorithm should return true. If even a small neighborhood in rectangle T1 is not filled by rectangles in T2, then the algorithm must return false.

    As see you in the sample data, T1 has a rectangle: [2-4; 10-12] T2 contains 4 mentions that fill/overdraw this area defined by T1. So for the moment the algorithm must return true.

    I do not know how to write effective elsewhere such algorithm, can you help me?

    --
    At the moment I only came with such algorithm/query:

    Test1: this test should return true:
    --query: is rectangle [2-4;10-12] filled? -Yes.
    with T2 as
    (select 1 FromPeriod, 2 ToPeriod, 9 FromSum, 5 ToSum  from dual
    union all
    select 1 FromPeriod, 3 ToPeriod, 9 FromSum, 4 ToSum  from dual
    union all
    select 2 FromPeriod, 5 ToPeriod, 9 FromSum, 11 ToSum  from dual
    union all
    select 2 FromPeriod, 5 ToPeriod, 11 FromSum, 12 ToSum  from dual)
    select * from t2
    where (2 <= ToPeriod and 4 >= FromPeriod) -- x-axes overlapping
    and (10 <= ToSum and 12 >= FromSum)--y-axes overlapping
    ;--2 rows
    
    --
    
    2     5     9     11
    2     5     11     12
    I takes as input the T1 table horizontal axes (2, [4]) and research data table T2 that affect this horizontal axes, also the value axes is compared. But how then? There are 2 files, but it can give 10 stores overlap in the periods and amounts. How to determine now that rectange T1 is filled?

    Test2: This case should return false:
    --query: is rectangle [2-4;10-12] filled? -No.
    with T2 as
    (select 1 FromPeriod, 2 ToPeriod, 9 FromSum, 4 ToSum  from dual
    union all
    select 1 FromPeriod, 3 ToPeriod, 9 FromSum, 4 ToSum  from dual
    union all
    select 2 FromPeriod, 4 ToPeriod, 9 FromSum, 11 ToSum  from dual
    union all
    select 2 FromPeriod, 5 ToPeriod, 13 FromSum, 13 ToSum  from dual)
    select * from t2
    where (2 <= ToPeriod and 4 >= FromPeriod) -- x-axes overlapping
    and (10 <= ToSum and 12 >= FromSum)--y-axes overlapping
    ;--1 row.
    
    2     4     9     11

    Charles,

    I see 2 choices, but none is likely to evolve very well. The first can be with SQL - subdivision T1 into unit squares and see if everything not covered by T2:

    with T1 as
    (select 2 FromPeriod, 4 ToPeriod, 10.1 FromSum, 12 ToSum  from dual)
    , T1X as
    (select (FromPeriod+level)-1 as Period from T1 connect by level <= (ToPeriod-FromPeriod)+1)
    , T1Y as
    (select (FromSum+level*.01)-.01 as Summ from T1 connect by level <= (ToSum-FromSum+.01)/.01)
    , T1XY as (select Period,Summ from T1X,T1Y)
    ,T2 as
    (select 1 FromPeriod, 2 ToPeriod, 9.99 FromSum, 10.1 ToSum  from dual--satisfies sub-region [(2,2);(10.1,10.1)]
    union all
    select 1 FromPeriod, 2 ToPeriod, 9.99 FromSum, 10.11 ToSum  from dual--now satisfied sub-regions: [(2,2);(10.1,10.11)
    union all
    select 2 FromPeriod, 2 ToPeriod, 10 FromSum, 12.01 ToSum  from dual--now satisfied sub-regions: [(2,2);(10.1,12)
    union all
    select 3 FromPeriod, 4 ToPeriod, 10 FromSum, 11.99 ToSum  from dual--now satisfied sub-regions: [(2,2);(10.1,12)],[(3,4);(10,11.99)]
    union all
    select 4 FromPeriod, 4 ToPeriod, 10 FromSum, 13 ToSum  from dual--now satisfied sub-regions: all filled, return true
    )
    select Period,Summ from T1XY
    where not exists (
    select 1
    from T2
    where T2.FromPeriod<=T1XY.Period
    and   T2.ToPeriod>=T1XY.Period
    and   T2.FromSum<=T1XY.Summ
    and   T2.ToSum>=T1XY.Summ
    )
    ;
    

    The second option is more inspiring you described, using a recursive algorithm to subdivide the T1 into small rectangles for each rectangle in T2. For example:

    X(1)={[a,b;c,d]}
    
    Y={[e,f;g,h];[i,j;k,l]}
    
    X(2)={[a,e;c,g];[e,f;c,g];[f,b;c,g];[a,e;g,h];[f,b;g,h];[a,e;h,d];[e,f;h,d];[f,b;h,d]}
    or
    X(2)={[a,b;c,g];[a,b;h,d];[a,e;c,d];[f,b;c,d]}  -- this gives some overlap, but fewer rectangles and the algorithm still works.
    
    You would have to refine it to handle partial overlaps correctly, then drop areas that don't have a positive area. If
    X(2) becomes empty then it is fully covered. It might be most efficient to sort T2 in order of descending area.
    

    Kind regards
    Bob

  • XML data in the table using sql/plsql

    Hi experts,

    Could you please help with the following requirement. I have the tags xml (.xml on a server file) below. I need to access this file and read the XML and insert into the db table using sql and plsql. Is it possible with the cdata below? And there is a nested this table.

    Could someone please guide me if you have a sample code file and xml.

    <? XML version = "1.0" encoding = "UTF-8"? >

    < generation_date > <! [CDATA [17/11/2015]] > < / generation_date >

    < generated_by > <! [CDATA [Admin Admin]] > < / generated_by >

    < year > <! [CDATA [2015]] > < / year >

    < month > <! [CDATA [01]] > < / month >

    < author >

    < author > <! [CDATA [user author]] > < / author > < author_initial > <! [CDATA [user]] > < / author_firstname > < author_country > <! [CDATA [author]] > < / author_lastname >

    < author_email > <! [CDATA [[email protected]]] > < / author_email >

    < author_data_01 > <! [CDATA []] > < / author_data_01 >

    < author_data_02 > <! [CDATA []] > < / author_data_02 >

    < items >

    < article_item >

    < article_id > <! [CDATA [123456]] > < / article_id >

    < publication > <! [CDATA [Al Bayan]] > < / publication >

    < section > <! [CDATA [Local]] > < / section >

    < issue_date > <! [CDATA [11/11/2015]] > < / issue_date >

    < page > <! [CDATA [2]] > < / print this page >

    < article_title > <! [CDATA [title.]] > < / article_title > < number_of_words > <! [CDATA [165]] > < / number_of_words >

    < original_price > <! [CDATA [200]] > < / original_price >

    < original_price_currency > <! [CDATA [DEA]] > < / original_price_currency >

    < price > <! [CDATA [250]] > < / price >

    < price_currency > <! [CDATA [DEA]] > < / price_currency >

    < / article_item >

    < / articles >

    < total_amount > <! [CDATA [250]] > < / total_amount >

    < total_amount_currency > <! [CDATA [DEA]] > < / total_amount_currency >

    < / author >

    < / xml >

    Thanks in advance,

    Suman

    XMLTABLE using...

    SQL > ed
    A written file afiedt.buf

    1 with t (xml) as (select xmltype ('))
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    [[12 [email protected]]] >
    13
    14
    15
    16
    17
    18
    19


    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33 ") of the double)"
    34-

    35 end of sample data
    36-
    37 - assumptions:
    (38 - a) XML may have several tags
    (39 - b) each may contain more
    40-
    41 select x.gen_by, x.gen_date, x.mn, x.yr
    42, y.author, y.auth_fn, y.auth_ln, y.auth_cnt, y.auth_em, y.auth_d1, y.auth_d2

    43, z.id, z.pub, z.sec, z.iss_dt, z.pg, z.art_ttl, z.num_wrds, z.oprice, z.ocurr, z.price, z.curr
    44 t
    45, xmltable ('/ authxml')
    from $ 46 t.xml
    path of 47 columns gen_date varchar2 (10) '. / generation_date'
    48, path of varchar2 (15) of gen_by '. / generated_by'
    49, path of varchar2 (4) year '. "/ year"
    50 varchar2 (2) mn road '. "/ month"
    51, path of xmltype authors '.'
    52                 ) x
    53, xmltable ('/ authxml/authors ')
    from $ 54 x.authors
    author of 55 path of varchar2 columns (15) '. / author'
    56, path of varchar2 (10) of auth_fn '. / author_firstname'
    57, path of varchar2 (10) of auth_ln '. / author_lastname'
    58 road of VARCHAR2 (3) auth_cnt '. / author_country'
    59 road of varchar2 (20) of auth_em '. / author_email'
    60 road of varchar2 (5) of auth_d1 '. / author_data_01'
    61, path of varchar2 (5) of auth_d2 '. / author_data_02'
    62, path of xmltype articles '. / Articles'
    63                 ) y
    64, xmltable ('/ Articles/article_item ')
    from $ 65 y.articles
    path id 66 number columns '. / article_id'
    67, path of varchar2 (10) pub '. ' / publication.
    68 road of varchar2 (10) dry '. / section'
    69, path of varchar2 (10) of iss_dt '. / issue_date'
    70 road of VARCHAR2 (3) pg '. "/ print this page"
    71, path of varchar2 (20) of art_ttl '. / article_title'
    72, path of varchar2 (5) of num_wrds '. / number_of_words'
    73, path of varchar2 (5) of oprice '. / original_price'
    74 road to VARCHAR2 (3) ocurr '. / original_price_currency'
    75, path of varchar2 (5) price '. "/ price"
    76, path of VARCHAR2 (3) curr '. / price_currency'
    77*                ) z
    SQL > /.

    GEN_DATE GEN_BY YEAR MN AUTHOR AUTH_FN AUTH_LN AUT AUTH_EM AUTH_ AUTH_ ID PUB DRY ISS_DT PG ART_TTL NUM_W OPRIC HEARTS PRICE OCU
    ---------- --------------- ---- -- --------------- ---------- ---------- --- -------------------- ----- ----- ---------- ---------- ---------- ---------- --- -------------------- ----- ----- --- ----- ---
    17/11/2015 Admin Admin 2015 01 user author user author [email protected] 123456 UAE Al Bayan Local 11/11/2015 2 is the title.   165 200 AED AED 250

    Of course, you'll want to change the types of data, etc. as needed.

    I assumed that the XML can contain several "" sections and that each section can contain several entries.

    Thus the XMLTABLE aliasing as 'x' gives information of XML, and supplies the data associated with the XMLTABLE with alias 'y' which gets the multiple authors, which itself section of the XMLTABLE with alias 'z' for each of the article_item.

    CDATA stuff are handled automatically by SQLX (XML functionality integrated into Oracle's SQL)

  • Return a row for sql plsql

    Hi all

    I get columns 5 and 6 in the form of a record variable, a join of multiple tables, returned by a function called func. These columns belong to different variable tables.this of record is returned by a function in my sql environment, where I'm using a statement similar to the Sub statement.

    Select func (par1, par2) of double;


    I created a compatible record type in my schema using the Sub statement.

    CREATE OR REPLACE TYPE ME_TYPE AS
    OBJECT
    (
    number of col1,
    col2 number.


    col6 varchar2 (1000)
    );




    I created a variable of type record in my plsql function, using the statement
    declare
    me_type var1;

    Start


    Select
    tab1. Col1,
    Tab2.col2,
    .
    .
    . tab6.col6
    in
    var1. Col1,
    var1.col2,
    .
    .
    var6.col6
    Of
    tab1, tab2, tab2...
    where
    condition1,
    condition2

    .but its throwing an error of

    ORA-06530: Reference to the composite uninitialized
    ORA-06512: at "my_package", line 177

    Can someone pls suggest? I know that a collection should iniialized before available. Is it the same thing with a record? If so, how.



    Thank you

    You can use the function to deal WITH

    create or replace type my_type is object
    (
        empno integer
      , ename varchar2(10)
    )
    /
    show err
    create or replace function my_function return my_type
    as
      l_emp my_type;
    begin
      select my_type(empno, ename) into l_emp
        from emp
       where empno = 7369;
    
       return l_emp;
    end;
    /
    show err
    
    with t
    as
    (
      select my_function as val
        from dual
    )
    select treat(val as my_type).empno as empno
         , treat(val as my_type).ename as ename
      from t;
    
  • How master SQL / PLSQL?

    Hi friends, please click on my question.

    I am newly graduate with approximately 1 year exp. in c#. I want to master SQL and PLSQL developer point of view and not admin I'm developer c# and not the side DBA.

    Thank you!

    http://tkyte.blogspot.nl/2012/08/the-keys-to-Oracle.html

  • ESX 3.5 and SQL best practices

    I searched for info on best practices when deploying SQL on the virtual computer. We already have a couple of lightweight SQL production servers running 2008 x 64 and SQL 2005. We are looking for migrating databases existing physical servers to a 2008 newly deployed x 64 SQL VM, I was able to find documents of Vmware and turned to the forum and information. This are not the giant databases - of things such as BES, EPolicy and other mundane but necessary databases. Even more to divide readers to separate newspapers, the sys and databases? Any advice would be appreciated.

    Take a look on:

    Best Practices for SQL Server

    http://www.VMware.com/files/PDF/solutions/sql_server_virtual_bp.PDF

    http://www.VMware.com/files/PDF/SQLServerWorkloads.PDF

    André

  • execute the block via file sql plsql

    Hi all

    I'm trying to run under plsql block by putting in a sql file and run it as (-oradb/BDC/oracle/OracleHomes/db/111/bin/sqlplus cpa@bdcd/cpa @/ apps/bkrdlr/interface_programs/IDSI_apply_rec_H_apply_test.sql--) but for some reason his hanging in there any idea what I'm doing wrong here. These sql statements are run very well when I run by physically logging in. appreciate your help. Thank you
    set serveroutput on;
    DECLARE
    x NUMBER(10):=0;
    BEGIN
    DBMS_OUTPUT.PUT_LINE('Loading A0 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_A0;
    DBMS_OUTPUT.PUT_LINE('total records fetched from A0: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading D1 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_D1;
    DBMS_OUTPUT.PUT_LINE('total records fetched from D1: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading D2 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_D2;
    DBMS_OUTPUT.PUT_LINE('total records fetched from D2: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading B0 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_B0;
    DBMS_OUTPUT.PUT_LINE('total records fetched from B0: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading B2 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_B2;
    DBMS_OUTPUT.PUT_LINE('total records fetched from B2: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading M0 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_M0;
    DBMS_OUTPUT.PUT_LINE('total records fetched from M0: ' || x);
    
    DBMS_OUTPUT.PUT_LINE('Loading M2 Records');
    x:=cms_idsi_prices_pkg.fn_upd_idsi_prices_from_M2;
    DBMS_OUTPUT.PUT_LINE('total records fetched from M2: ' || x);
    END;
    commit;
    exit
    Hanging out:
    $ /oradb/BDC/oracle/OracleHomes/db/111/bin/sqlplus cpa@bdcd/cpa @/apps/bkrdlr/interface_programs/IDSI_apply_rec_H_apply_test.sql
    
    SQL*Plus: Release 11.1.0.7.0 - Production on Mon Mar 7 10:48:41 2011
    
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    
     34
    expected results (ran the connection manually)
    SQL> /
    Loading A0 Records
    total records fetched from A0: 4253
    Loading D1 Records
    total records fetched from D1: 4253
    Loading D2 Records
    total records fetched from D2: 4253
    Loading B0 Records
    total records fetched from B0: 2853
    Loading B2 Records
    total records fetched from B2: 2799
    Loading M0 Records
    total records fetched from M0: 0
    Loading M2 Records
    total records fetched from M2: 96
    
    PL/SQL procedure successfully completed.

    Try to make / issue;

  • Need help to form a query SQL/PLSQL

    Hello
    I'm not an expert in Oracle SQL. I need to have this query to improve the performance of my product. I have a table T that has a collar of column that is of type varchar. The neck is unique in the table (no two rows have the same value for the collar). Given a set S1 with 100 channels, the query should return me all channels in S1 who are not present in the neck.
    SQL query or PLSQL would be perfect. The query can have strings (elements of S1) hardcoded into it.

    Thanks in advance,
    Madhu

    user13290641 wrote:
    They are separate strings. They will be most likely hard-coded.

    In this case to pass them on in the form of record set as shown below, so that you can use operator LESS to get your result.

    with static_result_set as
    (
    select  'aaa' col from dual
    UNION ALL
    select  'xxx' from dual
    UNION ALL
    select  'ccc' from dual
    UNION ALL
    select  'zzz' from dual
    )
    select col from static_result_set
    minus
    select col from t
    
  • Exam before SQL PLSQL

    Hello

    One of my friends couldnot give SQL exam due to some problems, but now the next date it was allocated to review SQL is in the next Month.He was thought to be able to cancel the good but since it has been registered with Oracle, so it wont get a refund and will lose his money. So he thought it will give SQL review itself next month.

    Now, he wanted to know if it can give PL/SQL Exam before SQL since it has a lot of time remaining and want to at least give a review.

    astaguy wrote:
    Hello

    One of my friends couldnot give SQL exam due to some problems, but now the next date it was allocated to review SQL is in the next Month.He was thought to be able to cancel the good but since it has been registered with Oracle, so it wont get a refund and will lose his money. So he thought it will give SQL review itself next month.

    Now, he wanted to know if it can give PL/SQL Exam before SQL since it has a lot of time remaining and want to at least give a review.

    Examinations can be taken in any order; Although certifications will not receive until all prerequisites been met.

    I can't comment as to the nature of the voucher, how long it is valid for or if the examination can be postponed.

    Also advise your friend it is perhaps better to familiarize themselves with the site Web of Oracle and forums... I prefer the OCA who can find the best sources of authority to ask their own questions... but I can understand everything as there are people who are under pressure and the constraints to specific points in time and are unable to do it and have a good
    friends who help them.

  • Configure the notification email in XE without 'EM in sql / plsql

    Hi guys,.

    I was wondering if anyone knows where configure outgoing by mmon mail server should send alert emails.

    My platform is an Oracle XE 10 DB, and I have not implemented the thing of XE (control of the database for XE) Administration web.
    because I installed Apex.

    So what I want to know is:
    How Oracle XE are configurable from plsql to send alerts by e-mail, including how to configure the host emaili, email ID etc.

    Thank you all and have a good weekend!

    MMON all done we put messages on a queue called ALERT_QUE. That means EM is subscribe to this queue, remove and send an e-mail/page of. The latter is done by EM himself doesn't use only not the packages built in.

    In the absence of 'EM, you would use PL/SQL for:

    (1) managing thresholds using DBMS_SERVER_ALERT
    (2) subscribe to and dequeue with DBMS_AQ
    (3) send emails with UTL_SMTP/UTL_MAIL

    At the moment there is no integrated package to send pages. If you really need to send pages, you will need to communicate with an external service that can send pages or use the API of any paging software, you use either Java stored procs or external procedures written in C
    This is a good amount of code to write, but you will have your own stored procedures that you would be able to reuse against any DB.

    You really need to read the section called "additional APIs to Manage Server-Generated alerts:

    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/manproc.htm#i1010615 | http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/manproc.htm#i1010615]

    HTH

    Chris

  • Basic needs when working with SQL/PLSQL on Vmware

    Hello Experts;

    I have two question and I need solutions for this.

    I'm working on vmware (oel 4.4) and 10g r2 (10.2.0.1 and 10.2.0.4) database

    When executing PL/SQL programs (if I get the error) and I have to copy / paste.

    MY QUESTIONS:

    1. How can I change a long program (pl/sql code)?  (ed or anything like that)

    2. as many times I want to set < serverouton set > (to avoid on each session) permanent any solution?

    ex:

    SQL > ed

    A written file afiedt.buf

    26

    Select the name of database v$.

    ?

    ?

    ?

    ?

    ?

    -I do the closing session;


    MY OS details:

    $ uname - a

    Linux linuxserver 2.6.9 - 42.0.0.0.1.ELsmp #1 SMP 14:02:40 PDT Sun 15 Oct 2006 i686 athlon i386 GNU/Linux


    MY VERSION OF DB

    SQL > select * from v version $;

    BANNER

    ----------------------------------------------------------------

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod

    PL/SQL Release 10.2.0.1.0 - Production

    CORE 10.2.0.1.0 Production

    AMT for Linux: Version 10.2.0.1.0 - Production

    NLSRTL Version 10.2.0.1.0 - Production

    some we used set the editor

    You don't need that. Just add 'export EDITOR = vi' the user profile (as said SY), normally .bash_profile on linux.

  • Limitations on the use of SQL/PLSQL functions in reports 6i / 10g

    Hi gurus...

    We have a limitation on the use of TRIM, Regular Expressions, CASE operator subquery in cursor in reports 6i/10 g...
    Could you please let us know all these limitations for reports 6i / 10g. Any reference document will be much more useful...

    Any help will be greatly appreciated...
    Thank you in advance...

    gt1982

    There is no documentation. For example, documentation reports 6i can't say you cannot use regular expressions, simply because it is right, it did not exist at the time.
    The pl/sql in the forms and reports engine is always behind, on the database. You should put as much code as possible in the procedures of database and the views if you want to use again (pl /) sql features.

Maybe you are looking for