>>Script Language and Platform: Oracle
This script will get the number of rows per table in the current schema.
Author: Shahid.Hafeez
CREATE OR REPLACE FUNCTION Row_Count(Tbl_Name IN CHAR)
RETURN NUMBER
AS
RowCount NUMBER(11);
Stmnt VARCHAR(2000);
BEGIN
Stmnt := ‘SELECT count(*) FROM :tbl’ USING Tbl_Name;
EXECUTE IMMEDIATE Stmnt INTO RowCount ;
RETURN(RowCount);
END;
/
select table_name,row_count(table_name) from tabs
Disclaimer: We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…
Disclaimer Continued
Back to Database Journal Home