Viewing 15 posts - 1 through 15 (of 47 total)
I guess this will return the same set of records every time...
April 14, 2011 at 12:46 am
BOL (2005) Says:
TRUNCATE_ONLY option with BACKUP, Removes the inactive part of the log without making a backup copy of it and truncates the log by discarding all but the active...
November 16, 2009 at 3:36 am
It really depends on the datatype in question, the answer options should be more elaborate...
July 24, 2009 at 5:26 am
If I understand the requirement, I guess you have to use the Parameters of the type 'Internal' and set it's value from the Dataset1 > Value Field and then use...
May 13, 2009 at 3:47 am
Why dont you create a Stored Procedure/Sql that accesses these two databases with the fully qualified name) and then use this Stored Procedure in your datasource?
April 10, 2009 at 1:19 am
Yes this has been my requirement as well however once you declare a parameter to 'Allow NULL' in SSRS, the check-box gets added along side it while running the...
February 4, 2009 at 5:24 am
If you are talking about the table footer row then it definitely works.(table that is showing the data and has the dataset associated with it)
Are you putting the particular field...
January 2, 2009 at 5:45 am
The dataset SQL for the third parameter will decide that upon selecting second parameter, the third parameter should get filtered i.e. the SQL for the thrid parameter needs to have...
January 2, 2009 at 5:25 am
You can use the CTE -
with CTE1(cnt,unitid,productId) as
(select COUNT(*) AS cnt, UnitID,productId from Products group by UnitID,productId)
select productId,unitId from CTE1 where cnt > 1
November 25, 2008 at 5:55 am
I dont think you can customize the display of a parameter i.e. height/width.
In order to filter the long dropdown values starting with same letter, you can add an additional parameter...
November 20, 2008 at 6:03 am
Create separate SQLs for these parameter datasets (e.g. The SQL for a parameter will have distinct values for a particular column to be used as this parameter and the same...
November 20, 2008 at 5:58 am
The easiest way you can opt for is to create separate dataset/s (based on your main dataset) for the parameter dropdown list/s.
November 18, 2008 at 5:31 am
Not sure if I am getting your question right...
but it seems that you have 5 different columns having value 2,
but the issue is the column that is the Primary Key;...
November 12, 2008 at 11:32 pm
October 17, 2008 at 5:01 am
The link is about the Date Parameter and the question is for a dropdown parameter. Yes the refresh issue/idea is common though.
The drop down paramter page refresh would occur if...
October 17, 2008 at 4:29 am
Viewing 15 posts - 1 through 15 (of 47 total)