cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

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.

0 Likes
View Entire Topic
Former Member
0 Likes

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

Former Member
0 Likes

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

Former Member
0 Likes

How many rows are retuned via Webi?


=NumberOfRows([Query 1])

Former Member
0 Likes

Where do I see the number of rows?

Former Member
0 Likes

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 Likes

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

Former Member
0 Likes

No. It's the query name.

Former Member
0 Likes

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 Likes

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

Former Member
0 Likes

create the variable in designer?

Former Member
0 Likes

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 Member
0 Likes

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 Likes

That didn't seem to make a difference

Former Member
0 Likes

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