Oracle Plsql Parameters

Source: Internet
Author: User

Declare
Inst_name varchar2 (100);
Cursor Mycur is
SELECT * from Tran_forward t where t.instrument_type_id= ' 3010 ';
Query_row Tran_forward%rowtype;
Begin
Open mycur; --Open cursor
Loop
Fetch mycur into Query_row; --Place the record indicated by the cursor in the variable
Select T.instrument_type_name to Inst_name from Bas_instrument_type t where T.instrument_type_id=query_ row.instrument_type_id;
Exit when (Mycur%notfound); --Exits the loop when the cursor does not point to a row
Dbms_output.put_line (' seq has: ' | | query_row.forward_id | | ' Records ');
Execute immediate
' INSERT INTO tran_sumary_infomation
(ID,
TRANSACTION_ID,
Tran_type_name,
Tran_link_url,
Tran_entity,
TRAN_TYPE_ID)
VALUES (: 1,:2,:3,:4,:5,:6) '
Using hibernate_sequence.nextval,query_row.forward_id, Inst_name, '/tran/tranforwardedit.aspx ', ' TranForward ', query_row.instrument_type_id;
Commit
End Loop;
Close mycur;
End

Oracle Plsql Parameters

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.