Viewing 15 posts - 961 through 975 (of 1,518 total)
I assume you want something like this?
+ item1
+ item2
+ item3
- item4
item41
item42
item43
item44
+ item5
+ item6
+ item7
That is, you want to...
August 29, 2008 at 8:47 am
Sorry, I don't follow. Have you specified your parameter in the Report Parameters menu?
August 29, 2008 at 8:34 am
neneco56 (8/29/2008)
BUTThe report itself on SSRS 2005 it's not taking the parameter now.
so How I fix that? any idea?
Can you elaborate? What is the error you get?
August 29, 2008 at 8:21 am
I haven't tried this before, but have you specified the ItemPath parameter under Report Parameters in the report?
That would be a good place to start.
August 29, 2008 at 6:18 am
In the Data Tab enter something like this:
="EXEC dbo.rpt_MyProcName @param=" & Parameters!MyParam.Value
Command type should be text.
Then in your layout, you can set your parameter, MyParam, in the Action property of...
August 28, 2008 at 2:37 pm
Thanks both for your input, it's much appreciated.
August 27, 2008 at 2:53 pm
GSquared (8/27/2008)
August 27, 2008 at 2:49 pm
GilaMonster (8/27/2008)
The following test was done on SQL Server 2005 Developer edition, SP2
...
Thanks for doing the test, I got the same results running it on my machine, version 9.0.3054 Dev...
August 27, 2008 at 11:54 am
GSquared (8/27/2008)
Because of the B-tree nature of indexes, a non-clustered index should do just fine for...
August 27, 2008 at 11:14 am
Marios Philippopoulos (8/27/2008)
"At present, the missing index information is generated only for queries that meet these conditions:
- The query must have a predicate (ie. a WHERE clause) referencing a column...
August 27, 2008 at 11:03 am
GilaMonster (8/27/2008)
Marios Philippopoulos (8/27/2008)
One caveat is that indexes used in places other than in the WHERE clause of queries are not included in the DMVs, so, for example, indexes needed...
August 27, 2008 at 10:58 am
GilaMonster (8/27/2008)
What's the selectivity of TN? How many...
August 27, 2008 at 10:48 am
GSquared (8/27/2008)
create clustered index CIX_Table on dbo.Table (CID, IDt)
But, as always, things like inserts, updates, deletes, and...
August 27, 2008 at 10:40 am
G Bryant McClellan (8/27/2008)
August 27, 2008 at 10:28 am
rbarryyoung (8/25/2008)
Why not explicitly run statistics on the tables before you start your transaction?
For some reason, the following query also hangs. When I abort it, I get this error 3...
August 25, 2008 at 3:10 pm
Viewing 15 posts - 961 through 975 (of 1,518 total)