Oracle stored procedures that count the number of records in all tables under Oracle's current user

Source: Internet
Author: User
Create or Replace procedure Tj_data  
  is--variable v_tablename VARCHAR2 for the current stored procedure
  ;
  V_sql   varchar2 ();
  V_count integer;
  --Gets all the tables in the current database
  CURSOR Table_loop is SELECT table_name from user_tables;

  BEGIN
    --Opens the cursor open
    table_loop;
      LOOP
        FETCH table_loop into V_tablename;
          EXIT when Table_loop%notfound;
               V_sql:= ' Select COUNT (1) from ' | | V_tablename;
               Execute immediate v_sql into V_count;
               Dbms_output.put_line (v_tablename| | | V_count);
      End LOOP;
     Close Table_loop;
End Tj_data;
Run the stored procedure using Pl/sql, and you can see the statistical results under the DBMS Output window. (The value of the buffer size appropriate to a little bit)
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.