Nov 26, 2012 at 9:32 PM
Edited Nov 28, 2012 at 7:55 PM
|
Hello!
I have dimension with millions of items, and need to have quick search mechanism.
I use queries like this (to fill first page with top 100 results):
select
{ } on columns,
SubSet (
ASSP.Like (
[Accounts].[Account].Members
,"%SearchExpression%"
,[Accounts].[Account].CurrentMember.Name
,true
)
,0,100
) dimension properties member_unique_name
on rows
from [MyCubeName]
The query for the first page and queries for other pages elapsed for the same time.
I have a suggestion to add 2 optional paremeters to StringFilters functions to avoid SubSet wrapping:
1. Start - the position of the first tuple to be returned.
2. Count - the number of tuples to be returned.
It will reduce the execution time for first pages.
Can I wait such a release?
Or should I do it myself in codeplex? If so, please, tell me what to do to became a developer of this solution?
Or should I do it myself with the help of redgate reflector?
Thank you!
|