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 / nitesh
SELECT TABNAME FROM SYSCAT.TABLES WHERE OWNER='<ownername>
eg. SELECT TABNAME FROM SYSCAT.TABLES WHERE OWNER='NITESH'
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How can the firstname and the lastname from the emp table be concatenated to generate complete names?
What is precompiler in db2?
What is the difference between nvl and coalesce?
How can the duplicate values be eliminated from db2 select?
What are the contents of a dclmgen?
What is universal database?
What is the difference between spufi and qmf?
Is ibm db2 free?
What is the difference between cursor stability and repeatable read isolation levels?
What is db2 and what is the use of db2 optimizer?
Which component is responsible for processing sql statements and selecting access paths?
Can we insert update delete in view?
How to connect to db2 database from windows command line?
What os does db2 run on?
While unloading huge amount of data from table. Suddenly job failed some error. Imagine 1M data unloading, In that 90% data unloaded only 10% left, So if want to unload the rest 10% what needs to be done? Whether do i need to start from top or anything ?