COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => Topic started by: Maple on 30 May 2007 09:34:38 AM

Title: : Performance issue
Post by: Maple on 30 May 2007 09:34:38 AM
We are having performance issue with cognos 8.1. when we query data directly from the database then the responce is really fast but when we run the report from the query studio or from the Report studio then the responce is really slow...is there any clues ...
Title: Re: : Performance issue
Post by: COGNOiSe administrator on 30 May 2007 10:29:53 AM
Which database? What type of outputs?
Title: Re: : Performance issue
Post by: Maple on 30 May 2007 10:44:52 AM
SQL server 2000
Report out put
Title: Re: : Performance issue
Post by: COGNOiSe administrator on 30 May 2007 10:46:53 AM
HTML/ PDF / Excel?
Title: Re: : Performance issue
Post by: Maple on 30 May 2007 11:01:47 AM
HTML and PDF
Title: Re: : Performance issue
Post by: goose on 30 May 2007 11:24:02 AM
You will probery find the sql that you execute and the sql generated by Cognos is different. In report studio check the sql  for the query subject or you can always run a trace on sql server. Things to look out for is when cognos runs multiple queries and then joins them localy.
Title: Re: : Performance issue
Post by: COGNOiSe administrator on 30 May 2007 12:20:25 PM
Try to force your queries to Database Only. If they can't run, that means your data is processed locally. Also, processing PDFs require alot of resources.
Title: Re: : Performance issue
Post by: Maple on 30 May 2007 12:47:18 PM
This is not only the PDF issue...reports are also slow when they rendering into HTML
What do u mean by 'Force your queries to database only'?

Title: Re: : Performance issue
Post by: larsonr on 30 May 2007 08:30:41 PM
Once you are in a query in query explorer, you have the option of telling it to run locally or database only (left side of the screen).

Do you have access to the database to see what queries are being hit against it?  Do you have the audit tables running for Cognos?

We ran into the same problem in that better reports can be written if you understand the SQL being generated by Cognos.

Ex. We use Oracle, so we used Enterprise Manager (before loading the audit tables) to see what SQL was being sent to the database from the report.  With the audit tables, you can capture the native sql being generated (same effect as using enterprise manager).  You'll be surprised what Report Studio will generate if you're not careful in your Query construction or Framework modeling.

If you cannot find the solution on your own as to why the performance is lacking, try working with your DBA to understand what the reports are generating against the database.  Also, are you getting data from multiple databases in one query?  That may also be presenting some issues on how it was modeled and queried.  Just some thoughts.
Title: Re: : Performance issue
Post by: Maple on 31 May 2007 09:51:56 AM
hi larsonr,

Yes, you are right. I'll definitely take a look...

Thanks,

Title: Re: : Performance issue
Post by: goose on 31 May 2007 02:22:19 PM
A quick an dirty way to get the sql from inside RS is to:

1. Click Tools --> Validate with options

2. Select Information as the validation level, click ok

3. Look for a UDA-QOS-0004 Native SQL being executed: message that is the sql that get passd to the db

Hope this helps

Title: Re: : Performance issue
Post by: MDXpressor on 31 May 2007 07:28:11 PM
The best way to get at the SQL/MDX is to click on the Query, then in the properties pane, there is a line to show the Generated SQL/MDX.  You will be able to toggle it back and forth between Native and Cognos versions of the languages.

Further to the performance issues, many performance based bugs were addressed in 8.2, so if all else fails, a move may be in order.
Title: Re: : Performance issue
Post by: larsonr on 01 Jun 2007 08:01:07 AM
I will concur, 8.2 did address many issues we were having against oracle and its sql generation.  It may definitely be of an advantage to think about using 8.2.
Title: Re: : Performance issue
Post by: Maple on 05 Jun 2007 02:40:58 PM
hey larsonr,

Well, I got the code for my report from the report studio and i ran this code from the  SQL Editor ....its was quite faster then the report studio's out put....

Any clues?
Title: Re: : Performance issue
Post by: blom0344 on 06 Jun 2007 06:50:27 AM
SQL tools are often configurated to fetch a partial set (which may give you false results as to performance). A better check is to run a SQL statement that actually counts the output like:

SELECT COUNT(TEMP.*)
FROM
(------- [SQL STATEMENT]-----------------) TEMP

and see how fast this is.