pl/sql profiler - data not listed is not in the Profiler tables?

Hi all - just have a little problem with the pl/sql Profiler.
Database Version: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
Database Version: PL/SQL Release 10.2.0.5.0 - Production
I created a test procedure:
SQL > create or replace procedure testme
2 as
3
number of v_customer_count 4;
t_number v_level_table 5;
Number 6 v_std_code_id;
7
Start 8
9
10. select count (*)
11 in v_customer_count
12 customer_master;
13
14 select level
collection in bulk 15
16 in v_level_table
17 of the double
18 connection of level < = 5000;
19
20
21 end;
22.

Created procedure.


and I run the procedure as follows:
SQL> declare
  2     run_id number;
  3  begin
  4  
  5    run_id := dbms_profiler.start_profiler(to_char(sysdate,'dd-mm-yyyy hh24:mi:ss'));
  6    
  7    testme;
  8    
  9    dbms_profiler.flush_data;
 10    dbms_profiler.stop_profiler;
 11  
 12    dbms_output.put_line(run_id);
 13  
 14  end;
 15  /
2

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.08
but:
SQL> select * from sys.plsql_profiler_runs
  2  /

no rows selected

Elapsed: 00:00:00.00
SQL> select * from sys.plsql_profiler_data;

no rows selected
What Miss me?

Run proftab.sql in your schema, also compile in debug mode before the race.

Tags: Database

Similar Questions

  • Obligation to fill the values in table advanced according to the selection of a value in another article of lov (not in the advanced table)

    Hi all

    We work in a custom oaf page subdivision. We have an obligation to fill the values in table advanced based on a value selection in an element of the lov (this LOV is not in the advanced table) .can share you it please me steps or examples of code to achieve this. Waiting for response.

    Kind regards

    I do not understand completely still. What do you mean by "default in the table values must be inserted".

    You can create a dummy VO with the same columns and fix the VO in the advanced table.

    In the normal scenario, when the user clicks on submit button, browse this VO, and copy the values to the validation according to VO and appeal EO. If values gets inserted into the database.

    When the user selects the number of PO, simply run the other VO and fill this dummy VO so that values are available in the advanced table. When you click on send, do not copy these values to the EO based VO, so these lines won't get inserted.

    It work?

    See you soon

    AJ

  • AWR SQL Report does not report the stats

    AWR report only stats beyond a certain level? I have a statement select simple I know is running (executions of v$ sql increases), but when I run a report AWR SQL (awrsqrpt), it says "no data exists for this section of the report.

    Snap Id Snap time Sessions Curs/Sess

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

    BEGIN Snap: 370936 10 June 15 07:00:24 856 36.1

    End Snap: 370937 10 June 15 07:20:26 881 38.9

    Elapsed time: 20.02 (mins)

    DB time: 754.82 (min.)

    Summary of SQL DB/Inst: CAMPRD/camprd snaps: 370936-370937

    There is no data for this section of the report.

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

    SQL ID: 84kfv4p500pgh DB/Inst: CAMPRD/camprd Snaps: 370936-370937

    There is no data for this section of the report.

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

    Full text of SQL

    There is no data for this section of the report.

    I ran the report on the last 4 days and reports

    ORA-20025: SQL 84kfv4p500pgh ID does not exist for this database instance.

    and yet, the executions of V$ SQL continues to increase

    Thank you

    Ian

    CWA only captures statements considered to be Top N (DBA_HIST_WR_CONTROL. TOPNSQL)

    You can use DBMS_WORKLOAD_REPOSITORY. ADD_COLORED_SQL sort AWR it will include

  • Case in SQL condition does not return the values as expected

    Hello gurus of PL/SQL,.

    SELECT amd.brkr_nm, amd.brkr_sym, AMD.MINORITY_FLG, atdf.comm_brkr_dim_key, atdf.exec_brkr_dim_key,
    WHEN atdf.COMM_BRKR_DIM_KEY = AMD.ACCESS_METHOD_DIM_KEY - CASE THEN
    WHEN AMD BOX. MINORITY_FLG = 'Y' THEN
    CASE WHEN atdf.EXEC_BRKR_DIM_KEY = atdf.COMM_BRKR_DIM_KEY THEN 'Done' ELSE 'InDirected.
    END
    ANOTHER "NA".
    END
    ELSE ' 0'
    END
    AS Direction_Method
    Of
    alloc_tran_det_fact atdf,
    ACCESS_METHOD_DIM AMD

    But it returns me the 0 value in the Direction_Method field. But when I checked the values in DB then my first condition (atdf.COMM_BRKR_DIM_KEY = AMD.ACCESS_METHOD_DIM_KEY)
    second condition (AMD. MINORITY_FLG = 'Y') and third (atdf.EXEC_BRKR_DIM_KEY = atdf.COMM_BRKR_DIM_KEY) condition of all them have passed, then it should show the value as indicated, but it is shwoing the '0' value only in the Direction_Method column.

    Kindly help me.. .am I missing something?
    I use Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production. I can't create the test data in the database, I did not have the required privileges to make :(

    Kindly help me, thnanks in advance for your time and your comments

    Published by: user555994 on May 24, 2012 02:00

    could be a space or case (upper or lower case). Try:

    /* Formatted on 2012/05/24 16:00 (Formatter Plus v4.8.8) */
    SELECT amd.brkr_nm, amd.brkr_sym, amd.minority_flg, atdf.comm_brkr_dim_key, atdf.exec_brkr_dim_key,
           CASE
             WHEN trim(upper(atdf.comm_brkr_dim_key)) = trim(upper(amd.access_method_dim_key))
               THEN CASE
                     WHEN trim(upper(amd.minority_flg)) = 'Y'
                       THEN CASE
                             WHEN trim(upper(atdf.exec_brkr_dim_key)) = trim(upper(atdf.comm_brkr_dim_key))
                               THEN 'Directed'
                             ELSE 'InDirected'
                           END
                     ELSE 'NA'
                   END
             ELSE '0'
           END AS direction_method
      FROM alloc_tran_det_fact atdf, access_method_dim amd
    
  • My pl/sql codes does not in the express edition, which can do?

    pls help me my pl/sql codes does not work in oracle 10g express edition, which can do? pls help me.

    You must open a window for cmd.exe with Windows Start menu, then run, and type: cmd.exe. The rest is in my previous message.

  • First occurrence but not in the same table

    As we know, to search for the first occurrence of a particular record, we go with the MIN function. It is however, if all of your records are in the same table.

    My scenario is a little different. I have 4 tables (maybe more), but keeping this is simple for the exercise. I need to find the first occurrence of a student who appear in a table and this registration Date. The trick is to NOT include this student in the following tables. To do this, I can use SQL or PL/SQL.

    Thanks in advance.

    Scripts for Tables (CREATE TABLE and INSERT scripts)

    create table time_period(id varchar2(1), start_date date, end_date date);
    insert into time_period values('0', to_date('01-DEC-2005', 'DD-MON-YYYY'), to_date('31-MAY-2006','DD-MON-YYYY'));
    insert into time_period values('1', to_date('01-JUN-2006', 'DD-MON-YYYY'), to_date('30-NOV-2006','DD-MON-YYYY'));
    insert into time_period values('2', to_date('01-DEC-2006', 'DD-MON-YYYY'), to_date('31-MAY-2007','DD-MON-YYYY'));
    insert into time_period values('3', to_date('01-JUN-2007', 'DD-MON-YYYY'), to_date('30-NOV-2007','DD-MON-YYYY'));
    insert into time_period values('4', to_date('01-DEC-2007', 'DD-MON-YYYY'), to_date('31-MAY-2008','DD-MON-YYYY'));
    
    create table student_test1(student_id varchar2(4), exam_date date);
    create table student_test2(student_id varchar2(4), exam_date date);
    create table student_test3(student_id varchar2(4), exam_date date);
    create table student_test4(student_id varchar2(4), exam_date date);
    
    insert into student_test1 values('1001',to_date('01-DEC-2005','DD-MON-YYYY');
    insert into student_test1 values('1002',to_date('01-DEC-2005','DD-MON-YYYY');
    insert into student_test2 values('1003',to_date('01-JUN-2006','DD-MON-YYYY');
    insert into student_test3 values('1001',to_date('01-NOV-2007','DD-MON-YYYY');
    insert into student_test3 values('1004',to_date('01-NOV-2007','DD-MON-YYYY');
    insert into student_test4 values('1001',to_date('01-MAY-2008','DD-MON-YYYY');
    insert into student_test4 values('1002',to_date('01-MAY-2008','DD-MON-YYYY');
    insert into student_test4 values('1003',to_date('01-MAY-2008','DD-MON-YYYY');
    insert into student_test4 values('1004',to_date('01-MAY-2008','DD-MON-YYYY');
    

    Desired output should be as follows:

    ID Start Date End Date County

    0 1 December 05 31 May 06 2 - student ID 1001 and 1002

    1 1 June 06 30 November 06 1 - Student ID 1003

    2 1 December 06 31 May 07 0 - no

    3 1st June 07 1st November 07 1 - Student ID 1004 (1001 should not be taken to the top)

    4 1st December 07 to 31 May 08 0 - no. They have all been included in the previous periods

    could be done with a UNION ALL operation student_test-tables (and a join with the time table):

    with

    BaseData as)

    Select * from student_test1

    Union of all the

    Select * from student_test2

    Union of all the

    Select * from student_test3

    Union of all the

    Select * from student_test4

    )

    ,

    min_values like)

    Select student_id, min (exam_date) exam_date

    of basedata

    Student_id group

    )

    Select tp.id

    tp.start_date

    tp.end_date

    count (mv.student_id) student_id

    of time_period tp

    left outer join

    min_values mv

    on (mv.exam_date between tp.start_date and tp.end_date)

    Tp.id group

    tp.start_date

    tp.end_date

    order of tp.id

    ;

    I HAVE START_DA STUDENT_ID END_DATE

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

    01.12.05 0 31.05.06 2

    1 01.06.06 30.11.06 1

    2 01.12.06 31.05.07 0

    3 01.06.07 30.11.07 1

    4 01.12.07 31.05.08 0

    Concerning

    Martin

  • Digital control do not light the Subvi table lines

    Hello people of the forum NOR!

    I have a small question, I think you could help me:

    I tried to find a way that would allow my program read data, acquired from a millimeter and use a table - with coefficients - multiply the data obtained.

    When it was written directly on my program, it worked fine, but when I created a sub VI to 'clean up', he ceased to alternate values and it uses the fixed value of the Sub VI.

    The sub VI has a connector to the CNC.

    This program is the 'read the table under vi' attached to this message and the other, is the program I use to get my data.

    Thank you before useful assistance.

    Concerning

    Leandro

    Hello Leandro, Dennis

    I don't think I got the problem right so I can only guess:

    VI Sub is placed outside the Structure of sequence and therefore only runs once at the beginning of the VI.

    As Dennismentioned, since the "Table" does not have default values assigned it cant work now.

    It would be better if you post an another Set of screws: (Bevore, adding the Sub VI and after)

    Concerning

    Moritz M.

  • DMZ-Link bandwidth does not change the routing table countin traffic

    Hey guys

    I'm INE laboratories dong and shoved a weird one that delivers.

    I have configured the dmz-link bandwidtha nd the extended communities to send, I get the bandwidth in the BGP routes, however the routing table does not change the proportion of traffic according to the bandwidth available link.

    Here is my configuration:

    Rack1R6 (config) #do sh run | dry BGP

    router bgp 100

    no synchronization

    The log-neighbor BGP-changes

    BGP dmzlink-bw

    155.1.146.0 netmask 255.255.255.0

    aggregate-address 155.1.0.0 255.255.0.0 summary only

    neighbour 54.1.1.254 distance-54

    neighbor 54.1.1.254 dmzlink-bw

    neighbour 155.1.67.7 distance-300

    neighbour 155.1.146.1 distance-100

    155.1.146.1 neighbor send-community times

    No Auto-resume

    Rack1R6 (config) #.

    Rack1R6 (config) #do sh ip bgp neigh 155.1.146.1 opponents

    Version of BGP table is 35, local router ID is 150.1.6.6

    Status codes: deleted, cushioning d s, history of h, * valid, > best, i - internal.

    r SIDE-failure, stale S

    Source codes: i - IGP, e - EGP,? -incomplete

    Network Next Hop path metrics LocPrf weight

    * > 28.119.16.0/24 54.1.1.254 0 54 I

    * > 28.119.17.0/24 54.1.1.254 0 54 I

    * > 112.0.0.0 54.1.1.254 0 0 54 50 60 I

    * > 113.0.0.0 54.1.1.254 0 0 54 50 60 I

    * > 114.0.0.0 54.1.1.254 0 0 54 I

    * > 115.0.0.0 54.1.1.254 0 0 54 I

    * > 116.0.0.0 54.1.1.254 0 0 54 I

    * > 117.0.0.0 54.1.1.254 0 0 54 I

    * > 118.0.0.0 54.1.1.254 0 0 54 I

    * > 119.0.0.0 54.1.1.254 0 0 54 I

    r > 155.1.0.0 0.0.0.0 32768 I

    Rack1R6 (config) #do sh ip bgp

    Version of BGP table is 35, local router ID is 150.1.6.6

    Status codes: deleted, cushioning d s, history of h, * valid, > best, i - internal.

    r SIDE-failure, stale S

    Source codes: i - IGP, e - EGP,? -incomplete

    Network Next Hop path metrics LocPrf weight

    * i28.119.16.0/24 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254                             0 54 i

    * i28.119.17.0/24 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254                             0 54 i

    * i112.0.0.0 204.12.1.254 0 100 0 54 50 60 I

    * > 0 0 54 50 60 54.1.1.254 I

    * i113.0.0.0 204.12.1.254 0 100 0 54 50 60 I

    * > 0 0 54 50 60 54.1.1.254 I

    * i114.0.0.0 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254               0             0 54 i

    * i115.0.0.0 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254               0             0 54 i

    * i116.0.0.0 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254               0             0 54 i

    * i117.0.0.0 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254               0             0 54 i

    * i118.0.0.0 204.12.1.254 0 100 0 54 I

    Network Next Hop path metrics LocPrf weight

    *>                  54.1.1.254               0             0 54 i

    * i119.0.0.0 204.12.1.254 0 100 0 54 I

    *>                  54.1.1.254               0             0 54 i

    r i155.1.0.0 155.1.146.4 0 100 0 I

    r>                  0.0.0.0                            32768 i

    s > 155.1.146.0/24 0.0.0.0 32768 0 I

    * > i205.90.31.0 155.1.13.3 0 100 0 200 254?

    * 155.1.67.7 0 300 200 254?

    * > i220.20.3.0 155.1.13.3 0 100 0 200 254?

    * 155.1.67.7 0 300 200 254?

    * > i222.22.2.0 155.1.13.3 0 100 0 200 254?

    * 155.1.67.7 0 300 200 254?

    Rack1R6 (config) #.

    # now R4 configuration

    Rack1R4 (config) #do sh run | dry BGP

    router bgp 100

    no synchronization

    The log-neighbor BGP-changes

    BGP dmzlink-bw

    155.1.146.0 netmask 255.255.255.0

    aggregate-address 155.1.0.0 255.255.0.0 summary only

    neighbour 155.1.45.5 distance-200

    155.1.45.5 route-neighbour card GAME-54 on

    neighbour 155.1.146.1 distance-100

    155.1.146.1 neighbor send-community times

    neighbour 204.12.1.254 distance-54

    neighbor 204.12.1.254 dmzlink-bw

    No Auto-resume

    Rack1R4 (config) #.

    Rack1R4 (config) #do sh ip bgp Synt.

    Local router BGP 150.1.4.4 identifier UNDER number 100

    BGP table version is 18, table 18 main routing version

    15 entries for network using 1980 bytes of memory

    18 entries for path using 936 bytes of memory

    9/7 BGP path/bestpath attribute entered using 1512 bytes of memory

    3 entries for BGP AS-path ACCESS using 72 bytes of memory

    1 entries PMO community, using 24 bytes of memory

    0 cache entries of BGP route-map with 0 bytes of memory

    0 cache entries of filter-list BGP using 0 bytes of memory

    Bit entries in the cache field: 3 courses (up to 5) with 96 bytes of memory

    BGP using 4620 total number of bytes of memory

    Activity 102/87 BGP prefixes, 243/225, scan interval to 60 seconds

    Neighbor MsgRcvd MsgSent V AS TblVer InQ OutQ Up/Down State/PfxRcd

    155.1.45.5 4 200 8615 8640 18 0 0 07:38:02 3

    155.1.146.1 4 100 8761 8668 18 0 0 00:14:34 3

    204.12.1.254 4 54 8724 8595 18 0 0 07:38:02 10

    Rack1R4 (config) #do sh ip bgp

    BGP table version is 18, local router ID is 150.1.4.4

    Status codes: deleted, cushioning d s, history of h, * valid, > best, i - internal.

    r SIDE-failure, stale S

    Source codes: i - IGP, e - EGP,? -incomplete

    Network Next Hop path metrics LocPrf weight

    * > 28.119.16.0/24 204.12.1.254 0 0 54 I

    * > 28.119.17.0/24 204.12.1.254 0 0 54 I

    * > 112.0.0.0 204.12.1.254 0 54 50 60 I

    * > 113.0.0.0 204.12.1.254 0 54 50 60 I

    * > 114.0.0.0 204.12.1.254 0 54 I

    * > 115.0.0.0 204.12.1.254 0 54 I

    * > 116.0.0.0 204.12.1.254 0 54 I

    * > 117.0.0.0 204.12.1.254 0 54 I

    * > 118.0.0.0 204.12.1.254 0 54 I

    * > 119.0.0.0 204.12.1.254 0 54 I

    * > 155.1.0.0 0.0.0.0 32768 I

    s > 155.1.146.0/24 0.0.0.0 32768 0 I

    * i205.90.31.0 155.1.13.3 0 100 0 200 254?

    *>                  155.1.45.5                             0 200 254 ?

    * i220.20.3.0 155.1.13.3 0 100 0 200 254?

    *>                  155.1.45.5                             0 200 254 ?

    * i222.22.2.0 155.1.13.3 0 100 0 200 254?

    Network Next Hop path metrics LocPrf weight

    *>                  155.1.45.5                             0 200 254 ?

    Rack1R4 (config) #do sh ip bgp neigh 155.1.146.1 opponents

    Rack1R4 (config) #do sh ip bgp neigh 155.1.146.1 opponents

    BGP table version is 18, local router ID is 150.1.4.4

    Status codes: deleted, cushioning d s, history of h, * valid, > best, i - internal.

    r SIDE-failure, stale S

    Source codes: i - IGP, e - EGP,? -incomplete

    Network Next Hop path metrics LocPrf weight

    * > 28.119.16.0/24 204.12.1.254 0 0 54 I

    * > 28.119.17.0/24 204.12.1.254 0 0 54 I

    * > 112.0.0.0 204.12.1.254 0 54 50 60 I

    * > 113.0.0.0 204.12.1.254 0 54 50 60 I

    * > 114.0.0.0 204.12.1.254 0 54 I

    * > 115.0.0.0 204.12.1.254 0 54 I

    * > 116.0.0.0 204.12.1.254 0 54 I

    * > 117.0.0.0 204.12.1.254 0 54 I

    * > 118.0.0.0 204.12.1.254 0 54 I

    * > 119.0.0.0 204.12.1.254 0 54 I

    * > 155.1.0.0 0.0.0.0 32768 I

    * > 205.90.31.0 155.1.45.5 0 200 254?

    * > 220.20.3.0 155.1.45.5 0 200 254?

    * > 222.22.2.0 155.1.45.5 0 200 254?

    Total number of prefixes 14

    Rack1R4 (config) #.

    # and where is the real problem, R1

    Rack1R1(config-Router) #do sh ip bgp

    Version of BGP table is 15, local router ID is 150.1.1.1

    Status codes: deleted, cushioning d s, history of h, * valid, > best, i - internal.

    r SIDE-failure, stale S

    Source codes: i - IGP, e - EGP,? -incomplete

    Network Next Hop path metrics LocPrf weight

    * i28.119.16.0/24 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i28.119.17.0/24 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i112.0.0.0 54.1.1.254 0 100 0 54 50 60 I

    * > I 204.12.1.254 0 100 0 54 50 60 I

    * i113.0.0.0 54.1.1.254 0 100 0 54 50 60 I

    * > I 204.12.1.254 0 100 0 54 50 60 I

    * i114.0.0.0 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i115.0.0.0 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i116.0.0.0 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i117.0.0.0 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i118.0.0.0 54.1.1.254 0 100 0 54 I

    Network Next Hop path metrics LocPrf weight

    * > I 204.12.1.254 0 100 0 54 I

    * i119.0.0.0 54.1.1.254 0 100 0 54 I

    * > I 204.12.1.254 0 100 0 54 I

    * i155.1.0.0 155.1.146.6 0 100 0 I

    * > I 155.1.146.4 0 100 0 I

    * > 205.90.31.0 155.1.13.3 0 200 254?

    * i 155.1.45.5 0 100 0 200 254?

    * > 220.20.3.0 155.1.13.3 0 200 254?

    * i 155.1.45.5 0 100 0 200 254?

    * > 222.22.2.0 155.1.13.3 0 200 254?

    * i 155.1.45.5 0 100 0 200 254?

    Rack1R1 (config - Router) # do sh ip bgp 112.0.0.0

    112.0.0.0/8, version 4 BGP routing table entry

    Paths: (2 available, best #2, table by default-IP-Routing-Table)

    MPIO: eBGP iBGP

    Announced for the update-groups:

    1          2

    54 50 60, (from a customer-RR)

    54.1.1.254 (metric 2560002816) of 155.1.146.6 (150.1.6.6)

    Origin, IGP, 0, 100, valid, internal multipath localpref metric.

    DMZ-Link Bw 250 KB

    54 50 60, (from a customer-RR)

    204.12.1.254 (metric 2560002816) of 155.1.146.4 (150.1.4.4)

    Origin, IGP, metric 0, localpref 100, valid, internal, multipath, best

    DMZ-Link Bw 12500 KB

    Rack1R1(config-Router) #do sh ip route 112.0.0.0

    Routing for 112.0.0.0/8 entry

    Known through 'bgp 100', 200, 0 distance metric

    54, internal type tag

    Last update of 204.12.1.254 ago 00:15:30

    Routing descriptor blocks:

    204.12.1.254, 155.1.146.4, there is 00:15:30

    Path metric is 0, number of shares of traffic 1

    AS hop 3

    Beacon road 54

    * 54.1.1.254, 155.1.146.6, there is 00:15:30

    Path metric is 0, number of shares of traffic 1

    AS hop 3

    Beacon road 54

    Rack1R1 (config - Router) #.

    as you can see, the BGP process in R1 receives the correct link DMZ bw but not indeed take...

    can you please help me if I makeover anything in my setup?

    Hello

    Can you please make sure you have a value of bandwidth on ALL your BGP peering physical interfaces? And you can also include the running-config 'router bgp XXXX' out of R1 as you have not understood what we (others are). Just to make sure that you have "bgp dmzlink-bw' configured on all peerings and overall in the process - it will still show in the output of the same community if it does not work on it.

  • Why not all the partition tables

    Hello

    In our project we propse to all partition tables (even if they are small, in MBs) in order to use the feature partiion exchange.
    But our DBAs say that maintenance will be a problem if create us partitions for each table. We said, only tablespace is fine for all partitions that we thought to maintain storage different is a problem.
    But always DBA are not approved.
    I just want to know what are the disadvantages of partitioning. Why DBA are generally against the idea of creating partitions. If we use the same storage space for all of the partitions is there any side down for creating partitions for each table?
    Is there is disadvantage?



    Thank you
    Pramod Garre

    Pramod Garre wrote:
    We plan to use range partitioning (in the quarters).
    There is a duty to remove a quarter of the table data, then refresh with new data as and when the user update some recored of frontend.this should arrive in real-time.

    Looks like you are having the app trigger partition management... which doesn't seem a good idea.
    It also looks like you really don't have justification for partitioning on a few tables. Far from being the "all" tables you inquired. And even that looks like your concept of the use of these scores may be wrong.

    Why not work with your databases instead of look at foreigners for the justification to fight them. Sounds to me like they are doing exactly what they were hired to do.

    We thought instead of delete and insert, if we use excahnge partitions, it will be real quick as Exchange just updated partition in the dictionary.
    On these lines, do you think that it be the disadvantages of the use of partitioning?

    Note: Delete and Insert works OK (2 minutes) compared to the swap partition (20 ms).

    And Yes, each table has PK.

    Thank you
    Pramod Garre

  • PageContext.forwardimmediatly works not when the hash table is used.

    Hello

    I try to use as below:

    HashMap hm = new HashMap (1);
    HM.put ("conc_called", "Yes");

    pageContext.forwardImmediately ("OA.jsp?page=/XXX/xxPG",
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    GMC
    true,
    "N");

    But I get an error message indicating that the method does not exist. Any suggestion would be appreciated.

    Thank you
    PK

    Make sure the hash table is of the type com.sun.java.util.collections.HashMap and not java.util.HashMap

  • Developer SQL is no longer let me look at the same table on 2 servers name

    I used to be able to look at the same table (such as; "ATS_Reminders") on my development box and my box of production at the same time. Now when I connect the two databases, if I try to open the table even on the second square, the first table closed so I can't watch side by side. Is there a way to fix this annoying problem?

    I am on Windows 7 running:

    Java (TM) Platform 1.6.0_11
    Oracle IDE 3.1.07.42
    Support versioning 3.1.07.42

    Hi bucketofsquid.

    You need to pin the 1st Editor. This can be done manually by clicking on the view button to freeze on the toolbar of the object viewer or automatically by setting auto freeze on in the preferences. Tools-> preferences-> database-> ObjectViewer-> automatically freeze object viewer Windows

    Brian Jeffries
    SQL development team

  • Oracle sql developer - data not available after validation tool

    The data that is inserted into the table. If I run the select query, I can see the inserted data. But once I run validation, and then run the select query on the same window, no record found.

    It's strange looks. Don't know what the problem is.

    Kind regards
    Suresh

    Hi Suresh,

    Hope that you introduce into a global temporary table, where the table is created in the
    ON COMMIT DELETE ROWS.

    Thank you
    Shankar.

  • Scan of the file: path/data not in the format specified in double

    Can you get it someone please let me know why it does not work?

    It's just a piece of sample code, to write data in a txt file and then read it.

    First, if a file already exists when I want to write in it and I chose 'Replace the file', he says stop and double track.

    Second, if I write a new file, it says: error 85: Scan failed. The input string does not contain data in the expected format.

    Attachment VI.

    EDIT: see post.

    Just for reference, I solved it by using the match VI pattern in a loop and then using the table of indexes for individual values.

  • Data not entered in af:table inside the panelCollection

    Hello

    I created a simple page that shows the result of a ViewCriteria. BUT when I click on the search button, data is not loaded in the table instead when I click View-> Show All (or any attribute) of panleCollection while data is loaded inside the table.

    I created the table inside panelCollection. I want just the result to display in the table when I click search.

    Looks like I'm missing something :-(

    Please advice.

    Concerning
    Sameer

    OK, I see your problem.

    Here is my solution:
    (1) use an af:query with table to start
    (2) select the table in the window of the structure
    (3) right click and select "Surround with...» "and select af:panelCollection. You can do this directly by hand if you want.
    (4) select the af component: query in the structure window and open the property inspector. You should see that the 'ResultComponentId' in the 'Common' section has a red border. This is because the Table that contains the result of the query is now in a different naming container. Click on the arrow down on the right side and the search for the table that is now inside the panelCollection (this is the same work that I described with the partial trigger) and select it.
    (5) save your work and run the page.

    You now have an af:query with table inside a panelCollection

    Here is the code that results in my test scenario:

                                
                                    
                                
                                
                                    
                                    
                                    
                                    
                                        
                                            
                                                
                                            
                                        
                                        
                                            
                                        
                                        
                                            
                                        
                                        
                                            
                                        
                                    
                                
    

    Timo

  • Production PL/SQL query: can not find the error

    I have a PL/SQL which produces a query for me, which is used to fill out a report. I use this to supply a filter/search form. Since I want to only filter using xxx movies WHERE = yyy when yyy actually has something else NULL, I use a PL/SQL script in the query I need to produce. However, it does not work as expected and I can't understand why. Here is my code:
    DECLARE
      query VARCHAR(1000);
    BEGIN
      query := 'SELECT * FROM F_OBJEKTE WHERE 1=1 ';
      IF :P15_REGION != null THEN
        query := query || 'AND REGION = :P15_REGION ';
      END IF; 
      RETURN query;
    END;
    However, the report still contains all lines, as if P15_REGION has not been defined - and so I guess that the script never enters the IF part. Everyone around who can enlighten me, why it is?

    Just another little thing: is there a way I can print debugging messages I see when I press the "Debug" button on the lower bar of APEX? It would help a lot of debugging such PL/SQL functions.

    Try changing

    IF: P15_REGION! = null THEN

    TO

    IF: P15_REGION is not null THEN

  • 1.5.4 - SQL-spreadsheet SQL-Developer does not use the owner of the Table

    In older versions of the sql developer, you can remove a table in the spreadsheet and was built a select query. With the new version 1.5.4 - owner of the table is ' % s ' and you must inform the owner of the table or the query does not work with tables of other users.

    Is this a bug or is there the possibility to change the settings to delete tables in the SQL-worksheet with the owners of the table.

    You're DND from the node of the Table under the node of the other user? If so, I'm able to reproduce the problem you're talking about. Otherwise I still not got you problem clearly.

Maybe you are looking for

  • you just bought an iPhone 6s and I have a question

    Hello, yesterday I bought the iPhone version of 64GB 6 s and I discovered that he has the Samsung processor inside and the date of manufacture is about 20 November 2015 which is 5 months ago. the device itself has been completely sealed and new, what

  • Satellite L305-S5921 - Touchpad no longer works

    Thanks in advance for any help. I had my laptop for about a month now, and about a week in I plugged a USB external mouse because I prefer it on the touchpad. One day I decide to unplug the external mouse and use the touchpad for a bit, but when I un

  • System fan 90 b error

    After 3 days because the computer and let me say that in three days I have not too much used, this error is out. So I tried to turn on the PC several times and even came out, after a few times the PC just started with windows loading upward logo, now

  • BlackBerry Z10 Z10 - deleted messages take a long time to come to terms with Outlook

    Hi all I have a client who uses a Z10 with a BES10 server that integrates with Exchange and AD. He says that when he removes the emails from the phone, you more than fifteen minutes for the changes it appears in Outlook. Is there some sort of setting

  • Twitter and facebook for blackBerry Smartphones

    Hi admin, I did the upgrade to facebook and twitter on my blackberry tourch 9800 applications, since, so I can use them cus I keep having this message eception exception, I can see icon facebook and twitter is not what I can do to solve the this.help