drill down
The act of navigating from one level of data to a more detailed level. The levels are set by the
structure of the data.
drill up
The act of navigating from one level of data to a less detailed level. The levels are set by the
structure of the data.
package
A subset of a model, which can be the whole model, to be made available to the Cognos 8 server.
publish
To expose all or part of a Framework Manager model via a package to the Cognos 8 server, so
that Cognos BI Users can use it to create reports and other content.
query
A specification for a set of data to retrieve from a data source. A report specification can contain
one or more queries.
The type of object created and edited by Query Studio. A query is a subtype of report.
query item
A representation of a column of data in a data source. It contains a reference to a database
column, a reference to another query item, or a calculation. Query items may appear in a model or
in a report.
query subject
A query subject can be defined as a collection of references to items of other query subjects, or expressed as an SQL expression that represents selected query items. These query items will be retrieved from objects such as tables, synonyms,views, and so on. Query subjects contain query items.
report
A set of data deliberately laid out to communicate business information. Depending on the
context, "report" may refer to report specification or report output.
While designing package you must avoid ….
· Outer joins à may lead to performance issues, generally not required for data warehouse.
· Fact to fact table joins à queries take longer time to run and may lead to cross product join/Cartesian product (wrong output). Union of queries is preferred over fact to fact join.
While designing the reports you must avoid….
· ReportNet Union à gives poor performance, instead implement it in underlying SQL in report itself.
· Unnecessary joins à Do not include columns from dimension tables if it is present in fact table. This improves report performance (e.g., if a fiscal year col. is available in fact table, then don’t use calendar dimension table)