cancel
Showing results for 
Search instead for 
Did you mean: 

Web intelligence not retrieving all the data

Former Member
0 Kudos

We created a new Web intelligence document base on a universe we created using designer and the SQL generated from the web intelligence document retrieves much more data than the report. Are there limitations on how many rows are retrieved? I have the "limit size for result set" unchecked in designer.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Graham,

Could it be that the query is returning 200,000 rows and your Webi report is aggregating or grouping the measure by the dimensional objects in the report? Making the number of lines in the report 1000.

Mike

amrsalem1983
Active Contributor
0 Kudos

i've a small idea after all those posts,

if you have a measure like sales, or budget or watever,

get the total, using SUM in the webi report

and get the total using some aggregate function in the SQL, and see if there is any difference.

good luck

Amr

Former Member
0 Kudos

Is there a limit on the number of rows returned on the query level?

Former Member
0 Kudos

Max rows and max time are both enchecked at the query level

Former Member
0 Kudos

How many rows are retuned via Webi?


=NumberOfRows([Query 1])

Former Member
0 Kudos

Where do I see the number of rows?

Former Member
0 Kudos

Create a variable in the Report.

For example,


x=NumberOfRows([Query 1])

Where

[Query 1]

is the name of the data provider. (The square brackets are required.)

x contains the number of rows.

Former Member
0 Kudos

Is the data provider the Universe name that we are using to build the Webi doc?

Former Member
0 Kudos

No. It's the query name.

Former Member
0 Kudos

I get a WIS 10006 error when I try and insert a free standing formula cell with this:

=NumberOfRows([Drug Utilization-Test])

Former Member
0 Kudos

You can't use more than one query (name) with this function. Try creating one variable for each query.

Former Member
0 Kudos

create the variable in designer?

Former Member
0 Kudos

The NumberOfRows() is a report level function.

If you have 2 queries called Drug Utilization and Test, create 2 variables which return the number of rows in each query.

i.e.


     x=NumberOfRows([Drug Utilization]) and
     y=NumberOfRows([Test]) 

That said, I believe Webi (appears to be) returning fewer rows because because of the way Webi aggregates data.

How many rows does an export to Excel give?

former_member212749
Active Participant
0 Kudos

Hi Graham ,

Drag and Drop a Column in the Report which is not a Measure should be a dimension and Hide that perticular Object from the report

This should repeat the number of Rows.

Regards

Prashant

Former Member
0 Kudos

That didn't seem to make a difference

Former Member
0 Kudos

It looks like we are only getting around 1000 lines, the SQL returns over 200,000 records.