If 100 tables are there in user_tables.I want to find in which
table zero records are there with table name.Is it possible?
Answers were Sorted based on User's Feedback
Answer / kavitha
select table_name,num_rows from user_tables
where num_rows = 0
Is This Answer Correct ? | 24 Yes | 4 No |
Answer / arpan
Use the column "blocks" from the view user_tables. eg:
select * from user_tables u where u.blocks = 0;
Is This Answer Correct ? | 5 Yes | 6 No |
When you have to use a default "rollback to" savepoint of plvlog?
What are the pre requisites?
Name three sql operations that perform a sort.
What is a recursive stored procedure?
How do I run a query in pl sql developer?
What is the maximum number of triggers, you can apply on a single table?
What is the basic structure of PL/SQL ?
I want to execute a piece of code before calling a procedure. How to achieve it?
Can you do multiple joins in sql?
How we can create a table in pl/sql block. Insert records into it? Is it possible by some procedure or function? Please give example?
what is isam? : Sql dba
Why do we need a foreign key?