How to upgrade a table which includes nearly 1 Million Records

Hello

Take the base for our Referenece emp table and allows to assume that it contains about 60000 Records and all the deptno in this table are out of 10. Please allow an update statement that would update the deptno column in the table EMP ((according to) order by EMPNO) in each increment of 1 120 reviews. (DeptNo to be incremented by 1, 10, 11, 12, etc.).

First 120 deptno records should be 10,
Then 120 deptno records should be 11 and so on.
.
.
.
.
.
.
For the last 120 deptno records should be updated with 500.

Please notify.

Kind regards

OK, I did it on a more limited set, incrementing each 5 folders...

SQL> ed
Wrote file afiedt.buf

  1  update emp2 set deptno = (select newdeptno
  2                            from (select empno, 10+floor((row_number() over (order by empno)-1)/5) as newdeptno
  3                                  from emp2
  4                                 ) e2
  5                            where e2.empno = emp2.empno
  6*                          )
SQL> /

14 rows updated.

SQL> select * from emp2;

     EMPNO ENAME      JOB              MGR HIREDATE                    SAL       COMM     DEPTNO
---------- ---------- --------- ---------- -------------------- ---------- ---------- ----------
      7369 SMITH      CLERK           7902 17-DEC-1980 00:00:00        800                    10
      7499 ALLEN      SALESMAN        7698 20-FEB-1981 00:00:00       1600        300         10
      7521 WARD       SALESMAN        7698 22-FEB-1981 00:00:00       1250        500         10
      7566 JONES      MANAGER         7839 02-APR-1981 00:00:00       2975                    10
      7654 MARTIN     SALESMAN        7698 28-SEP-1981 00:00:00       1250       1400         10
      7698 BLAKE      MANAGER         7839 01-MAY-1981 00:00:00       2850                    11
      7782 CLARK      MANAGER         7839 09-JUN-1981 00:00:00       2450                    11
      7788 SCOTT      ANALYST         7566 19-APR-1987 00:00:00       3000                    11
      7839 KING       PRESIDENT            17-NOV-1981 00:00:00       5000                    11
      7844 TURNER     SALESMAN        7698 08-SEP-1981 00:00:00       1500          0         11
      7876 ADAMS      CLERK           7788 23-MAY-1987 00:00:00       1100                    12
      7900 JAMES      CLERK           7698 03-DEC-1981 00:00:00        950                    12
      7902 FORD       ANALYST         7566 03-DEC-1981 00:00:00       3000                    12
      7934 MILLER     CLERK           7782 23-JAN-1982 00:00:00       1300                    12

14 rows selected.

but the principle would be the same.

Tags: Database

Similar Questions

  • How to upgrade a table which contains 100,000 lines?

    Hi all!
    I see that I was wrong with column form (GRAG table), namely Gtype: 3003

    (MDSYS. SDO_GEOMETRY (3003,50632625, 'null', MDSYS. SDO_ELEM_INFO_ARRAY (1,5,1,1,2,1), MDSYS. SDO_ORDINATE_ARRAY(276.2339,-179.7433,0,276.2498,-179.7361, 0))

    And I need to update the Gtype value: 3003 to 3002.
    My problem is that I don't know how to implement because the table GRAG has 30000 rows. I can't update the each line manually.

    Do you have any advice?

    As much as I KNOW oracle11g can simply update SDO_GEOMETRY.

    This means creating new SDO_GEOMETRY with old values.

    try to change this option (I wrote once to circumvent the cannot not change the SDO_GEOMETRY problem):

    --------------------------------------------------------
    -geometry of the clones but with different values
    -We can "change" the SRID
    -Note: oracle 11g cannot change the geometries
    --------------------------------------------------------
    function alter_geometry (p_geo sdo_geometry, p_srid number default null)
    sdo_geometry is back
    v_result sdo_geometry;
    number of v_srid;
    Start
    If p_srid is null then
    v_srid: = p_geo. SDO_SRID;
    on the other
    v_srid: = p_srid;
    end if;
    v_result: = sdo_geometry (p_geo. SDO_GTYPE,
    v_srid,
    p_geo. SDO_POINT_TYPE,
    p_geo. ANSDO_ELEM_INFO,
    p_geo. SDO_ORDINATES);
    Return v_result;
    end alter_geometry;

    --

    -and then do an update as
    -before test with a table to create in select
    Update crack c set c.shape = alter_geometry (shape,...)

  • How to create relational views based on an xmltype table which included sev

    Hello

    I'm using oracle 11.2.0.1.0.
    How to create a relational view based on a table xmltype including the content of the .xml files several different?

    Thank you.


    For examle:

    SQL > SELECT OBJECT_VALUE FROM document;

    Published by: cow on January 6, 2011 19:57

    In general, you can use XMLTable to create these views...

    You will need to create a view for each collection

    The notice will contain the data of all documents...

  • How to upgrade time zones to include in the United States?

    I restored my computer once a hard disk cleanup and now time zones include only countries than the United States, which is where I live. How can I fix to add to the USA?

    Hi Michael,

    Thanks for posting in the Microsoft Community.

    Have you tried connecting to your PC in safe mode with networking to see if the problem persists in mode safe

    To start the system in safe mode , please perform the steps mentioned in the link below.

    http://Windows.Microsoft.com/en-us/Windows/Start-computer-safe-mode#start-computer-safe-mode=Windows-7

    I suggest you follow the steps below and check it, if it helps.

    1. Right-click on the clock, at the far right of the taskbar, and click Adjust Date/time

    2. Left click on the clock, on the far right of the taskbar and click change date and time settings

    3. Click on the change of time zone button.

    4. Click on the drop-zone, and then select your time zone

    5. Check the adjust automatically

    6. Click OK

    You can also refer to the article below and check if it helps.

    http://Windows.Microsoft.com/en-my/Windows/set-clock#1TC=Windows-7

    Just reply to us with the State of the question.

    Thank you.

  • How to upgrade a table column using the values in the Oracle collection

    create or replace procedure test_coll
    
    IS
    
    CURSOR upd 
    IS
    SELECT CONTACT_NAME FROM Supplier_16;
    
    TYPE dept IS TABLE OF upd%rowtype;
    cur_var dept;
    
    Type List Is table Of  varchar2(20);
    Name List:=  List('Shilpi','Sunil','Shreyas','Saral');
    
    BEGIN
    
    OPEN upd;
    LOOP
         FETCH upd BULK COLLECT INTO cur_var;
    --    EXIT WHEN upd%NOTFOUND;
    
         FORALL i IN cur_var.FIRST..cur_var.LAST
      
         UPDATE supplier_16
    **  SET Contact_name= name(i);  ***
         
         COMMIT;
    
    END LOOP;
    CLOSE upd;
    
    END;
    On the "BOLD" line, I don't know how I should move the values of the collection of name I said without which are set all the values in the table supplier_16 = 'Saral.

    Help, please.

    Aashish S. wrote:
    Thank you very much...

    Yes, I slide collections and was trying to reach somwthing on similar lines to which you provided the code example...

    My essay is equipped to take a collection: initialized with values of say 3-4...

    Take other tables... A column... and update the column in the table (not PK, FK anything) using the values of the initialized collection...

    However, I am stuck between the two on how the UPDATE clause should be...

    OK, if it's just because you want to practice with collections, you might do something like this...

    SQL> set serverout on
    SQL> create table supplier_16 as
      2  select 'Frederick' as contact_name from dual union all
      3  select 'Robert' from dual union all
      4  select 'Jeremy' from dual union all
      5  select 'Simon' from dual
      6  /
    
    Table created.
    
    SQL> create or replace procedure test_coll is
      2    CURSOR upd IS
      3      SELECT CONTACT_NAME
      4      FROM Supplier_16
      5      FOR UPDATE;
      6    Type List Is table Of  varchar2(20);
      7    Name List := List('Shilpi','Sunil','Shreyas','Saral');
      8    v_contact_name varchar2(30);
      9    v_idx          number := 1;
     10  BEGIN
     11    OPEN upd;
     12    LOOP
     13       FETCH upd INTO v_contact_name;
     14       EXIT WHEN upd%NOTFOUND;
     15       UPDATE supplier_16
     16       SET    contact_name = name(v_idx)
     17       WHERE CURRENT OF upd;
     18       DBMS_OUTPUT.PUT_LINE(v_contact_name||' update to '||name(v_idx));
     19       v_idx := v_idx + 1;
     20    END LOOP;
     21    CLOSE upd;
     22    COMMIT;
     23  END;
     24  /
    
    Procedure created.
    
    SQL> exec test_coll;
    Frederick update to Shilpi
    Robert update to Sunil
    Jeremy update to Shreyas
    Simon update to Saral
    
    PL/SQL procedure successfully completed.
    
    SQL> select * from supplier_16;
    
    CONTACT_N
    ---------
    Shilpi
    Sunil
    Shreyas
    Saral
    

    Of course, there is treatment rank by rank and is not best for performance, but it allows you to access your collection that you created names.

  • How to upgrade a table after each iteration?

    Hello

    I have a vi which works fine but the problem is that it updates all the data once the vi stops running. I want something as soon as (for outside for loop) 1 iteration it performs updates the table in front of the Panel, then 2nd iteration, it updates again and so on. Can anyone help me please with this.

    Thank you

    In fact, in your case, there are a simpler way to do it... If we talk about the pink channel on the first loop indicator.

    Just move the table from outside the loop inside the loop indicator.

  • How to upgrade the table based on data in multiple tables?

    TABLE1:

    =======

    TXN_ID | NAME

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

    TX001 | null

    TX002 | null

    TX003 | null

    TX004 | null

    TX005 | null

    TX006 | null

    TX007 | null

    TX008 | null

    TX009 | null

    TABLE2

    ========

    TXN_ID

    -------

    TX002

    TX004

    TX005

    TX006

    TABLE 3

    ========

    TXN_ID

    -------

    TX001

    TX008

    TX009

    If TABLE1. TXN_ID present in TABLE2, I should update the form ABC TABLE1.NAME.

    If TABLE1. TXN_ID present in table 3, I should update TABLE1.NAME as XYZ.

    I can update this by running 2 scripts.

    UPDATE TABLE1 SET B.SID = 'ABC' WHERE

    IT EXISTS (SELECT 1 FROM TABLE2 B WHERE B.TXN_ID = A.TXN_ID);

    UPDATE TABLE1 SET B.SID = "XYZ" WHERE

    IT EXISTS (SELECT 1 FROM TABLE 3 C WHERE C.TXN_ID = A.TXN_ID);

    How can we do this in a single script? I have more than 10 tables as TABLE2 and TABLE3.

    Output should be:

    TABLE1:

    =======

    TXN_ID | NAME

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

    TX001 | XYZ

    TX002 | ABC

    TX003 | null

    TX004 | ABC

    TX005 | ABC

    TX006 | ABC

    TX007 | null

    TX008 | XYZ

    TX009 | XYZ

    Assuming a table2 and table3 will not have same tnx_id you can do.

    merge into table1 t1

    a_l'_aide_de)

    Select txn_id

    name

    de)

    Select txn_id, "TABLE2" name

    from table2

    Union of all the

    Select txn_id, name "TABLE3."

    table 3

    )

    ) t2

    on)

    T1.txn_id = t2.txn_id

    )

    When matched then

    set t1.name, t2.name = update

  • PS CS4 - how to perform batch processing which includes 'save' step and saves all the layers in PSD?

    I created an Action in PS CS4 to apply NIK Color Efex Pro4 to a JPG image, adjust the opacity of the layer CEP4 to 50% and then file > save as to a file in PSD format in order to keep the CEP4 and background layers in PSD format.  It worked well with the image that I was working in the creation of the Action - reopening of the PSD file, it showed the two layers as I wanted.

    But when I opened then four other JPG images, went to file > automate > Batch and applied this new Action to all open files, recording in the same folder as the original image, when I created the Action, all the PSD files created by the process of batch contain only one layer (Layer 0).  How can I me Batch process and always the CEP4 and the background of the layers in the PSD file?

    I swear it worked in the past, but I must be missing something.

    Thanks in advance for any help offered.

    See if implementing during a stage of duplicate layer in the dispute before the color efex pro stage of the work.

  • How to upgrade a table within a trigger

    I have a simple question.
    Suppose I have the table TAB1 with fields F1 and F2 and I created the following trigger;

    create or replace trigger insert_TAB1
    After Insert on TAB1
    for each line
    declare

    Tab1 v_F2. % Of F2 type;

    Start

    ...
    ...
    v_F2: =...;
    ...
    ...

    Update TAB1
    the F2 value = v_F2
    where F1 =: old. F1;

    end;

    If I try to insert a record into TAB1, I get:

    ERROR on line 1:
    ORA-04091: table tab1 is changing, function of triggering/can not see
    ORA-06512: at "INSERT_TAB1", line 47
    ORA-04088: error during execution of trigger 'INSERT_TAB1 '.

    Can you help me?
    What I want is to write a trigger that inserts a value into a field after that insert was performed in the table.

    Thank you!

    Hello

    Thank you for this.

    The trigger can be written like this

    create or replace trigger insert_TAB1
    before insert on TAB1
    for each row when(new.F1 is not null)
    begin
    :new.F2=..;
    end;
    

    see you soon

    VT

  • How to create a table with editable column values.

    Hello world
    I think it's very simple, but I am unable to find how to do this. This is my requirement. I need to create a table with n columns and 1 line initially. the user must be able to enter data into this table and click of a button must insert the data into the database table. Also, there should be a button at the bottom of the table to add 1 line to the table.

    I know how to do the insertion of data, but can someone please let me know how to create a table which allows the user to enter data and how to create a line button Add 1?


    Thanks in advance!

    Raghu,

    Go through the tutorial of Toolbox Page & Advanced section of the Guide of the OFA table.

    Step 1 - you need to create EO & VO from this EO. This EO will be table of database where you want to insert the data.

    Step 2 - create an advanced table region. (See this section in table advanced for more details)

    Step 3 - attach this VO in the BC4J region advanced Table component.

    Kind regards
    GYAN

  • Update stmt take several hours to get updated about half million records in a Table

    Hello

    Target WC_PROCUREMENT_FS table contains about 1.3 million records and under post ETL to update stmt take several hours to update the table. I think that 3rd stmt with XX_PROCUREMENT_BI package with the function 'GET_EXCHANGE_RATE' is time consuming. Please suggest if there is a way to improve performance.

    UPDATE WC_PROCUREMENT_FS OP

    The VALUE of OP. RELEASE_AMT_FN_CCY = (SELECT SUM (OP1. PO_AMOUNT_FN_CCY) OF WC_PROCUREMENT_FS OP1

    WHERE OP1. SUBJECT_CODE IN ("PO")

    AND OP1. TYPE NO ('CONTRACT', 'COVER')

    AND OP1. TRANSACTION_LINE! = "NA".

    AND OP1. PO_REFERENCE_NO = OP. TRANSACTION_NO)

    Op. RELEASE_AMT_GBL_CCY = (SELECT SUM (OP1. PO_AMOUNT_GBL_CCY) OF WC_PROCUREMENT_FS OP1

    WHERE OP1. SUBJECT_CODE IN ("PO")

    AND OP1. TYPE NO ('CONTRACT', 'COVER')

    AND OP1. TRANSACTION_LINE! = "NA".

    AND OP1. PO_REFERENCE_NO = OP. TRANSACTION_NO)

    Op. RELEASE_AMT_TRN_CCY = (SELECT SUM (ROUND (DECODE (OP. TRN_CCY, OP1. TRN_CCY, OP1. PO_AMOUNT_TRN_CCY, OP1. PO_AMOUNT_FN_CCY * nvl

    (XX_PROCUREMENT_BI. GET_EXCHANGE_RATE (OP1. FN_CCY, OP. ((TRN_CCY, 'Corporate', OP.GL_DATE), 1)), 2))

    OF WC_PROCUREMENT_FS OP1

    WHERE OP1. SUBJECT_CODE IN ("PO")

    AND OP1. TYPE NO ('CONTRACT', 'COVER')

    AND OP1. TRANSACTION_LINE! = "NA".

    AND OP1. PO_REFERENCE_NO = OP. TRANSACTION_NO)

    WHERE OP. SUBJECT_CODE IN ("PO")

    AND OP. TYPE ('CONTRACT', 'COVER')

    AND OP. TRANSACTION_LINE = "NA";


    Thank you for your help.

    Thank you

    Jay.

    Hi Jay,.

    Try this.

    MERGE IN wc_procurement_fs op

    USING (SELECT op1.po_reference_no, SUM (op1.po_amount_fn_ccy) c1,

    SUM (op1.po_amount_gbl_ccy) c2,

    SUM

    (ROUND

    (DECODE

    (op.trn_ccy,

    OP1.trn_ccy, op1.po_amount_trn_ccy,

    OP1.po_amount_fn_ccy

    * NVL

    (xx_procurement_bi.get_exchange_rate

    (op1.fn_ccy,

    op.trn_ccy,

    "Corporate."

    op.gl_date

    ),

    1

    )

    ),

    2

    )

    ) c3

    OF wc_procurement_fs op1

    WHERE op1.subject_code IN ("PO")

    AND op1. TYPE NO ('CONTRACT', 'COVER')

    AND op1.transaction_line! = "NA".

    GROUP BY op1.po_reference_no) CBC

    WE (op1.po_reference_no = op.transaction_no)

    WHEN MATCHED THEN

    UPDATE

    SET op.release_amt_fn_ccy = src.c1, op.release_amt_gbl_ccy = src.c2,

    op.release_amt_trn_ccy = src.c3

    ;

  • Hi, I have the 2014 package which includes lightroom and photoshop. Can I move to 2015 for free? If yes how can I do? My photoshop 2014 disappeared and its saying I have a 30 day trial for the 2015. Thank you for the help

    Hi, I have the 2014 package which includes lightroom and photoshop. Can I move to 2015 for free? If yes how can I do? My photoshop 2014 disappeared and its saying I have a 30 day trial for the 2015. Thank you for the help

    Yes, the upgrade is free. means that it is included in the subscription.


    You can install and activate one of these version according to your choice of 6 CS, CC, CC 2014 or 2015 CC

    If the CC 2015 looms as of the trial, please refer link below:

    https://helpx.Adobe.com/manage-account-membership/CC-reverts-to-trial.html

    Let me know if you need more assistance.

    Also mention if you use Windows or Mac computer?

  • IB: how to upgrade a serial number which performs hardware inventory operations?

    Dear friends

    first of all thank you for your time and the valid solutions

    Install the base: how to upgrade a serial number which performs hardware inventory operations


    description of the problem:

    Install the base > Quick search

    Here's the Installbase folder, when I fast search query

    REC # Item serial number State of the Instance element
    1 3000000 300-7000-01-1000XXX-0538JQ0003 of return for Exchange Adv
    2 8000000 300-7000-01-1000XXX-0538JQ0003-return for Exchange Adv
    3 300 - 7000-01 5000000 1000XXX-0538JQ0003-A return for Exchange Adv


    looking over the data, first recordings and the third are legitimate serial numbers (correct to the customer's specifications), second record is not legitimate because it has a dashboard as a suffix, we found there are several illegitimate serial numbers exist, must be updated with the right of the serial numbers which I analyzed in great after having pulled data from mtl_material_transactions oe_order_lines_all, mtl_serial_numbers, mtl_system_items_b
    Basically, these are all RMA

    I need to update the second album under the name 1094SUZ-0538JQ0003-B by the guidelines, updating, I need to keep all the existing contracts, warranty, what ever material operations, there need to be same.

    We have a package to update serial numbers using the IB (csi_Item_Instance_Pub.update_item_instance) API, but it updates only the records which has no current serial number of this instance, if there is a serial number already exists, it does not work.

    user to define the error msg ' serial number 1094SUZ-0538JQ0003-a inventory of significant transactions. " This serial number cannot be used to update an existing Instance of point", but I need to update anyway! or am I missing something here, please advice me

    post below resembles similar question, talking about hard update, I have no idea, by the practice that the serial number update will have same operations, contracts and dates... attached to it as previous serial number

    IB UPDATE_ITEM_INSTANCE ERROR - does not allow ACTIVE_START_DATE change


    would be great if you guys help me, really appreciated!


    Unfortunately, I could not find any solution in metalink for the existing serial number update


    Code to update the serial number using the IB API
    x_msg_count: = 0;
    x_msg_data: = ";
    p_instance_rec.INSTANCE_ID: = rec.child_instance_id;
    p_instance_rec.Serial_number: = rec.child_serial_number;
    p_instance_rec.object_version_number: = rec.child_object_number;
    p_txn_rec.transaction_id: = Fnd_Api.g_miss_num;
    p_txn_rec.transaction_date: = SYSDATE;
    p_txn_rec.source_transaction_date: = SYSDATE;
    p_txn_rec.transaction_type_id: = 1;

    csi_Item_Instance_Pub.update_item_instance
    (
    p_api_version = > 1.0,
    p_commit = > Fnd_Api.g_false,
    p_init_msg_list = > Fnd_Api.g_false,
    p_validation_level = > 1,
    p_instance_rec = > p_instance_rec,
    p_ext_attrib_values_tbl = > p_ext_attrib_values_tbl,
    p_party_tbl = > p_party_tbl,
    p_account_tbl = > p_account_tbl,
    p_pricing_attrib_tbl = > p_pricing_attrib_tbl,
    p_org_assignments_tbl = > p_org_assignments_tbl,
    p_asset_assignment_tbl = > p_asset_assignment_tbl,
    p_txn_rec = > p_txn_rec,
    x_instance_id_lst = > x_instance_id_lst,
    x_return_status = > x_return_status,
    x_msg_count = > x_msg_count,
    x_msg_data = > x_msg_data
    );


    Thank you
    Suri

    Suri
    This used. Is perhaps not perfect, but you should get there. Only if the table is saved (all tables seeded should be registered) it will work.

    Select a.table_name, distinct b.column_name from fnd_tables a, fnd_columns b
    where a.table_id = b.table_id
    and upper (b.column_name) like ' % SERIAL.

    Also it is a very old, but if you need history for this change adds logic to insert story as well...

    DECLARE
    l_return_err VARCHAR2 (80);

    PROCEDURE debug (p_message IN VARCHAR2)
    IS
    BEGIN
    dbms_output.put_line (SUBSTR (p_message, 1, 255));
    END debugging;
    BEGIN
    debug('======================================================================');
    debug ("switching of serial number XDT07406. to XDT07406');
    debug('======================================================================');

    UPDATE fa_additions_b
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in fa_additions_b :'|| update) SQL % number of lines);

    UPDATE fa_mass_additions
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in fa_mass_additions :'|| update) SQL % number of lines);

    UPDATE rcv_serial_transactions
    Serial_num who SET = "XDT07406."
    WHERE the serial_num which = "XDT07406.";
    debug (' number of rows in rcv_serial_transactions :'|| update) SQL % number of lines);

    UPDATE mtl_serial_numbers
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in mtl_serial_numbers :'|| update) SQL % number of lines);

    UPDATE mtl_unit_transactions
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in mtl_unit_transactions :'|| update) SQL % number of lines);

    UPDATE csi_item_instances_h
    SET new_serial_number = "XDT07406".
    WHERE new_serial_number = 'XDT07406.';
    debug (' number of rows in csi_item_instances_h :'|| update) SQL % number of lines);

    UPDATE csi_t_txn_line_details
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in csi_t_txn_line_details :'|| update) SQL % number of lines);

    UPDATE csi_item_instances
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in csi_item_instances :'|| update) SQL % number of lines);

    UPDATE wsh_delivery_details
    Serial_number SET = "XDT07406."
    WHERE Serial_number = 'XDT07406.';
    debug (' number of rows in wsh_delivery_details :'|| update) SQL % number of lines);

    debug('======================================================================');
    debug ("switching of serial number jct20591 to JCT20591'");
    debug('======================================================================');

    UPDATE fa_additions_b
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in fa_additions_b :'|| update) SQL % number of lines);

    UPDATE fa_mass_additions
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in fa_mass_additions :'|| update) SQL % number of lines);

    UPDATE rcv_serial_transactions
    Serial_num who SET = "JCT20591."
    WHERE the serial_num which = "jct20591";
    debug (' number of rows in rcv_serial_transactions :'|| update) SQL % number of lines);

    UPDATE mtl_serial_numbers
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in mtl_serial_numbers :'|| update) SQL % number of lines);

    UPDATE mtl_unit_transactions
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in mtl_unit_transactions :'|| update) SQL % number of lines);

    UPDATE csi_item_instances_h
    SET new_serial_number = "JCT20591".
    WHERE new_serial_number = 'jct20591 ';
    debug (' number of rows in csi_item_instances_h :'|| update) SQL % number of lines);

    UPDATE csi_t_txn_line_details
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in csi_t_txn_line_details :'|| update) SQL % number of lines);

    UPDATE csi_item_instances
    Serial_number SET = "JCT20591."
    WHERE Serial_number = "jct20591";
    debug (' number of rows in csi_item_instances :'|| update) SQL % number of lines);

    COMMIT;
    EXCEPTION
    WHILE OTHERS
    THEN
    l_return_err: = "update in one of Scripture has this error :'|| substrb (sqlerrm, 1, 55);
    debug ("l_return_err value ='|") l_return_err);
    END;
    /

    Thank you
    Claire

  • How to make a simple slideshow DVD of a group of .jpg images?  No music, no fancy transition. iDVD > magic DVD comes close, but the quality is poor and I want the images in a specific order.  I also have iLIFE ' 09, which includes iPHOTO

    How to make a simple slideshow DVD of a group of .jpg images?  No music, no fancy transition. iDVD > magic DVD comes close, but the quality is poor and I want the images in a specific order.  I also have iLIFE ' 09, which includes iPHOTO

    1. put the image files you want in the slide show in an album and genre as you want. Follow the Apple document to prepare images for iDVD: iDVD ' 09 (7.x): preparing images for iDVD slideshows

    2 - Launch iDVD and select an older theme, not animated.  You can change the background of the theme by dragging the image file of your choice, black or other, in the display pane for the menu.

    3 - Click on the button '+' and add a slideshow from the menu.

    4. double click on the sideshow button to enter the mode of construction of the slide show.

    5. in the media pane click the Photos button.

    6 - click on iPhoto and find the album you created with selected images.

    7. Select all images in the album and drag to the left in the slide show window.

    8 - Select the transition for the slideshow and the time for each slide on screen

    9 - follow this workflow to help ensure the best DVD video qualty:

    Once the project you want it save it as an image disk via the menu file → save as Disk Image . It will separate from the process of encoding of the burning process.

    To check coding mount the disk image, launch a DVD player and read it.  If it plays OK with DVD, encoding is good.

    Burn burn to disc with utility disk or toasts to the slowest speed (2 x - 4 x) in order to ensure the best quality.  Always use higher quality media: Verbatim, Maxell or Taiyo Yuden DVD-R are recommended in these forums.

  • Whenever I try to install a program I get a message that a program being installed. Which includes all updates to Windows. How can I fix this problem?

    Whenever I try to install a program I get a message that a program being installed.  Which includes all updates to Windows.  How can I fix this problem?

    Hello
    I suggest you to follow the steps in this link and check if it helps:

    http://support.Microsoft.com/kb/822798

    It will be useful.

Maybe you are looking for

  • New calculator?

    Hi all! I tried to find some information about it! So I couldn't find, that's why I'm here asking you guys! I used to have a 35s calculator, however, I had a few problems with mine... Not really a problem if... My calculator got stolen! Now I use my

  • Error when executing the function ocx

    Hello When I trty to perform functions ocx (which work when she is called to do not use LV) then I get error popup attached. Fatal internal error 2832 oleautomgr.cpp line What cani do to make it work? With the help of LV 8.5 Thx for any help

  • Practice the CLD - R review 1, symbol of the Question 24?

    I'm cramming for the CLD - R.  What is the symbol of the peace research-sign bit? It comes from the CLD - R review 1, question 24 example. Thank you!

  • How will I know that I can uninstall it? It says "not enough space on drive D.

    Original title: How do iknow, I can uninstall when I said im my running out of space not enough space on drive d

  • Failed reinstallation of Win7

    The context: my PC slow "death" until a new building seemed the only way out. The PC would not always successfully starts, for example. So no problem, the machine has been rebuilt. I don't have wifi internet and of course when the machine started up