510 likes | 689 Vues
Voyager Analyzer. Leveraging Sustainable Staff Engagement Michael Frisbie ~ mfrisbie@jccc.edu Library Specialist Johnson County Community College. Session Contents Analyzer Basics Creating Reports Making It Work. Analyzer is Cognos 8 Presentation Layer Query Studio Report Studio.
E N D
Voyager Analyzer Leveraging Sustainable Staff Engagement Michael Frisbie ~ mfrisbie@jccc.edu Library Specialist Johnson County Community College
Session Contents • Analyzer Basics • Creating Reports • Making It Work
Analyzer is Cognos 8 • Presentation Layer • Query Studio • Report Studio
A web-based reporting tool; Internet Explorer works best, mostly.
You still have to understand the database • Relational database • Data is entered only once • Data is stored in independent tables • Joined, i.e. related, together
Converting MS Access SQL to Analyzer; copy and paste • SQL changes to make • Delete semicolon • Change double quotes to single quotes • Remove prompts • Remove sorting SELECT FISCAL_PERIOD.FISCAL_PERIOD_NAME, LEDGER.LEDGER_NAME, FUND.FUND_CODE, BIB_TEXT.TITLE_BRIEF, INVOICE_LINE_ITEM.UNIT_PRICE, INVOICE_LINE_ITEM.LINE_PRICE, INVOICE_LINE_ITEM.QUANTITY, MFHD_MASTER.DISPLAY_CALL_NO FROM INVOICE_FUNDS, ((((((BIB_TEXT INNER JOIN ((INVOICE INNER JOIN INVOICE_LINE_ITEM ON INVOICE.INVOICE_ID = INVOICE_LINE_ITEM.INVOICE_ID) INNER JOIN LINE_ITEM ON INVOICE_LINE_ITEM.LINE_ITEM_ID = LINE_ITEM.LINE_ITEM_ID) ON BIB_TEXT.BIB_ID = LINE_ITEM.BIB_ID) INNER JOIN INVOICE_LINE_ITEM_FUNDS ON INVOICE_LINE_ITEM.INV_LINE_ITEM_ID = INVOICE_LINE_ITEM_FUNDS.INV_LINE_ITEM_ID) INNER JOIN LEDGER ON INVOICE_LINE_ITEM_FUNDS.LEDGER_ID = LEDGER.LEDGER_ID) INNER JOIN FUND ON INVOICE_LINE_ITEM_FUNDS.FUND_ID = FUND.FUND_ID) INNER JOIN FISCAL_PERIOD ON LEDGER.FISCAL_YEAR_ID = FISCAL_PERIOD.FISCAL_PERIOD_ID) INNER JOIN BIB_MFHD ON BIB_TEXT.BIB_ID = BIB_MFHD.BIB_ID) INNER JOIN MFHD_MASTER ON BIB_MFHD.MFHD_ID = MFHD_MASTER.MFHD_ID