I need to view my "BO report SQL" in database rather from web through edit query. How can I achieve this? Please help me out and provide me the steps.
It may be in BO repositry OR
I need to view my "BO report SQL" in database rather from web through edit query. How can I achieve this? Please help me out and provide me the steps.
It may be in BO repositry OR
Assuming you're using SQL Server (most if not all DBMS platforms have similar facilities) you can use the profiler tool and run a trace that captures the SQL. Interesting events to capture are 'SQL Statement Complete' and 'Showplan XML' (if you want to see the query plan).
You will get a lot of irrelevent rubbish in the traces, so you may wish to filter the trace. To do this you can add a clause 'Application Name=foo' to the connection string used by the Business Objects server, and use that to filter the trace on the 'ApplicationName' column.