Page 1 of 1

Table Name for Table details

Posted: 03 Sep 2013 7:17
by vamsikumar
Hi All,

Can someone help me by providing the table name in database which contains details of all control M tables which exists in desktop with respective user daily.

Thanks in Advance!
Vamsi Kumar

Posted: 09 Sep 2013 12:10
by jobschubse
hi,

i think it is the DEF_TABLES_AND_JOBS table.

Try this ....
select DATA_CENTER,APPLICATION,JOB_NAME,user_daily from DEF_TABLES_AND_JOBS where user_daily = 'SYSTEM';

regards
manfred

Posted: 11 Sep 2013 4:24
by gglau
When the display is in table format, you can export the table to Excel or CSV. Simply go to Table Manager to export the list, and manipulate data within Excel.

Posted: 12 Sep 2013 7:59
by vamsikumar
Thanks everyone for your responses.

But I was not able to find the above mentioned table in my database.

After my analysis, I got the table name and Finally used below query.

select SCHEDTAB, DAILYNAME from CMS_SCHEDT;

Thanks!!!