Simple query with a subquery returns the result of 'bad '.

DB version: 11.2

We have created approximately 27 patterns in the last 4 days. The query below confirms that.
SQL > select username, created from dba_users where created > sysdate-4;

USERNAME                       CREATED
------------------------------ --------------------
MANHSMPTOM_DEV_01              12 Jul 2012 11:55:16
PRSM01_OAT_IAU                 13 Jul 2012 01:51:03
F_SW                           11 Jul 2012 17:52:42
FUN_CDD_HK_SIT                 09 Jul 2012 15:33:57
CEMSCOMPTOM_UAT_01             12 Jul 2012 11:43:45
STORM02_OAT_IAU                13 Jul 2012 02:06:29
.
.
27 rows selected.  -------------> Truncated output
DBA_TS_QUOTAS.max_bytes column, we can determine the quota of space allocated for a user/schema
SQL > desc dba_ts_quotas
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------
 TABLESPACE_NAME                           NOT NULL VARCHAR2(30)
 USERNAME                                  NOT NULL VARCHAR2(30)
 BYTES                                              NUMBER
 MAX_BYTES                                          NUMBER
 BLOCKS                                             NUMBER
 MAX_BLOCKS                                         NUMBER
 DROPPED                                            VARCHAR2(3)
So, I wanted to see the space allocated for users created in the last 4 days. The following query should return only 27 cases because the subquery returns only 27 records. Instead, he returned 66 entries!
select username, tablespace_name, max_bytes/1024/1024 quotaInMB
from dba_ts_quotas
where username in (select username from dba_users where created > sysdate-4);
No idea why? I know this isn't a bug with oracle. It's just that I didn't eat fish lately.

Hello

J.Kiechle wrote:
So, I wanted to see the space allocated for users created in the last 4 days.

DBA_TS_QUOTAS does not have the space, but rather the maximum allowed for a given user.

J.Kiechle wrote:
The following query should return only 27 cases because the subquery returns only 27 records. Instead, he returned 66 entries!

What happens if your user John has Quotas on 3 tablespace TBS1 and TBS3 and TBS2?
You can't expect the outer query to retrieve only the more than 27 just line because the inner query returns 27 rows.

For the space allocated by the storage space for newly created users, you'd better ask dba_segments. something like:

select owner, tablespace_name, trunc(sum(bytes)/1024/1024) alloc_mb
from dba_segments
where owner in (select username from dba_users where created > sysdate - 4)
group by owner, tablespace_name
order by owner, tablespace_name;

Tags: Database

Similar Questions

  • A simple query with as wrong return result

    Hello

    I run a simple query with like.
    If I use the parameter I get incorrect results.
    If I use the request without parameter results are ok.

    My script:

    ALTER SESSION SET NLS_SORT = BINARY_CI;
    ALTER SESSION SET NLS_COMP = LINGUISTIC;

    -drop table abcd;
    create table abcd (col1 varchar2 (10));

    INSERT INTO VALUES ABCD ('122222');
    insert into abcd values ('111222');


    SELECT * FROM ABCD WHERE COL1 LIKE: 1. -bad result with 12%
    /*
    COL1
    ----------
    122222
    * 111222 *.
    */

    "Select * ABCD where col1 like 12%; -result ok
    /*
    COL1
    ----------
    122222
    */

    I use Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production
    and query, run in Oracle SQL Developer 3.1.07.

    I think it's just a bug, and it is set to 11.2.0.3:

    11.2.0.1:

    DB11.2.0.1>> select * from v$version where rownum=1;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    
    1 row selected.
    
    DB11.2.0.1>> ALTER SESSION SET NLS_SORT=BINARY_CI;
    
    Session altered.
    
    DB11.2.0.1>> ALTER SESSION SET NLS_COMP=LINGUISTIC;
    
    Session altered.
    
    DB11.2.0.1>> create table abcd (col1 varchar2(10));
    
    Table created.
    
    DB11.2.0.1>> INSERT INTO ABCD VALUES ('122222');
    
    1 row created.
    
    DB11.2.0.1>> insert into abcd values ('111222');
    
    1 row created.
    
    DB11.2.0.1>> VARIABLE A1 VARCHAR2(10);
    DB11.2.0.1>> EXEC :A1 := '12%';
    
    PL/SQL procedure successfully completed.
    
    DB11.2.0.1>> SELECT * FROM ABCD WHERE COL1 LIKE :A1;
    
    COL1
    ----------
    122222
    111222
    
    2 rows selected.
    

    11.2.0.3:

    DB11.2.0.3>> select * from v$version where rownum=1;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    
    1 row selected.
    
    DB11.2.0.3>> ALTER SESSION SET NLS_SORT=BINARY_CI;
    
    Session altered.
    
    DB11.2.0.3>> ALTER SESSION SET NLS_COMP=LINGUISTIC;
    
    Session altered.
    
    DB11.2.0.3>> create table abcd (col1 varchar2(10));
    
    Table created.
    
    DB11.2.0.3>> INSERT INTO ABCD VALUES ('122222');
    
    1 row created.
    
    DB11.2.0.3>> insert into abcd values ('111222');
    
    1 row created.
    
    DB11.2.0.3>> VARIABLE A1 VARCHAR2(10);
    DB11.2.0.3>> EXEC :A1 := '12%';
    
    PL/SQL procedure successfully completed.
    
    DB11.2.0.3>> SELECT * FROM ABCD WHERE COL1 LIKE :A1;
    
    COL1
    ----------
    122222
    
    1 row selected.
    

    Kind regards
    Sayan Malakshinov
    http://orasql.org

  • Query with a subquery should return a value but does not work

    When I run this SQL, it does not return value:

    SELECT vfn.cat
    OF vfn, valid_fishery vf vps_fishery_ner
    WHERE vfn.plan = vf.plan
    AND vfn.cat = vf.cat
    AND vf.permit_year = 2010
    AND vf.moratorium_fishery 't ='
    AND vfn.vp_num = 211652
    AND vfn.ap_year = 2010
    AND vfn.plan = 'MUL '.
    AND vfn.date_issued = (SELECT MAX (date_issued)
    OF vps_fishery_ner
    WHERE vp_num = 211652
    AND ap_year = 2010);

    To test, I remove the subquery and run it separately:
    SELECT MAX (date_issued)
    OF vps_fishery_ner
    WHERE vp_num = 211652
    AND ap_year = 2010;

    Returns 2 April 10

    Then I paste the date into the original query (using her TRUNCATES the function, of course, since I'm only part DDMMYY hardcode the date):

    SELECT vfn.cat
    OF vfn, valid_fishery vf vps_fishery_ner
    WHERE vfn.plan = vf.plan
    AND vfn.cat = vf.cat
    AND vf.permit_year = 2010
    AND vf.moratorium_fishery 't ='
    AND vfn.vp_num = 211652
    AND vfn.ap_year = 2010
    AND vfn.plan = 'MUL '.
    AND TRUNC (date_issued) = TO_DATE('02-APR-10');

    And returns the required value, "A".

    So why the complete query with a subquery does not work, if the value returned by the subquery is valid and works when you just pasted in there?
    Thank you.

    Hello

    Maybe you should include this in the subquery as well?

    AND vfn.plan = 'MUL'
    
  • I need to return the result of a query on a stored procedure

    I need to return the result of a query to a stored procedure, I mean when I run a stored procedure it returns a result set in a select statement.
    Best regards...

    Hello.

    Do you really want a stored procedure for this?
    Why not just a script that contains the query?

    Assuming that you don't really want a stored procedure, you'll have to decide what to do with the results.
    An option is a slider.

    For example, you can write a procedure of this type to hold the query:

    CREATE OR REPLACE PROCEDURE USP_TEST
    (     out_cursor     OUT     SYS_REFCURSOR
    )
    IS
    BEGIN
         OPEN  out_cursor
         FOR     SELECT     *
              FROM     scott.emp;
    END  USP_TEST;
    /
    SHOW ERRORS
    

    You can move the cursor to another procedure for handling.

    You could test this in SQL * more by creating a variable blond:

    VARIABLE     usp_test_cursor     REFCURSOR;
    
    EXEC  usp_test (:usp_test_cursor);
    
    PRINT     :usp_test_cursor
    
  • PLSQL function to return the result of the query

    Dear all,

    Oracle Database SE1 11.2.0.1

    I need to create a plsql function which should accept SQL as a parameter, execute it and return the result set.

    Is this possible?

    Madhu.149 wrote:

    I need to create a plsql function which should accept SQL as a parameter, execute it and return the result set.

    Be careful - results games indicate a set of data stored in memory. This is not what are sliders. This isn't how Oracle should be used.

    Imagine that you implement such a result set function - which, on average, requires 1 MB of memory (private server) to store the results of the SQL query. A 100 users mean a 100 MB of memory required server. This is not suitable. Not at all. Never.

    The correct back 'thing' is a handle to SQL cursor (called a ref cursor in this case). A SQL cursor is a "program" - that the appellant runs via the fetch command and generates one or more lines accordingly. Appellant repeatedly runs this slider through calls to fetch until this slider found and returns all rows affected (using consistent readings).

    If you want an abstraction interface that the client can call via PL/SQL code in the database, so this crafting optimal SQL interface, creates the SQL cursor and returns the handle of the cursor (via the ref cursor data type) to the client.

  • Reading number of XML nodes in a document & amp; return the result in the text member

    Hi all

    I wonder if you can help me with the following:

    I want to read the number of nodes in an XML document and return the result in a text cast member. That's what I do so far, but he refuses to work

    Yes, my mistake. That should have been:
    --
    tList =
    nNodes = count(tList[1])
    sText = «»
    Repeat with i = 2 to nNodes
    tText = tList [1] .getPropAt (i)
    sText = sText & tText & RETURN
    end repeat
    -Remove rear BACK tank
    remove the last tank of sText
    -Place ALL the text in a text member
    Member ("test1"). Text = sText
    -- ...

  • Help with the query to return the results of the group in the table?

    Hello
    Im a total noob, so please be nice...!

    I'm looking around a table contains a column of WORD and a WORD_TYPE_ID column.
    Words can have the same type_id.

    What I'm trying to do is to write a query that will return the longest word for each word_type_id.
    I tried for hours to get it and everything seems to get is two error messages or just the longest word in the whole WORD column.

    Is the furthest I can get before things break down...

    Select Word
    table
    where
    Length (Word) =
    (
    Select
    Max (length (Word))
    table
    )

    Any help on this or if I could be pointed in the right direction it would be greatly appreciated.

    Thank you

    Hello

    Welcome to the forum!

    Here's one way:

    SELECT    word_type_id
    ,       MIN (word) KEEP (DENSE_RANK LAST ORDDER BY LENGTH (word))     AS longest_word
    FROM       table_x
    GROUP BY  word_type_id;
    

    If there be a tie in some word_type_id (i.e. 2 or more words have exactly the same length, which is the longest in this group) the expression above will return the first one alphabetically. (This is what means here MIN.)

    Published by: Frank Kulash, 11 August 2009 13:56

    You almost had it.
    As you have noticed, you get the longest line across the table. This is because your subquery was watching the entire table.
    If you to correlate the subquery to the row in the main table, as shown below, you can get the longest word in each group:

    select  word
    from     table     m                              -- m for main
    where      length (word) = (
                                select  max (length(word))
                   from     table
                   where     word_type_id  = m.word_type_id     -- New
                   );
    
  • the coil does not return the result of the query

    Hi people, I just my adventure begins with oracle sql basics course and I encountered the first problem.

    as I wrote in the topic, after you run the statement I get only query itself in the output file with no query results.

    exsample:

    coil C:\Users\Tomasz\Desktop\cw1.txt

    SELECT STARTDATE AS hire_date, employe_id, last_name, job_id

    Employees;

    spool off;

    all advice?

    Thanks in advance,

    Tomasz.

    Hi people, I just my adventure begins with oracle sql basics course and I encountered the first problem.

    as I wrote in the topic, after you run the statement I get only query itself in the output file with no query results.

    exsample:

    coil C:\Users\Tomasz\Desktop\cw1.txt

    SELECT STARTDATE AS hire_date, employe_id, last_name, job_id

    Employees;

    spool off;

    You said "after the execution of the statement.

    What you posted is NOT a statement; It is a script.

    I select Run Script (F5) and the file contains the query and the result set.

    If you use "Run the statement", you will get a file.

  • OUTER JOIN query returns the results of JOIN IN-HOUSE 11.2.0.1.0

    I'm data transfer in 11.2.01.0 (Windows XP 32-bit) and I wanted to compare the sizes of table with the same Table name in two different patterns, ML and SILENT, with a FULL OUTER JOIN (to account for all the tables and NULL values in a diagram).

    The scheme of ML has 176 tables: schema TUT a 133 tables. The use of a standard INNER JOIN gives 131 paintings.

    I get precisely the results with a FULL OUTER JOIN I get with an INTERNAL JOIN (not the same NULL values so I know they exist).

    This happens in SQL-Plus, SQL_Developer and using Oracle Wire pilot of Data_Direct.

    Here is the code:

    Login: SYS as SYSDBA or SYSTEM (same results for either)

    SELECT M.TABLE_NAME, M.NUM_ROWS, T.TABLE_NAME, T.NUM_ROWS
    OF SYS. ALL_TABLES M FULL OUTER JOIN SYS. ALL_TABLES T ON M.TABLE_NAME = T.TABLE_NAME
    WHERE
    M.OWNER = 'ML' AND
    T.OWNER = 'TUT';

    Produce the same results with LEFT OUTER joins and RIGHT OUTER joins in ASI and Oracle (+) syntax.

    Any thoughts?

    Hello

    If you read what I posted, forget it. MScallion (below) gave the correct answerr.

    If conditions such as

    owner   = 'ML'
    

    in the WHERE clause, and then they will reject the rows of the result set formed by the join condition.

    The inner join returns only 131 lines where the two 'paintings' have the same table_names.
    The outer joins return multiple lines (133, 176 or 178) before the place WHERE the provision is applied , but the WHERE clause eliminates all lines except the 131 found by the inner join.

    Published by: Frank Kulash, July 10, 2010 14:23

  • Subquery returns the same value but no returnet lines

    HY all

    First of all excuse me for my English. I know that is very bad.

    I have a very annoying problem...

    I habe a query like this

    Select the car of cars where car_color = (select color color where car_id = '5452')

    My real Qery is mor complicated, but this is how it works.

    Now the problem:

    If I run the first query select car of cars where car_color = 'black' the query returns a value.

    If I run the subquery *(select color from Colors where car_id ='5452') * the subquery returns a value (black)

    If I run the query and subquery select car of cars where car_color = (select color color where car_id = '5452')
    I get no value :(

    How this bee? If I take the (black) result of the subquery, and paste of STIs in the first request, then I get a value.
    But if I use the two querys it works.

    Thank you for your support

    Welcomes Burillo

    user13568585 wrote:

    I can see that the results are not the same, but how can it happen?
    Without your thing, I'll never be able to see the problem. Toad is really stupid as I think?

    It has nothing to do with the toad. You will get the same results in SQL * more. Most of the tools on the client side display the nonprinting characters such as spaces. And in your case, string returned by the subquery has had new line at the end. Anyway, the other way to understand would compare dumps of returned strings:

    select DUMP(LTRIM(RTRIM(rem.PSTREM_KURZ_BEZ))) from p_pveps_episode eps,  p_pvrep_re rep, p_strem_rechempf rem
    WHERE
    eps.allmnd_mandant='Test' and
    eps.ppveps_aufnr='101224' and
    eps.allmnd_mandant=rep.allmnd_mandant and
    eps.ppveps_epsnr=rep.ppveps_epsnr and rep.pstrem_ident=rem.pstrem_ident -- {and ltrim(rtrim(rem.PSTREM_KURZ_BEZ)) =} quotet to show result
    

    SY.

  • Pls help to return the results in, separted.

    Hello

    To get the comma separated list I wrote below the user-defined function. Available in Oracle 10 g release2 any pre defined function.

    I tried wmsys.wm_Concat but invalid identifier. I tried SYS_CONNECT_BY_PATH but I could not able to get result. Please help on this

    If I run under function with input = 7 8.9 result gives.

    Currently I have writtenmy function like this

    FUNCTION get_file_child_meta_data (i_parent_metadata_id as a WHOLE) RETURN VARCHAR2

    AS

    v_text VARCHAR2 (50): = NULL;

    BEGIN

    FOR (IN) cur_rec

    SELECT element_metadata_id

    OF cw_elements_meta_lookup

    WHERE parent_metadata_id = i_parent_metadata_id ORDER BY element_metadata_id)

    LOOP

    v_text: = v_text | ',' || cur_rec.element_metadata_id;

    END LOOP;

    Ltrim (v_text, ',') RETURN;

    END get_file_child_meta_data;

    The only time where I couldn't use SYS_CONNECT_BY_PATH was inside trigger Forms 6i code, while the DB 10 g. You use directly in PL/SQL?

  • Creating text file use new file, by returning the result by completely removing the lines of code to extend script?

    Hi guys

    Creating new files .txt in extendscript thru new file returns results by removing all the code in extend script.

    Example of

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

    var fPerCode = 'hack ';

    var myFileP = new File($.fileName);

    var myFilePtS = myFileP.parent.fsName.toString ();

    myFileP.open ('w');

    myFileP.write (fPerCode);

    myFileP.copy(myFilePtS+"\\"+"Mytools_icons"+"\\"+"name.txt");

    myFileP.close ();

    Alert ("path to the fullper.bat file" + "\n"+myFilePtS+"\\"+"Mytools_icons"+"\\"+"name.txt");

    If you run the above code, you see the result by disabling all of the code above.

    can someone help with this problem?

    You have a problem that you are writing your own script file and then doing a copy...

    You also toString() of unnecesery and deformities (+).

    Here is a fix your code:

    var fPerCode = 'hack ';

    var myFileP = new File($.fileName);

    var myFilePtS = myFileP.parent.fsName;

    var myNewFile = new File (myFilePtS + "\\Mytools_icons\\name.txt");

    myNewFile.open ('w');

    myNewFile.write (fPerCode);

    myNewFile.close ();

    Alert ("path to fullper.bat file\n" + myNewFile.fsName);

  • How to test a procedure returns the result set

    Hello

    I have a following code:

    {color: #0000ff} create or replace the TYPES of PACKAGING
    AS
    type cursorType is ref cursor;
    end;

    create or replace PROCEDURE GetAllCategories (p_cursor in the Types.cursorType)
    AS
    Start
    Open p_cursor for SELECT * CATEGORY;
    end; {color}

    I would like to test the procedure of * {color: #000000} visualization output resultset {color} *. How can I do with SQL Developer?
    In fact, when select RUN in SQL Developer, I got the following code:

    DECLARE
    P_CURSOR types.cursorType;
    BEGIN

    GetAllCategories (P_CURSOR = & gt; P_CURSOR);
    END;

    When I run it, it is successful but there is no result set displayed. However if I execute SELECT * FROM category only in the SQL Editor, I see the result set in the grid. Then where the result set did when he went through the procedure?

    Thanks in advance for any help.

    Published by: CarbonFiber Sep 22, 2008 20:52

    Is a simple way with sqlplus

    SQL> create or replace package types
      2  as
      3     type cursortype is ref cursor;
      4  end;
      5  /
    
    Package created.
    
    SQL> create or replace procedure getallemp(p_cursor in out types.cursortype )
      2  as
      3  begin
      4     open p_cursor for select * from emp;
      5  end;
      6  /
    
    Procedure created.
    
    SQL> var lcursor refcursor
    SQL>
    SQL> exec getallemp(:lcursor)
    
    PL/SQL procedure successfully completed.
    
    SQL> print lcursor
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO        DIV
    ---------- ---------- --------- ---------- --------- ---------- ---------- ---------- ----------
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20         10
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30         10
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20         10
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30         10
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30         10
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10         10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20         10
          7839 KING       PRESIDENT            17-NOV-81       5000                    10         10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30         10
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20         10
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO        DIV
    ---------- ---------- --------- ---------- --------- ---------- ---------- ---------- ----------
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30         10
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20         10
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10         10
    
    14 rows selected.
    

    Thank you
    Knani.

  • Plink and return the results

    I tried to find out if it was possible with plink to return data to powershell?  If so anyone got examples of that?

    You can find an example in 12 Re: get the details of the HBA hardware  

  • Procedure call returns the result above tag < head >...

    Hi, we have an APEX 4.1 application that makes a call to a package in the same scheme of #OWNER #. When we submit the form it is placing the result before the < html > tag as follows...

    = START OF EXAMPLE =.
    -----
    & lt; FRONT >
    Execution timestamp: 07/19/2012-11: 45:17



    Execution of General billing information / settings

    Shared application bytes - 250,000,000



    Content-type: text/html; charset = utf-8

    < html lang = "" en - us "xmlns:htmldb ="http://htmldb.oracle.com">"
    < head >
    -----
    = END OF EXAMPLE =.

    As you can see the page begins to make before the HTML tags and HEAD and then cuts without showing the rest of the report. Here is an example of what the back looks like at this we call the proc from outside of the APEX. It is simply wrapped text in & lt; PRE & gt; Tags.

    = START OF THE RACE WITH SUCCESS OUTSIDE OF THE APEX =.
    -----
    Execution timestamp: 07/19/2012-11: 46:27



    Execution of General billing information / settings

    Shared application bytes - 250,000,000


    18B29CAR 1 786,84 BIS MEGABYTE ORA ENV - ARCHIVES DEATH / MARRIAGE DB
    18B29CAR 3 750,00 MEGABYTE BIS ORA ENV - ARCHIVES - PARTY GIS
    18B14AMH 9 950,00 MEGABYTE BIS ORA ENV - AS - A REPOSITORY
    18B14AMH MO 408,349.78 BIS ORA ENV - ENTERPRISE INFORMATION SYSTEM
    18B18BBIS 86 914,07 MEGABYTE BIS ORA ENV - GIS SDE ENTERPRISE DB
    18B18BBIS 13 873,26 MEGABYTE BIS ORA ENV - BILLING OF THE ILO
    18B10AHW MO 1,891,328.54 BIS ORA ENV - ACES ONLINE
    18B10AHW MO 1,604,209.76 BIS ORA ENV - CHILD SUPPORT ENFORCEMENT-ME
    18B10AHW MO 198,604.83 BIS ORA ENV - DHHS DATA HUB2
    ...
    -----
    = END OF RACE WITH SUCCESS OUTSIDE OF THE APEX =.


    I suspect that the truncated back is because it is rendered before the heading tags, so my question is, how do I specify where this statement should be displayed on a page of the APEX? In addition, if you know that the trucation that happens for any other reason please notify.

    -Charlie

    >

    I built a form using 'Decision on form' and select the procedure I want to model form.
    I then added a dynamic region of PL/SQL code on the same page and place the following code in the field "source."

    This is the section of the error in the debug output

    0.13640 0.00088 Processes - point: AFTER_SUBMIT 4
    0.13728 0.00304 ...Process "Run Stored Procedure" - Type: PLSQL 4
    0.14032 0.01939 ...Execute Statement: begin BISDBA.DATABASE_USAGE_PKG.MONTHLY_BILLING( I_MONTH => :P30_MONTH, I_YEAR => :P30_YEAR, I_DISPLAY_FULL_REPORT => :P30_DISPLAY_FULL_REPORT, I_POPULATE_BILL_HIST_TAB => :P30_POPULATE_BILL_HIST_TAB, I_INTERFACE => :P30_INTERFACE); end; 
    

    You run BISDBA. DATABASE_USAGE_PKG. MONTHLY_BILLING as long as the two post-submit page ('decision on form') and as a region of PL/SQL code dynamic process on the page?

    If so, this would explain the weird stuff appearing before the correct page...

    Try disabling the process to Submit after "Execute the stored procedure"- and any reset/clear cache process or guidelines of branch that erases the P30_MONTH etc the parameter elements - so that BISDBA. DATABASE_USAGE_PKG. MONTHLY_BILLING is called only in the dynamic PL/SQL region.

    I was told only no change packages. management should be a direct transplant of the UI and it seems to be to prove otherwise.

    Quite likely. If you have a 'framework' that produces HTML pages complete (i.e. with html, head and body elements); generates HTTP headers; or didn't finish the separation of processing and display the concerns then you should expect problems.

    However, although I still think that the various aspects of 'framework' of your packages will cause problems of rendering when used the apex, the existence of this modular framework should allow to reduce to a minimum the required changes. First replace the debug code with calls to APEX_DEBUG_MESSAGE API, which will provide debugging information without disrupting the page rendering.

    This could be due to the use settings exstensive Boolean throuough code? Just a thought.

    N °

Maybe you are looking for

  • Is it possible to assign a different sound to my second e-mail account?

    I have two email accounts set up and works fine in Thunderbird. My main account, which I use for almost everything and a second account that I use for video surveillance and I was wondering if it was possible to assign a different sound to the second

  • HP 240 G4: Drivers for HP 240 g4 - wifi problem not connect properly

    Hi all We are a group of students at a University in the Argentina. We get HP nootebooks to make a lab. But we have a big problem with the weak WIFI signal. We found a post were the problem is resolved the with the same model: HP 240 G4: http://h3043

  • HP Personal Media Drive - capacity Ethernet?

    Hello My HP Media desktop computer has finally returned home to happy computer patterns. I'm saving the coins for other uses. One of these elements is the PMD HP which has B and USB connectivity. I would like to connect this drive to my Ethernet hub/

  • Windows XP Home deselection of read-only on the FlexNet Adobe folder do not stick.

    I have Adobe Creative Suite 3 and all programs except for InDesign. It comes up with an error message that says license has stopped working. Adobe lists several solutions, all that I tried with one exception that I couldn't because a step said to unc

  • inbound connections blocked on WWAN adapter

    I have a service HSPA of my phone provider that, when given to a special NPC, results in my connection WWAN receiving a routable public IP address instead of an RFC1918 address behind their CGN. Under three different installs of Windows 7 (which was