Need to write the cursor to update the column

Hi all

I want to write a cursor in the CALC_TAX of the PP_TAX of the UPDATE table column
Currently I use following update instructions to update the CALC_TAX column.

UPDATE PP_TAX P
SET CALC_TAX = ROUND (((P.ACTV_AMT * 5)/100), 2)
WHERE PROV_DEC_FOR_TAX ("AB", "NT", "YT", "NAKED", "NV");

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 5)/100), 2) + Round (((P.ACTV_AMT + Round (((P.ACTV_AMT * 5)/100), 2)) * 8.5) / 100), 2)
WHERE PROV_DEC_FOR_TAX ("QC");

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 5)/100), 2) + (((P.ACTV_AMT * 7)/100), 2nd round)
WHERE PROV_DEC_FOR_TAX IN ("MB");

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 5)/100), 2) + Round (((P.ACTV_AMT + (Tower (((P.ACTV_AMT * 5)/100), 2)) * 10) / 100), 2)
WHERE PROV_DEC_FOR_TAX IN ('PE');

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 5)/100), 2) + (((P.ACTV_AMT * 5)/100), 2nd round)
WHERE PROV_DEC_FOR_TAX ('SK');


UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 13)/100), 2)
WHERE PROV_DEC_FOR_TAX IN ('WE', 'NB', 'NL', 'YY');

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 12)/100), 2)
WHERE PROV_DEC_FOR_TAX IN ("BC");

UPDATE PP_TAX P
SET CALC_TAX = Round (((P.ACTV_AMT * 15)/100), 2)
WHERE PROV_DEC_FOR_TAX IN ('NS');

Kindly help.

This is what it would look like for the first two,

UPDATE pp_tax p
SET    calc_tax =
         CASE
           WHEN prov_dec_for_tax IN ('AB', 'NT', 'YT', 'NU', 'NV') THEN
             ROUND ( ( (p.actv_amt * 5) / 100), 2)
           WHEN prov_dec_for_tax IN ('QC') THEN
             ROUND ( ( (p.actv_amt * 5) / 100), 2) + ROUND ( ( ( (p.actv_amt + ROUND ( ( (p.actv_amt * 5) / 100), 2)) * 8.5) / 100), 2)
         END
WHERE  prov_dec_for_tax IN ('AB', 'NT', 'YT', 'NU', 'NV', 'QC');

Just add several WHEN clauses and include in the list of in WHERE clause.

Concerning
Peter

Tags: Database

Similar Questions

  • Select cursor for update: multiple columns of different tables

    Hello

    I have two tables test1 and test2. I want to udpate the column (DEPT_DSCR) from the TEST1 and TEST2 using select for update and current tables of the... with the cursor.

    I have a code drafted as follows:
    DECLARE
    v_mydept1 TEST1. TYPE % DEPT_CD;
    v_mydept2 TEST2. TYPE % DEPT_CD;
    CURSOR C1 IS SELECT TEST1. DEPT_CD, TEST2. DEPT_CD OF TEST1, TEST2 WHERE TEST1. DEPT_CD = TEST2. DEPT_CD AND TEST1. DEPT_CD IS 'AA' FOR THE UPDATE OF TEST1. DEPT_DSCR, TEST2. DEPT_DSCR;
    BEGIN
    OPEN C1;
    LOOP
    FETCH C1 INTO v_mydept1, v_mydept2;
    WHEN EXIT C1% NOTFOUND;
    UPDATE TEST1 SET DEPT_DSCR IS "PLSQL1" WHERE CURRENT OF C1;.
    SETTING A DAY TEST2 SET DEPT_DSCR = 'PLSQL2' WHERE CURRENT OF C1.
    END LOOP;
    COMMIT;
    END;

    The code above when it is run, declares that it runs successfully. But it does not update the columns you want [DEPT_DSCR].

    It works only when we want to update one or more columns of the same table... i. e by providing these columns after ' to UPDATE THE.
    I don't know what exactly is the problem when you want to update several columns of different tables.

    Can someone help me on this?

    user12944938 wrote:
    But it's more the notion of compensation and understanding.

    See the link below:
    http://download.Oracle.com/docs/CD/B10501_01/AppDev.920/a97269/pc_06sql.htm

    See the section RESTRICTION in the link above.

    Twinkle

  • Need to write a cursor to the following requirement

    Dear all.

    I have the design of the table as follows

    SQL > SELECT * FROM THE Department;

    ID_NO DEPARTMENT FROM_DT TO_DT

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

    100. IT AUGUST 17, 93 MARCH 31 02

    100 BANKS 1 APRIL 02.

    SQL > SELECT * FROM DESG.

    ID_NO DESIGNATION FROM_DT TO_DT

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

    100 INTERNS AUGUST 17, 93 31 OCTOBER 00

    DEVELOPER OF 100 1 NOVEMBER 00 31 MARCH 03

    HEAD OF TEAM 100 1 APRIL 03 30 JUNE 05

    MANAGER OF 100 1 JULY 05.

    I need the output voltage

    100 TRAINEE COMPUTER AUGUST 17, 93 31 OCTOBER 00

    100 DEVELOPER COMPUTER 1 NOVEMBER 00 31 MARCH 02

    100 BANKS DEVELOPER ON APRIL 1 02 31 MARCH 03

    100 BANKS TEAM LEADER 1 APRIL 03 30 JUNE 05

    MANAGER BANKING 100 1 JULY 05-

    The problem is that the same person working as a DEVELOPER in IT and BANKING, so I can't get the right output.

    I tried this with cursor set, even if I do not have the correct result.

    with

    Dept as

    (select 100 ID_NO, "IT" DEPARTMENT, to_date('17-AUG-93','DD-MON-RR') FROM_DT, to_date('31-MAR-02','DD-MON-RR') TO_DT of all double union

    Select 100, 'BANK', to_date (1 April 02 ',' DD-MON-RR'), double null

    ),

    DESG as

    (select 100 ID_NO, "INTERN" DESIGNATION, to_date('17-AUG-93','DD-MON-RR') FROM_DT, to_date('31-OCT-00','DD-MON-RR') TO_DT of all the double union)

    Select 100,'DEVELOPER',to_date('01-NOV-00','DD-MON-RR'),to_date('31-MAR-03','DD-MON-RR') in all the double union

    Select 100, 'TEAM LEADER',to_date('01-APR-03','DD-MON-RR'),to_date('30-JUN-05','DD-MON-RR') union double all the

    Select 100, 'MANAGER', to_date (1 July 05 ',' DD-MON-RR'), double null

    )

    Select x.id_no,

    y.Department,

    x.DESIGNATION,

    Greatest (x.from_dt, y.from_dt) from_dt.

    NULLIF (less (nvl (x.to_dt, date ' 9999-12-31'), nvl (y.to_dt, date ' 9999-12-31')), date' 9999-12-31) to_dt

    of master's level x,.

    y Dept

    where x.id_no = y.id_no

    and greatest (x.from_dt, y.from_dt)< least(nvl(x.to_dt,date="" '9999-12-31'),nvl(y.to_dt,date="">

    order by 4

    ID_NO DEPARTMENT DESIGNATION FROM_DT TO_DT
    100 HE INTERN 17/08/1993 31/10/2000
    100 HE DEVELOPER 01/11/2000 31/03/2002
    100 BANKING SERVICES DEVELOPER 04/01/2002 31/03/2003
    100 BANKING SERVICES TEAM LEADER 01/04/2003 30/06/2005
    100 BANKING SERVICES MANAGER 01/07/2005 -

    Concerning

    Etbin

  • I need to change the column of the range on my partition table

    Hello

    I created a partition table, but I need to change column of the range "CREATED" to "PREPARED". Two of them date format, but I can't modify this table.

    PARTITION OF RANGE (CREATED)--> I need to change column "CREATED" as "PREPARED".
    (
    INV08 PARTITION VALUES LESS (TO_DATE('01-SEP-2010','DD-MON-YYYY')).
    INV09 PARTITION VALUES LESS (TO_DATE('01-OCT-2010','DD-MON-YYYY')).
    INV10 PARTITION VALUES LESS (TO_DATE('01-NOV-2010','DD-MON-YYYY')).
    PARTITION INV VALUES LESS THAN (MAXVALUE)
    )

    How can I do?

    Published by: user567352 on December 23, 2010 04:10

    Hello

    As far as I know, dbms_redefinition didn't even know about the partitioning:

    1. you create a new empty table that matches your need + (that is where you defined you new partition key) +.
    2. you start the names of submiting of redefinition of existing and newly created table 'interim' table
    3. you leave enough time to get the work done
    4. you have finished redefining (the name of the table are swapped)
    And voila!

    Be sure to test thorougly the process of redefinition and the performance impact that may occur until you make it to your production !
    ;-)

  • How to write the trigger for update of 2 tables

    Hi all
    I have 2 tables,

    1.lv_data,
    It contains the following fields,
    emp_name        tot_days
     guru                    18
                
    2.leave_data
    It contains the following fields,
     emp_name          From_date              to_date            no_of_days       remaining_days
     guru                    02/05/2012          03/05/2012           2                         
    In the second table, if the data is inserted.
    the no_of_days will be calculated automatically (from to_date - From_date) + 1,

    Here, I need to write the trigger to update the remaining_days column,

    First table for all tot_days emp_name is 18 days,
    Thus, in the second table every time that the record is inserted.
    the remaining_days must be calculated as follows,

    remaining_days: = tot_days - no_of_days and this (calculated) value should be updated in the tot_days column in the first table (lv_data).

    Example:
    emp_name        tot_days
    guru                    18
                
    2.leave_data
     emp_name          From_date              to_date            no_of_days        remaining_days
     guru                    02/05/2012          03/05/2012         2                          16
    [/code  
    
    Now the first table should be updated like,
    emp_name tot_days
    Guru 16


    So I need to update to 2 tables,
    can someone help me to update these 2 tables through TRIGGER?

    Thank you
    Kind regards
    gurujothi

    Edited by: Gurujothi may 1, 2012 19:54

    It is generally considered bad practice to store the value even in 2 places. You are having the kind of problems that you are experiencing now. It is much easier to store in the main table and get the value from there where you need to show in your forms.

  • Can after get values a RGB pixel, hoe I write the name of the color?

    Team,

    I'm quite new to LabVIEW and I'm working on an application using USB webcam to capture the color of the object.

    So far, it's finished, but now I need to write the name of the color on the screen.

    Please, could someone help identify if IMAQ or Labview have this feature?

    For help in understanding:

    Below you can see the example.

    R = 236

    G = 0

    B = 116

    And the name of the color is pink.

    But the problem is how to get the name by using certain features available.

    Thank you.

    Kind regards

    JCG

    There is not such a function, but you can create a pretty easily.

    I would divide each color component by 64 and to get a value of 2 bits for each color.  Combining these (multiply/shift and add) would give you a 6-bit integer, which gives you 64 color combinations.  Create an array of 64 strings with the names of the colors and the correct name indexes.  You need to browse manually the first time and assign a name to each color, but that wouldn't be too bad.

    Bruce

  • Where to write the condition in the design of workflows with conditional step?


    Hello

    Again, I wish BP and workflow with contitional design stage.

    I had designed BP and workflow.

    As directed by the user for Udesigner guide, I had added trigger before the condition step.

    But I do not understand where to set the Condition to test?

    If I need to write the condition in triggering elemt itsel... How to proceed?

    for example, I want to write the condition as cost of Tota > = 100000, it must follow a path and if fails to another path.

    The conditions of triggers are specified in the workflow settings.  After you have created a new configuration, open it and click on the settings tab.  You will see a tree structure of the workflow with conditional branches.  Click a conditional branch to set the parameters for the trigger for this route condition.

  • Write the file using the file adapter

    Hello

    I need to write at least two lines. first column and second row headers, data. Tried to use 2 PLs but I think the first line is getting crushed by second.

    How can I achieve this?

    Pls help me.

    Kind regards
    Nikhil

    I don't think you need 2 links from sponsors for this. I should be able to be done. It really comes down to the xsd you create. When you make your mappings for the header just give the constants of fields for the column name

    
    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
    

    see you soon
    James

  • display the data in the column as column name

    in this column of query names are hard coded, I need to display the column name dynamically (based on sysdate). Please help me on this?

    with test_emp as

    (select 100 empno, 1st February 2014 ' hiredate, SAL union 1000 double all the)

    Select 200 empno, February 3, 2014 ", 2000 union SAL double all the"

    Select empno 300, 4 February 2014 ", 3000 union SAL double all the"

    Select 400 empno, 5 February 2014 ", 4000 SAL double

    )

    -Select * from test_emp

    SELECT EmpNo,

    Sum (decode (HireDate, trunc (sysdate), SAL, 0)) as '4 February 2014. "

    Sum (decode (HireDate, SAL, trunc(sysdate-1), 0)) as "February 3, 2014.

    Sum (decode (HireDate, trunc (sysdate)-2, SAL, 0)) as 'February 2, 2014.

    Sum (decode (HireDate, trunc (sysdate)-3, SAL, 0)) as 'February 1st, 2014. "

    Sum (decode (HireDate, trunc (sysdate)-4, SAL, 0)) as 'January 31, 2014.

    OF test_emp

    Group by empno stopped by 1

    expected results:

    EMPNO February 4, 2014 3 February 2014 2 February 2014 February 1, 2014 January 31, 2014

    100                     0                    0                       0                   1000               0

    200                     0                   2000                    0                   0                   0

    300                 3000                    0                       0                   0                   0

    400                     0                       0                       0                 0                    0

    Hello..

    We cannot manage dynamic crossover into a sql. So what I did just create a function with refcursor and get results. It will work for your case only. Try the code below and let me know in case of any problems

    FUNCTION to CREATE or REPLACE dyn_row_colum

    RETURN SYS_REFCURSOR

    AS

    v_sqlstr VARCHAR2 (32767): = ' SELECT empno, SUM (DECODE (hiredate,'|)) '''|| Trunc (sysdate) | " ((' |', sal, 0))' | ' '||'"'|| TRUNC (SYSDATE) |' » ' || «, » ;

    v_rfcur SYS_REFCURSOR;

    BEGIN

    FOR j_rec IN (SELECT col_val FROM test_emp TRUNC(SYSDATE-ROWNUM))

    LOOP

    v_sqlstr: = v_sqlstr | » '||' SUM (DECODE (hiredate,'|)) '''|| j_rec.col_val | " ((' |', sal, 0))' | ' '||'"'|| j_rec.col_val |'"' | ',';"

    END LOOP;

    v_sqlstr: = RTRIM (v_sqlstr, ','). » '||' OF test_emp GROUP BY empno';

    V_rfcur OPEN FOR v_sqlstr;

    RETURN v_rfcur;

    EXCEPTION

    WHILE OTHERS THEN

    LIFT;

    END dyn_row_colum;

    VARIABLE v_cur REFCURSOR

    EXEC: v_cur: = dyn_row_colum;

    PRINT v_cur;

    SELECT dyn_row_colum FROM dual;

    Unit tests: -.

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

    Scott@ORCL > dyn_row_colum FUNCTION to CREATE or REPLACE

    2 SYS_REFCURSOR RETURN

    3 AS

    4 v_sqlstr VARCHAR2 (32767): = ' SELECT empno, SUM (DECODE (hiredate,'|)) '''|| Trunc (sysdate) | " ((' |', sal, 0))' | ' '||'"'|| TRUNC (SYSDATE) |' » ' || «, » ;

    5 v_rfcur SYS_REFCURSOR;

    6 BEGIN

    7 FOR j_rec IN (SELECT col_val FROM test_emp TRUNC(SYSDATE-ROWNUM))

    8 LOOP

    9 v_sqlstr: = v_sqlstr | » '||' SUM (DECODE (hiredate,'|)) '''|| j_rec.col_val | " ((' |', sal, 0))' | ' '||'"'|| j_rec.col_val |'"' | ',';"

    10 END OF LOOP;

    11 v_sqlstr: = RTRIM (v_sqlstr, ','). » '||' OF test_emp GROUP BY empno';

    12 v_rfcur OPEN FOR v_sqlstr;

    13 RETURN v_rfcur;

    14 EXCEPTION

    15 SO THAT OTHERS THEN

    16 RAISE;

    17 END dyn_row_colum;

    18.

    The function is created.

    Scott@ORCL > v_cur VARIABLE REFCURSOR

    Scott@ORCL > EXEC: v_cur: = dyn_row_colum;

    PL/SQL procedure successfully completed.

    Scott@ORCL > v_cur PRINT;

    EMPNO 5 FEBRUARY 14 FEBRUARY 4, 14 3 FEBRUARY 14 FEBRUARY 2 14 1 FEBRUARY 14

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

    100          0          0          0          0       1000

    400       4000          0          0          0          0

    300          0       3000          0          0          0

    200          0          0       2000          0          0

    Scott@ORCL > dyn_row_colum SELECT FROM dual;

    DYN_ROW_COLUM

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

    CURSOR STATEMENT: 1

    CURSOR STATEMENT: 1

    EMPNO 5 FEBRUARY 14 FEBRUARY 4, 14 3 FEBRUARY 14 FEBRUARY 2 14 1 FEBRUARY 14

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

    100          0          0          0          0       1000

    400       4000          0          0          0          0

    300          0       3000          0          0          0

    200          0          0       2000          0          0

  • My iTunes playlist display has changed and I can't control the columns that appears? My old playlists are very good.

    OK, I make playlists for radio broadcast. I need to change the columns shown, and it has always been easy. The playlist I created just has a different view, and there seems to be no way for me to change the columns that are visible. Any ideas?

    Click Show main menu, and then click Show the Options. You can select the columns that you want or do not want to here.

    See you soon,.

    GB

  • How to cut the column data

    Gurus in the morning

    I have two tables with the data in the corresponding column, BUT I need to cut the columns in a table
    the data is displayed as follows in table xpq_log
    LOG_DATE                     LOG_PTR     LOG_HDR
    01/06/2011 00:00:00     0609pro     0609IN002C_06
    04/06/2011 00:00:00     0609pro     0609IN002C_06
    05/06/2011 00:00:00     0609pro     0609IN002C_06
    06/06/2011 00:00:00     0609pro     0609IN002C_06
    07/06/2011 00:00:00     0609pro     0609IN002C_06
    09/06/2011 00:00:00     0609pro     0609IN002C_06
    10/06/2011 00:00:00     0609pro     0609IN002C_06
    12/06/2011 00:00:00     0609pro     0609IN002C_06
    01/06/2012 00:00:00     0609pro     0609IN002C_06
    02/06/2012 00:00:00     0609pro     0609IN002C_06
    03/06/2012 00:00:00     0609pro     0609IN002C_06
    06/06/2012 00:00:00     0609pro     0609IN002C_06
    07/06/2012 00:00:00     0609pro     0609IN002C_06
    08/06/2012 00:00:00     0609pro     0609IN002C_06
    09/06/2012 00:00:00     0609pro     0609IN002C_06
    In the table of printpdf as follows
    PDF_REPORT     PDF_DESCRIPTION
    IN002C                     STOCK FILE PURGE - PRINT WH CONTROL
    How can I cut the column data (log_hdr) to match column (pdf_report)?

    Any help will be much appreciated

    user11978142 wrote:
    Yes the code always starts with an alphabetic character and always ends before the underscore character and the prefix is always digital.

    And Yes to the second comment WRT 1 to many relationship.

    WRT the duplicates I want the info displayed even if there is no matching printpdf

    You talk a LEFT OUTER JOIN, then:

    See the example below (the statement are just to reproduce the paintings, just use the last query):

    WITH xpq_log AS
    (
       SELECT '0499SYS003A_06' log_hdr FROM DUAL UNION ALL
       SELECT '0612PV410W1_06' log_hdr FROM DUAL UNION ALL
       SELECT '0609IN002C_06' log_hdr FROM DUAL UNION ALL
       SELECT '2201PA100D1_30' log_hdr FROM DUAL
    )
    , printpdf AS
    (
       SELECT 'SYS003A' pdf_report, 'STOCK FILE PURGE - PRINT WH CONTROL' description FROM DUAL UNION ALL
       SELECT 'PV410W1' pdf_report, 'Description 2' description FROM DUAL
    )
    SELECT a.log_hdr, REGEXP_SUBSTR (a.log_hdr, '[[:alpha:]][^_]*') AS pdf_report
         , b.description
      FROM xpq_log a LEFT OUTER JOIN printpdf b
           ON pdf_report = REGEXP_SUBSTR (a.log_hdr, '[[:alpha:]][^_]*');
    
    Output:
    LOG_HDR        PDF_REPORT     DESCRIPTION
    -------------- -------------- -----------------------------------
    0499SYS003A_06 SYS003A        STOCK FILE PURGE - PRINT WH CONTROL
    0612PV410W1_06 PV410W1        Description 2
    2201PA100D1_30 PA100D1
    0609IN002C_06  IN002C                                           
    

    Kind regards.
    Al

  • Center the column headings in obiee 10g

    Hello

    I need to center the column headers for all columns in a report.
    For the rest of the reports, it should be by default.
    Is it possible to align the column focused without going through the column headers and modify the properties...


    Thanks in advance...
    Sankat.

    Hello

    You can do one way.

    The option called - import formatting of another analysis.

    How to proceed:

    Create a column and changes of position of column format and save this report then GO--> your main report--> tab Select results--> below option called set import in form, another analytical use, this option will apply in your report, format column changes all the columns.

    Note: Have you tried the "formatting of another analysis to import" button in the upper left corner of the view of layout? Make all your changes of format in an analysis. Then when everything is finalized, import them in other analyses.

    Hope this helps

    Thank you
    Satya

  • Print the name of the column by using the query

    Hello

    I need to print the column name and the number of number of columns i.e. columns in the query below. Please suggest me how to print

    SELECT
    E.EMPNO,
    E.ENAME,
    D.DEPTNO
    FROM EMP E,.
    D DEP.
    WHERE
    E.DEPTNO = D.DEPTNO

    Please suggest

    Thank you
    Sudhir

    Re: get the title of column
    http://saubbane.blogspot.com/2011/01/how-to-find-column-count-of-query.html
    Re: writing data from table to file

    Published by: Johan July 5, 2011 16:28

  • Need help on the essential "UPDATE" of the data in the table...

    Dear experts,
    
    Need Advice...
    
    I have one table in which i have 200,000 records, now in this table for each record i have to update quantity figures...
    
    To perform such bulk update i am using the following method...
    
    *1. At first i create TYPE*
    
         CREATE OR REPLACE TYPE T_OBJ_GET_QTY (--);
    
    *2. Create TYPE as table of object created in step 1*
     
         CREATE OR REPLACE TYPE T_GET_TEST_QTY 
         AS TABLE OF T_OBJ_GET_QTY; 
    
    *3. assign object type to the variable*
    
         p_get_test_qty T_GET_TEST_QTY; (Created in step 2).
    
    *4. now i write the cursor using type created in step 1...*
    
          cursor c_upd_qty as
           select T_OBJ_GET_QTY( col1, col2)
           from v_view;
    
    *5. open cursor and fetch into variable created in step 3...*
          
           open c_upd_qty;
           loop
               fetch bulk collect into  p_get_test_qty limit 1000;
               --perfom update now..
                 forall rec_upd_qty in 1..p_get_test_qty.count
                     update table t1 
                     set c1 = treat(p_get_test_qty(rec_upd_qty) as T_OBJ_GET_QTY).c1
    
                    exit when notfound;
        end loop;
        close c1;
    
    
    Kindly let me if this correct way to perform bulk update of the data, or is there any better way to do so...
    Please share your inputs...
    
    I hope i am clear in asking my question
    
    Regards
    nic
    Published by: W Nicloei on May 27, 2011 01:10

    Published by: W Nicloei on May 27, 2011 01:36

    Published by: W Nicloei on May 27, 2011 01:45

    Ahh, ok.

    And a row of the view corresponds to a line in the table that you want to update?
    I guess that your update statement would have a WHERE clause identifies the row to be updated, right?

    If so, why not "merge" the view in the table, using the MERGE Oracle statement?

    Something like:

    MERGE
         INTO  target_table tgt
         USING source_view vw
         ON  ( vw.key-column(s) = tgt.key-column(s) )
      WHEN MATCHED
      THEN
         UPDATE
         SET   tgt.c1 = vw.c1
    /
    

    I still don't see why you would need a pl/sql program that retrieves all rows from the database in memory program and then writes all back in the database.

  • Need to check the update of the BIOS Portege R830 without Intel TXT

    Hello Forum,

    I have exactly the same problem as described here 2 years ago:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=65519

    I need to update my BIOS, but I can't because the update of the BIOS told me that the Intel TXT is enabled.
    Unfortunately I can not disable it in my bios. Its just not selectable. The 'cursor' jumping just above him.
    I can only 'hide' which does not help.
    I have the same thing for the VT - x and VT - d setting in the BIOS. Is not selectable or editable as well.

    TPM is not active if...
    I installed after infineon and he tells me I need to enable the TPM in the bios to use. :-(

    I have a very old Bios Version 3.1 and I read in the changelog that there are a lot of TPM in v 3.4 and 3.5 related changes...

    In any case...
    A P007Dv360A_EC77V140.zip file has been transferred to 2shared.com who fixed it at the time, a user named Paolo30.
    Unfortunately, that this file has been deleted on 2shared.com

    can someone please provide this file (or an update of the bios later) which resolves this issue?
    Thanks in advance.

    Portégé R830 - 10 p belongs to the series of PT321 if you need the BIOS for Portege R830 PT321

    You can download older versions of pages driver Toshiba BIOS.
    For example: http://www.toshiba-asia.com/sg/support/drivers

    On this page of Toshiba Asia I could find all the BIOS for this Portege model.

Maybe you are looking for