IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Need to find tables containing two columns on the same table


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vini_srcna

Active User


Joined: 26 May 2005
Posts: 178
Location: Copenhagen, Denmark

PostPosted: Wed Sep 12, 2007 8:22 pm
Reply with quote

Hi ALL,

I need to find the tables which contain the columns KNID & BRID on the same table. I queried the catalog table SYSIBM.SYSCOLUMNS and because of my poor knowledge in SQL i couldnt find the table containing both the columns on the same table. I mean i couldnt write the sql query for that :)

I know we can find the tables containing on of theses columns. Do anyone have idea about this..?
Back to top
View user's profile Send private message
vini_srcna

Active User


Joined: 26 May 2005
Posts: 178
Location: Copenhagen, Denmark

PostPosted: Wed Sep 12, 2007 8:36 pm
Reply with quote

SELECT *
FROM "SYSIBM".SYSCOLUMNS --
WHERE NAME IN ('KNID','BRID')
ORDER BY TBNAME,TBCREATOR

This is the best query i can write .........
Back to top
View user's profile Send private message
Alan Voss

New User


Joined: 29 Nov 2006
Posts: 32
Location: Jacksonville, FL

PostPosted: Wed Sep 12, 2007 10:42 pm
Reply with quote

Try this:
Code:

select tbcreator,tbname,
         count(*) as trows
   from sysibm.syscolumns
   where name in ('KNID','BRID')
   group by TBCREATOR,TBNAME
   having count(*) = 2;
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts Remote Unload of CLOB Columns DB2 6
No new posts Multiple table unload using INZUTILB DB2 2
Search our Forums:

Back to Top