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?

Answers were Sorted based on User's Feedback



I need to view the number of tables existing under one particular Owner. Is it possible? If so, pl..

Answer / s

SELECT count(*) from SYSIBM.SYSTABLES
WHERE CREATOR = 'OWNER' ;

Is This Answer Correct ?    4 Yes 0 No

I need to view the number of tables existing under one particular Owner. Is it possible? If so, pl..

Answer / satish

select count(*) from sysibm.systables where creator='owner'

select * from sysibm.systables

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More DB2 Interview Questions

What is an intent lock?

3 Answers  


Is Cursor exicutable ?

3 Answers   TetraSoft,


What is db2 plan table?

0 Answers  


How to find schema of a table in db2?

0 Answers  


What is a predicate?

1 Answers  






What is cursor in dbms?

0 Answers  


When is the results table for the query in a DECLARE CURSOR statement created?

5 Answers  


What is clone table?

0 Answers  


Explain about dbrm.

0 Answers  


What is read-only cursor?

1 Answers  


What does db2 blu stand for?

0 Answers  


What is an alias?

3 Answers  


Categories