Viewing 15 posts - 1 through 15 (of 32 total)
why not use a temp table with an index instead of using a subquery
September 16, 2010 at 5:38 am
I found out the problem .. !!!!!!
The startup parameters were not set for the SQl2008 instance. So i copied the the same from the other instance running and pasted for...
December 10, 2009 at 5:45 am
Hi,
Yes the server has microsoft Forefront Client Security Antivirus installed. Could that be an issue??
Thanks
December 9, 2009 at 11:56 pm
isnt this enough?
DECLARE @AA AS varchar(10)
SET @AA = convert(varchar(10), 33/37.0)
select @AA
as both numbers are integers the output also would be integer. so either one number can be converted to decimal...
October 21, 2009 at 2:52 am
just another method..
select sum(Total),case when RowNum<4 then Category else 'Others' end from (
Select count(1) as Total,row_number() over (order by count(1) desc) as RowNum,
Category from manager group...
October 20, 2009 at 6:21 am
October 9, 2009 at 4:13 am
One more solution in Single query.
Select * from table_1 where [Class] in
(case when @type='Auto' then 'MD' else 'ID' end,
case when @type='Auto' then 'RD' else 'IW' end,
case when...
October 9, 2009 at 1:04 am
isnt it " Where valuedate '20070731' and Valudate '20070724' ?
or i didnt get the question correct
September 18, 2009 at 6:14 am
The deployed reports can either be given subscription or it can be embedded in your website page for viewing.
Subscription is done from the reports server UI where in report properties...
September 18, 2009 at 12:25 am
seems the datatset name also was by default set as "Test" when it was created and the "Test"dataset name is hardcoded in some expression as the scope parameter or something?
September 10, 2009 at 4:58 am
Create datasets for each parameter values with each dataset query is filtered with the value from the other parameter value except country.
for eg
create sate dataset with query like
select...
September 10, 2009 at 4:47 am
can you tell the error ?..
The reason could be many like
the paramaeter datatypes in the sub report and the value being passed are not same types
Check if...
September 10, 2009 at 3:42 am
for statewise color
Opne table row Properties-- BackGround color --Expression -- =iif(state="CA" ,"red" ,iif(state="NY" ,"blue" ,"green"))
for alternate row color
Opne table row Properties-- BackGround color --Expression -- =iif(iif(RowNumber("[dataset]") mod 2...
September 7, 2009 at 4:31 am
Please correct if i am wrong. both select statements returns same number of fields and the names of the fields are also the same but the no of records would...
August 27, 2009 at 4:38 am
Try this
In Visual Studio – in an aspx page – Add a Microsoft Reportviewer control from the tools menu-Reporting tab.
Then add this code on any button click in the...
August 13, 2009 at 1:39 am
Viewing 15 posts - 1 through 15 (of 32 total)