Viewing 10 posts - 1 through 10 (of 10 total)
actually instead of storing logins in a table I have queried active directory & based on the credentials stored in it, the parameters could be driven. Will be happy to...
April 27, 2011 at 10:46 am
you will need 2 parameters like
@operator and add none query values for the the operator drop down
1. >; 2. <.......etc
then create another parameter for quantity ex. @qty this too...
August 25, 2010 at 12:51 pm
this will give you exactly what you want
DECLARE @dt AS datetime, @strdt AS varchar(25)
SET @dt = getdate()
SET @strdt = convert(varchar, @dt,0)
SELECT ltrim(right(@strdt,Charindex( ' ',reverse(@strdt)))...
July 30, 2010 at 11:49 am
For Reportserver check the ASP.net Config option in IIS Console. Also my suggestion is not allow anonymous access leave Window integrated security on. Since you want only those users who...
March 17, 2010 at 12:17 pm
No sorry you can control how the matrix expands (i.e if you have multiple columns - LTR/RTL) but now the position. For switching positions you are better off using table.
March 17, 2010 at 11:35 am
the service Identity is used to connect the report manager to its DB & fetch catalogs for display. but when you run the report the Data Sources uses the identity...
March 17, 2010 at 8:58 am
Did u initialize the services with proper .snk
March 17, 2010 at 8:50 am
when I did a simmillar thing I encased all these datasets that build the "body" of the bill into a List Tool and this allowed repeating fields based on conditions.
March 17, 2010 at 8:48 am
Instead of .ToString try CStr(<parameter>)
March 17, 2010 at 8:43 am
say your query returns data like so
date Groups
------- -------
03/17/10 A
03/17/10...
March 17, 2010 at 8:36 am
Viewing 10 posts - 1 through 10 (of 10 total)