I need to view the number of tables existing under one
particular Owner. Is it possible? If so, pl give the SQL
query for this?
Answer Posted / satish
select count(*) from sysibm.systables where creator='owner'
select * from sysibm.systables
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How is deadlock resolved?
What happens in bind step in a db2 program?
What is release/acquire in bind?
What type of database is db2?
Is it possible to create an Instance in DB2 using DB2 Control Center ?
What is null in db2?
What is a bind card?
What is phantom read in db2?
Name the various locking levels available?
What is innodb buffer pool?
What is null value in db2?
If I have a view which is a join of two or more tables, can this view be updateable?
What is a db2 schema?
Define predicate?
by using cursors , we can access particular records from the table based on some condition, i want to delete those selected records, how can we write a query for this in the program?