Cognos 8 Query to find all Report and Column Names
问题 I want to query the meta data in Cognos 8 to find all report and column names. If possible, I'd like to include the column definitions. Can I do this using a Cognos report or do I need to query some repository? Thanks. 回答1: You can select a list of reports from the content store with the following query: SELECT CMOBJNAMES_BASE.NAME AS ObjName, CMOBJECTS.PCMID, CMCLASSES.NAME AS ClassName, CMOBJPROPS7.spec FROM CMOBJECTS JOIN CMOBJNAMES_BASE ON CMOBJECTS.CMID = CMOBJNAMES_BASE.CMID JOIN