Oracle CAWC collections and planning

Hello
I I learn CPSA and need information about the stream to create a dblink in 2 cases, if it is an instance decentralized for the erp and planning.
and how to check / test the flow of data between the 2 bodies.
also the procedure to extract the data from the erp system and import in the instance of the CPSA / planning.

You can check this link
http://docs.Oracle.com/CD/E18727_01/doc.121/e13358/T309464T309468.htm
Thank you

Tags: Oracle Applications

Similar Questions

  • Use of collection and index

    Oracle Database 11 g Enterprise Edition Release 11.1.0.6.0 - 64 bit Production

    If I create a simple table with a clue, I can easily see that the index is used:
    CREATE TABLE test_table (test_field VARCHAR2 (10));
    
    CREATE INDEX test_idx
       ON test_table (test_field);
    
    INSERT INTO   test_table
           SELECT   LEVEL
             FROM   DUAL
       CONNECT BY   LEVEL <= 500000;
       
    commit;
       
    ANALYZE TABLE test_table COMPUTE STATISTICS;
    
    SELECT   *
      FROM   test_table
     WHERE   test_field = '12345';
    EXPLAIN PLAN
       FOR
          SELECT   *
            FROM   test_table
           WHERE   test_field = '12345';
    
    SELECT * FROM TABLE (DBMS_XPLAN.display (format => 'all'));
    
    
    Plan hash value: 2882402178
    
    -----------------------------------------------------------------------------
    | Id  | Operation        | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    -----------------------------------------------------------------------------
    |   0 | SELECT STATEMENT |          |     1 |     6 |     3   (0)| 00:00:01 |
    |*  1 |  INDEX RANGE SCAN| TEST_IDX |     1 |     6 |     3   (0)| 00:00:01 |
    -----------------------------------------------------------------------------
    
    Query Block Name / Object Alias (identified by operation id):
    -------------------------------------------------------------
    
       1 - SEL$1 / TEST_TABLE@SEL$1
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("TEST_FIELD"='12345')
    
    Column Projection Information (identified by operation id):
    -----------------------------------------------------------
    
       1 - "TEST_FIELD"[VARCHAR2,10]
    Now if I create a new type and use it in the query, a full table scan is performed:
    CREATE OR REPLACE TYPE test_type AS TABLE OF VARCHAR2 (5);
    
    SELECT   *
      FROM   test_table, TABLE (test_type (:var))
     WHERE   test_field = COLUMN_VALUE;
    EXPLAIN PLAN
       FOR
          SELECT   *
            FROM   test_table, TABLE (test_type (:var))
           WHERE   test_field = COLUMN_VALUE;
    
    SELECT * FROM TABLE (DBMS_XPLAN.display (format => 'all'));
    
    
    Plan hash value: 2296508059
    
    -----------------------------------------------------------------------------------------------------
    | Id  | Operation                              | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    -----------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT                       |            |  8168 | 65344 |   274   (3)| 00:00:04 |
    |*  1 |  HASH JOIN                             |            |  8168 | 65344 |   274   (3)| 00:00:04 |
    |   2 |   COLLECTION ITERATOR CONSTRUCTOR FETCH|            |       |       |            |          |
    |   3 |   TABLE ACCESS FULL                    | TEST_TABLE |   500K|  2929K|   242   (2)| 00:00:03 |
    -----------------------------------------------------------------------------------------------------
    
    Query Block Name / Object Alias (identified by operation id):
    -------------------------------------------------------------
    
       1 - SEL$1F3D9D0A
       3 - SEL$1F3D9D0A / TEST_TABLE@SEL$1
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("TEST_FIELD"=VALUE(KOKBF$))
    
    Column Projection Information (identified by operation id):
    -----------------------------------------------------------
    
       1 - (#keys=1) "TEST_FIELD"[VARCHAR2,10], VALUE(A0)[5]
       2 - VALUE(A0)[5]
       3 - "TEST_FIELD"[VARCHAR2,10]
    Any ideas how the full table scan can be avoided when you use one type of collection? Thank you.

    First of all, thanks a lot to report a reproducible test case. Which makes life so much easier.

    In general, the problem with the help of SQL collections is that the optimizer must do is a wild guess on how many items in the collection. If there is little evidence, a systematic index scan would be more effective. If there are a lot of elements, a table scan would be more effective. In this case, Oracle guess that there are 8 k elements in the collection, and so you're going to be returning a fraction significant data of the table and that a table scan is the most effective way to access these data.

    You can use the CARDINALITY indicator to tell Oracle how many elements to expect from the collection. If you tell Oracle to expect a single element, for example, he chooses a systematic index scan

    SQL> ed
    Wrote file afiedt.buf
    
      1  SELECT   /*+ cardinality(a 1) */ *
      2    FROM   test_table, TABLE (test_type (:var)) a
      3*  WHERE   test_field = a.COLUMN_VALUE
    SQL> /
    
    no rows selected
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 2616548083
    
    --------------------------------------------------------------------------------
    
    -------------------
    
    | Id  | Operation                              | Name     | Rows  | Bytes | Cost
    
     (%CPU)| Time     |
    
    --------------------------------------------------------------------------------
    
    -------------------
    
    |   0 | SELECT STATEMENT                       |          |     1 |     8 |    3
    
    1   (0)| 00:00:01 |
    
    |   1 |  NESTED LOOPS                          |          |     1 |     8 |    3
    
    1   (0)| 00:00:01 |
    
    |   2 |   COLLECTION ITERATOR CONSTRUCTOR FETCH|          |     1 |     2 |    2
    
    9   (0)| 00:00:01 |
    
    |*  3 |   INDEX RANGE SCAN                     | TEST_IDX |     1 |     6 |
    2   (0)| 00:00:01 |
    
    --------------------------------------------------------------------------------
    
    -------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       3 - access("TEST_FIELD"=VALUE(KOKBF$))
    
    Statistics
    ----------------------------------------------------------
              1  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
            412  bytes sent via SQL*Net to client
            513  bytes received via SQL*Net from client
              1  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              0  rows processed
    

    Justin

  • Exception handlers in bulk collect and for all operations?

    Hello world

    My version of DB is

    BANNER

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

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi

    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

    My question is, what are the possible exception handlers can add us in a bulk collect and for all operations?

    When we use for all, we add except exception and sql % bulk_exceptions. But apart from that what can we add to bulk collect?

    Kind regards

    BS2012.

    Save stores Exception all the exceptions that occur during in bulk in a collection of treatment and at the end of the most much treatment raises an exception. The SQL % BULK_EXCEPTIONS collection has all exceptions. It's the right way to handle the exception during treatment in bulk. And that's all you need. Don't know what else await you.

  • Synchronize the values of variables of substitution between Essbase and planning

    Hello
    In EMP 11.1.2.1 version (but we noticed the problem also in previous versions of EPM) when we set the value of a variable substitution in Essbase, the value is not immediately updated in planning: for a while, we see the old value. The value in the planning remains unchanged even to disconnect or exit planning and reconnect.
    On the contrary if we restart the planning service, the value is immediately updated
    Since we would like to use the Essbase substitution variables to manage some selections in forms of Entru data planning, is it possible to force a synchronization, or increase the frequency of synchronization between Essbase and planning?

    Concerning

    Francesco Quaranta

    Take a look at the definition of ownership of planning SUBST_VAR_CACHE_LIFETIME

    http://docs.Oracle.com/CD/E17236_01/EPM.1112/hp_admin/properts.html

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • collection and select statement

    Hi all, I have a question about pl/sql on the collection and the selection in a collection. look at this table and data
    create table sample 
    (
      cid  number,
      type1 varchar2(100),
      amount number,
      test  varchar2(100)
    )
    
    create table sample2 
    (
      cid  number,
      type1 varchar2(100),
      amount number,
      test  varchar2(100)
    )
    
      INSERT INTO sample VALUES (1,'sell',345, 'grouping');
      INSERT INTO sample VALUES (2,'sell',545, 'grouping');
      INSERT INTO sample VALUES (3,'buy',375, 'grouping2');
      INSERT INTO sample VALUES (4,'buy3',25, 'grouping');
       COMMIT;
    I am trying to create a collection type such as create or replace type t_row as table sample % rowtype;
    When I do this I get and error message in oracle.
    PLS-00329: schema-level type has illegal reference to sample
    what I try to do is read the sample data table, put the data in a collection t_row (each field) for example, can
    create an Insert in sample2 select collection and insert into the table sample2

    I can't do it because of the error I get when you create a type.

    can someone help me to write a small block that reads an example table, each field in a collection (for all lines) type, then try to insert into table2 using insert into... Select * from collection?

    Thank you

    When you select a type, that type should be created as a SQL type that you seem to be.

    When you create a SQL type, you cannot use % rowtype as it comes to PL/SQL UltraLite.

    For example

    Re: How to use a collection in a procedure

  • Essbase learning and planning - buy or rent a server?

    Hi all

    If I was counting on Essbase learning and planning, it would be better to buy or rent a server? I'm renting is a better option, companies would recommend you?

    I plan on installing some e-mail servers and tracking number of Web sites on the server as well.

    Thanks in advance,
    Nathan

    Nathan,

    I'm glad you like the blog, it's a labor of love.

    You only pay for the time that the machine is in place; the time is now. Certainly get used to stop the instance if you are not going to use the meter is running. Go with the smallest possible box because it will be cheaper.

    When an instance is stopped, the contents of the drive persists. If you cancel an instance, the drive has disappeared. This all assumes a Windows FRIEND and what Amazon calls Elastic Block Storage (there are other storage options that are not persistent). You can also snapshot volumes as you wish.

    Do not go with Windows if you want - Linux is out there if you want. I think it is more commonly used than Windows.

    Oracle has published a bunch of friends. Fusion is part of the offerings, but EMP is not yet theere.

    There is a lot of potential in the concept. :)

    Kind regards

    Cameron Lackpour

    P.S. If you want more info; contact me on LinkedIn.

  • Oracle Software Collection warnings

    Hello

    I just installed a brand new Oracle 11.2.0.2 on a Solaris Sparc64 a few days ago and I only have one problem: when I click on the 'Configuration' of the 'hosting' tab in the data base of control.

    Under the software part Oracle of the page, I have a message labeled "Oracle Software Collection warnings" with a clickable icon.

    When I click on this icon, the error message is:
    Stale Configuration: Oracle Software collection problem(s): 
    Problem encountered when collecting central inventory: 
    Failed to collect OUI inventory: no oraInstaller in java.library.path 
    Problem encountered when collecting special Windows inventory: 
    Failed to collect OUI inventory: null 
    Problem encountered when collecting additional OUI inventory "/u01/app/oracle/product/11.2.0/db_1/enalab12.ena.ulaval.ca_labb11/oraInst.loc": 
    Failed to collect OUI inventory (located at /u01/app/oracle/product/11.2.0/db_1/enalab12.ena.ulaval.ca_labb11/oraInst.loc): null 
    Information shown is as of Oct 22, 2010 12:12:13 PM.
    This is exit OPATCH:
    oracle@enalab12:~$ opatch lsinventory
    Invoking OPatch 11.2.0.1.1
    
    Oracle Interim Patch Installer version 11.2.0.1.1
    Copyright (c) 2009, Oracle Corporation.  All rights reserved.
    
    Oracle Home       : /u01/app/oracle/product/11.2.0/db_1
    Central Inventory : /u01/app/oraInventory
       from           : /var/opt/oracle/oraInst.loc
    OPatch version    : 11.2.0.1.1
    OUI version       : 11.2.0.2.0
    OUI location      : /u01/app/oracle/product/11.2.0/db_1/oui
    Log file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2010-10-25_21-19-30PM.log
    
    Patch history file: /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch_history.txt
    
    Lsinventory Output file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/lsinv/lsinventory2010-10-25_21-19-30PM.txt
    
    --------------------------------------------------------------------------------
    Installed Top-level Products (2): 
    
    Oracle Database 11g                                                  11.2.0.2.0
    Oracle Database 11g Examples                                         11.2.0.2.0
    There are 2 products installed in this Oracle Home.
    
    There are no Interim patches installed in this Oracle Home.
    --------------------------------------------------------------------------------
    OPatch succeeded.
    As we can see with opatch examples are installed, but they are not displayed under the OEM.

    Another thing, the emctl works correctly:
    oracle@enalab12:~$ emctl getversion
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.2.0 
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
           Enterprise Manager 11g DB Control Version 11.2.0.2.0
           Enterprise Manager 10g Agent Version 10.2.0.4.0
    
    oracle@enalab12:~$ emctl getemhome
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.2.0 
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    EMHOME=/u01/app/oracle/product/11.2.0/db_1/enalab12.ena.ulaval.ca_labb11
    
    oracle@enalab12:~$ emctl upload   
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.2.0 
    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.
    ---------------------------------------------------------------
    EMD upload completed successfully
    Some system info:
    oracle@enalab12:~$ uname -a
    SunOS enalab12 5.10 Generic_141444-09 sun4u sparc SUNW,Sun-Fire-V240
    
    oracle@enalab12:~$ echo $ORACLE_HOME 
    /u01/app/oracle/product/11.2.0/db_1
    
    oracle@enalab12:~$ echo $ORACLE_BASE
    /u01/app/oracle
    
    oracle@enalab12:~$ cat /var/opt/oracle/oraInst.loc 
    inventory_loc=/u01/app/oraInventory
    inst_group=oinstall
    YES starts well, and nothing of the accident and registration of installed products through this tool works as expected with no crash.
    oracle@enalab12:/u01/app/oracle/product/11.2.0/db_1/oui/bin$ ./runInstaller
    I searched this forum and MetaLink, no luck!

    Help appreciated.
    Thank you
    Bruno

    Hello
    You can do following. I had note MOS Note 420740.1 , which is linked to the same kind of problem, but in the middle of the grid with the help of agent.

    Go to "Deployments" -> Select "Refresh Host Configuration" -> Select the host where the problem agent is located -> Click "Refresh Hosts" 
    

    Which out of the following

    cat /u01/app/oracle/product/11.2.0/db_1/enalab12.ena.ulaval.ca_labb11/oraInst.loc
    

    If same fine as follows then, if not can you add following in this file?

    inventory_loc=/u01/app/oraInventory
    inst_group=oinstall
    

    If still problem, try to reconfigure the OEM and test again.

    Salman

  • Move data from Oracle 10 g and 11 g

    Hello guys,.
    I have a question and would appreciate any help/suggestions. We are about to move data from an oracle 10 g and 11 g system. What I need are a few basic suggestions to facilitate this approach. From now on, I plan to use the function exp and imp to move data between 10 g and 11 g. I archive log enabled for the two databases. When I do this approach, does enter check out, then the import log? Other suggestions will be of great help LPB. Thanks in advance.

    Hello

    I suggest you to use the data pump

    Make use of parallelism
    The data pump is reusable
    If you have a good network while using the network option.

    Disabling logging is the best option on the target database when you import the data.
    I have encountered this problem and have shared in my Blog

    I hope this helps you.

    Concerning
    Spengler

  • Bulk Collect and limit the rows

    Hello Oracles,

    I feel a strange (at least to me) behavior with lines in BULK COLLECT and LIMIT.
    For test purposes, I've written a procedure that uses a CURSOR, explicit AND implicit.
    When I use the explicit CURSOR and the LOOP, I use BULK COLLECT and LIMIT lines.
    I do not ROWNUM limit with my SELECT INTO. I know for a fact ROWNUM works very well since the last millennium.
    When I look at the number of rows returned when I put the LIMIT, I get weird number of extractions...

    I recover in a TABLE INDEX BY which is based on a TYPE of ENTRY.
    Here are a few results with different LIMIT values for a small group of key PRIMARIES.
    The figures below are the value of my_table . COUNTY

    Any idea would be apreciated.

    THX

    . .
    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 78 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 78 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 78 retrieves: 27
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . Retrieves LOOP IN BULK COLLECT LIMIT 78: 37
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . Excerpt from LOOP BULK COLLECT LIMIT 78: 47

    *************************************************
    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 100 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 100 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 100 retrieves: 83
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 100 retrieves: 93
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 100 retrieves: 93

    *************************************************

    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 140 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 140 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 140 retrieves: 43
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 140 retrieves: 53
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 140 retrieves: 33

    *************************************************
    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 183 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 183 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 183 retrieves: 0
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 183 retrieves: 10
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 183 retrieves: 44

    *************************************************

    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 200 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 200 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 200 retrieves: 183
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 200 retrieves: 193
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 200 retrieves: 193

    *************************************************

    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 600 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 600 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 600 retrieves: 183
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 600 retrieves: 193
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 600 retrieves: 593

    *************************************************
    Actual number of CURSOR EXPLICIT 470553 PK = 17
    . LOOP IN BULK COLLECT LIMIT 593 retrieves: 17
    .
    Actual number of CURSOR EXPLICIT 100991 PK = 38
    . LOOP IN BULK COLLECT LIMIT 593 retrieves: 38
    .
    Actual number of CURSOR EXPLICIT 100981 PK = 183
    . LOOP IN BULK COLLECT LIMIT 593 retrieves: 183
    .
    Actual number of CURSOR EXPLICIT 101001 PK = 193
    . LOOP IN BULK COLLECT LIMIT 593 retrieves: 193
    .
    Actual number of CURSOR EXPLICIT 101033 PK = 593
    . LOOP IN BULK COLLECT LIMIT 593 retrieves: 0

    PL/SQL procedure successfully completed.

    SQL > spool off

    I love a mystery, so I figured out how your code might look like:

    SQL> create table t
      2  as
      3  select case n1
      4         when 1 then 470553
      5         when 2 then 100991
      6         when 3 then 100981
      7         when 4 then 101001
      8         when 5 then 101033
      9         end pk
     10    from (select level n1 from dual connect by level <= 5)
     11       , (select level n2 from dual connect by level <= 593)
     12   where (  (n1 = 1 and n2 <= 17)
     13         or (n1 = 2 and n2 <= 38)
     14         or (n1 = 3 and n2 <= 183)
     15         or (n1 = 4 and n2 <= 193)
     16         or (n1 = 5 and n2 <= 593)
     17         )
     18  /
    
    Tabel is aangemaakt.
    
    SQL> declare
      2    type ta is table of number;
      3    a_limitsizes ta := ta(78,100,140,183,200,600,593);
      4    a_pks ta := ta(470553,100991,100981,101001,101033);
      5    a ta;
      6    l_actualcount number;
      7    cursor c(b number) is select pk from t where pk = b;
      8  begin
      9    for i in a_limitsizes.first .. a_limitsizes.last
     10    loop
     11      for j in a_pks.first .. a_pks.last
     12      loop
     13        l_actualcount := 0;
     14        open c(a_pks(j));
     15        loop
     16          fetch c bulk collect into a limit a_limitsizes(i);
     17          l_actualcount := l_actualcount + a.count;
     18          exit when a.count != a_limitsizes(i);
     19        end loop;
     20        close c;
     21        dbms_output.put_line('PK ' || a_pks(j) || ' EXPLICIT CURSOR Actual Count = ' || l_actualcount);
     22        dbms_output.put_line('. LOOP BULK COLLECT LIMIT ' || a_limitsizes(i) || ' retrieves : ' || a.count);
     23        dbms_output.new_line;
     24      end loop;
     25      dbms_output.put_line('*************************************************');
     26      dbms_output.new_line;
     27    end loop;
     28  end;
     29  /
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 78 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 78 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 78 retrieves : 27
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 78 retrieves : 37
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 78 retrieves : 47
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 100 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 100 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 100 retrieves : 83
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 100 retrieves : 93
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 100 retrieves : 93
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 140 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 140 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 140 retrieves : 43
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 140 retrieves : 53
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 140 retrieves : 33
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 183 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 183 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 183 retrieves : 0
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 183 retrieves : 10
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 183 retrieves : 44
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 200 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 200 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 200 retrieves : 183
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 200 retrieves : 193
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 200 retrieves : 193
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 600 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 600 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 600 retrieves : 183
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 600 retrieves : 193
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 600 retrieves : 593
    
    *************************************************
    
    PK 470553 EXPLICIT CURSOR Actual Count = 17
    . LOOP BULK COLLECT LIMIT 593 retrieves : 17
    
    PK 100991 EXPLICIT CURSOR Actual Count = 38
    . LOOP BULK COLLECT LIMIT 593 retrieves : 38
    
    PK 100981 EXPLICIT CURSOR Actual Count = 183
    . LOOP BULK COLLECT LIMIT 593 retrieves : 183
    
    PK 101001 EXPLICIT CURSOR Actual Count = 193
    . LOOP BULK COLLECT LIMIT 593 retrieves : 193
    
    PK 101033 EXPLICIT CURSOR Actual Count = 593
    . LOOP BULK COLLECT LIMIT 593 retrieves : 0
    
    *************************************************
    
    PL/SQL-procedure is geslaagd.
    

    Observation of Randolf was right: you are simply watching the last extraction of a series of extractions, which is the modulo / rest.

    Example: If your cursor retrieves a total of 183 ranks with a maximum size of 100, then your loop steps through twice. The first single 100 lines, the second 83. You print only the last extraction and not the sum of all the extractions.

    Kind regards
    Rob.

  • How to view the monthly/annual statistics in terms of time past/calories burned, broken down by each individual activity such as run elliptical/outside etc. Y at - it a third party application that can help me to collect and display these data?

    How to view the monthly/annual statistics in terms of time past/calories burned, broken down by each individual activity such as run elliptical/outside etc. Y at - it a third party application that can help me to collect and display these data?

    Hello

    It is not currently possible to review the data the application integrated in activity or training on this basis. If you want Apple to consider adding this feature, you can suggest here:

    https://www.Apple.com/feedback/watch.html

    However, health and fitness data from other sources, iPhone, and Apple Watch are registered and grouped within the health on iPhone app. These data can be exported, which you may find useful to track the cumulative progress and/or analyze your activity more in detail.

    IPhone app activity also has a button for sharing (top right of the screen) that allows to share data - including social media, Messages, Mail, Notes, and a printer.

    Include third-party applications that can be useful, for example:

    Access to QS

    -"Access your HealthKit data in a table so you can Explorer using numbers, Excel, R, or any other tool compatible CSV."

    - https://itunes.apple.com/gb/app/qs-access/id920297614?mt=8

    SpectaRun workouts

    -"View from the workouts of your Apple Watch on your iPhone and to export these workouts so you can download them to your favorite online running community."

    - https://itunes.apple.com/gb/app/spectarun-workouts/id991723862?mt=8

    Data can also be exported directly from the application of the health (Health Data > All - Share at the top button on the right).

    Check the descriptions and support resources for third party applications for supported details of import and data analysis features.

    More information:

    Use the activity on your Apple Watch - Apple Support

    Use of the workout on your Apple Watch - Apple Support

    http://www.Apple.com/watch/health-and-fitness/

  • Table data collection and using other calculations

    Hi all!

    I have a table with the information (values), I want to read and collect the 4 values in the table. These must serve more than calculations.

    Take a scenario:
    Let's say the row index is 2.5 and the column index is 5.6 (these values are other calculations), so I'd like to collect the values of the matrix, return (2.5) (2.6) (3.5) and (3.6). Thus, in the closest base to the index value of two integers.

    The next step is to use these four values make a bilinear interpolation (that's my problem), but in order to use them, I need to get them into a knot of formula.

    To sum up; How to collect and store the 4 values for further calculations.

    I hope I explained good enough!

    PS! I'm rather new on LabVIEW, love until now

    Sounds like what you are really looking for is 2D.vi interpolate. Check it out on the range of mathematics under the Interpolation.

    Or you use another type of interpolation function?

    No need to reinvent the wheel if your 2D table represents just the nodes on a surface.

  • the cursor is jerky and plans for 2004 flight simulator do not run smooth. This only happens when you run games. Is there a solution?

    The cursor is jerky and plans for 2004 flight simulator do not run smooth. This only happens when you run games. Is there a solution?

    Hello

    · What is the number and model of the mouse?

    · Will there be any changes made on the computer before the show?

    You can follow the steps listed in the link below: how to solve the pointer display problems mouse in Microsoft games: http://support.microsoft.com/kb/309703

  • Isn't CD player to play Age of Empires 3 complete Collection and Age of Empires 2 Gold Edition

    Original title: age of empires 3 complete edition

    I recently bought a laptop Windows 8, which is not equipped with a cd player. I have Age of Empires 3 complete Collection and Age of Empires 2 Gold Edition on CD. is there a way I can download games in my new laptop and use my product key to play?

    Hi Omarreyes,
     
    You can copy the contents of the game on the game CD on a removable media such as flash media, and then try to install the game.
     
    You can also use another external CD/DVD drive to install and play the game from the CD.
    If the problem persists, I suggest you to contact direct support for Windows games in the context of this question. You can check the link:
    http://www.Microsoft.com/games/en-GB/support/pages/default.aspx
     
    Let us know if you have more queries on Windows.
  • I'm totally confused about records, collections and smart collections.

    I am a complete newbie to Lr so please forgive what are fundamental questions without doubt!

    In records, I have 2 folders - Annecy and Aix which have different vacation photos.

    In Collections, under smart Collections, I have a folder named Aix which has my pictures of Aix and that is synchronized to Lr on my ipad.  However, although Annecy is listed under Collections, it is in a folder at the top of a new tree under smart Collections but does not part of smart Collections.  I hope that makes sense!  This issue of Annecy does contain pictures, and the only thing being synchronized on ipad is the name of the folder.  How can I copy photos from the folder in the folders in the Collections folder?

    I read that peaks must be in the Collections before they can be synchronized.  However, on the ipad there is that a folder named "Pictures Lightroom" it contains 242, the same as "all photographs synchronized" under the heading catalog when Lr appears on my desktop.  At present, I am initially upload my pictures in my office and then import to the RL.

    Finally, about mobile Lr in response to a previous johnreliis investigation informed that I must ensure that I am connected to creative cloud on the ipad before being able to view synchronized + photos on the ipad.  I downloaded Lr mobile on the Apple store and have nothing to CC on the ipad.  Now, I wonder if the reason that the pictures of Annecy are not displayed on the ipad is due to the fact that, at the present time, they are not in a Collection.

    Thanks in advance for all you can give me advice.

    Richard

    Just drag Annecy out of smart Collections and next to Aix.

    What is called "smart Collections" is actually a Collection Set - that is a container for other regular or silent collections (like your Aix) and smart collections which include images of criteria that you define. Notice how "Smart Collections of" has a different icon from the smart collections inside, looking more like a box. So what you could do then is to create a set of Collection called France and drag Annecy and Aix in it.

    To get the pictures in the Annecy collection, you can find them in your folders and drag the thumbnails in the grid and place in Annecy.

  • Oracle fusion tax and its integration with the application third-party to the functional aspect only.

    Hello

    I'm looking for some details / documents in which Oracle merger tax and its integration with third party requested to the functional aspect only. Could someone please help to fix the required details.

    Thank you... Sandeep

    Hi Sandeep,

    have you looked at these docs for Fusion Apps Financials / ERP Cloud?

    -Implementation of the tax- http://docs.oracle.com/cloud/latest/financialscs_gs/FAITX/toc.htm

    -To tax assistance - http://docs.oracle.com/cloud/latest/financialscs_gs/FAUTX/toc.htm

    "Implementation tax" contains a chapter on 3 third-party integrations. Is that what you are looking for?  If not, can you clarify what you mean by 'integration with 3rd party applications'?

    Thank you

    Oliver

    Fusion applications Developer Relations

    https://blogs.Oracle.com/fadevrel

Maybe you are looking for