Oracle cursors-iterates through the data in the table (table name) and executes

Source: Internet
Author: User

The Oralce table contains a field that stores the table name, queries all the table names in the table (that is, the table name result set), and executes the result set from the table name result set:

DeclareV_ccountvarchar2( -); --defining a cursor variable  cursorC_job is  --query all table names in this table    SelectTableName fromTbname; C_row C_job%RowType;begin  --cyclic pending data, which is the result set found above   forC_rowinchC_job Loop---Executes a statement from the table name of the loop and inserts    ExecuteImmediate'Select COUNT (1) from' ||C_row.tablename intoV_ccount; Insert  intoTb_count (tbname2, Ccount)Values(C_row.tablename, V_ccount); --Dbms_output.put_line (v_ccount);  EndLoop--End of Cycle  Commit;End;

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.