Viewing 15 posts - 91 through 105 (of 249 total)
komal145 (6/13/2012)
ALTER FUNCTION [dbo].[SplitParameterValues]
(@input nvarchar(4000), @row_delimiter char(1))
RETURNS @OutputTable TABLE ( [value] nvarchar(100))
AS
BEGIN
declare ...
June 13, 2012 at 1:14 pm
battery_acid_h (5/30/2012)
June 1, 2012 at 3:47 am
riya_dave (5/31/2012)
i have created 1 group in my report.now i want sorting on differen field.
example,
account date month
u1 12/31/2010 ...
June 1, 2012 at 2:58 am
Anthony Kowaliw (5/30/2012)
I have debugged your code and the problem lies with the declaration of your parameters.
You must explicitly convert them to date e.g.
DECLARE @fromdate DATETIME = CONVERT(DATE,'2012-05-24');
DECLARE @todate...
May 30, 2012 at 8:21 am
Think this is the required query. Could be tidier and perform between other ways but this passes all your suggested outcomes.
-- Sample data
declare @ProductRate table (
[ProductID] [int] NOT NULL,
[FromDate]...
May 30, 2012 at 7:54 am
Try this. Works with your two rules. It returns the new episode starts, ie sequence=1 or 14days after last closure. (NHS data not included).
-- Create a table...
May 30, 2012 at 7:32 am
anthony.green (5/30/2012)
dufangmei (5/29/2012)
But, micorosoft have its official book. For MCITP exam, I should read 70-432 and 70-450. So I will try other ways to find the book.
The MS Training...
May 30, 2012 at 1:23 am
In summary you need to use the series that needs to be alone on the secondary X axis to separate from the other stacked bars. Demo below from SSRS 2008...
May 29, 2012 at 10:52 am
*.sqlplans attached. (SQL below used to create the sample data - know this isn't optimal but didn't want to spend too much brain power on it, got bored waiting at...
May 29, 2012 at 6:04 am
Sorry I would love to help, but cannot understand what you want. You seem to have a report produced and want to know how to produce it.
Is...
May 28, 2012 at 5:38 am
Agreed, I reproduced the test and noticed that the second query (that used a index scan) had a weird estimate for the output. Image attached.
Actual number of rows = 70000...
May 26, 2012 at 10:15 am
The drop field technique / terminology was SSRS 2005. You have SSRS 2008 ( or R2). Use the box as shown with values and categories.
Fitz
May 25, 2012 at 2:11 pm
riya_dave (5/25/2012)
ok.it will solve my prob,but what about if i need to make 2 column static , hard coded and others are dynamic.it is possible?
In SSRS 2008 it is possible...
May 25, 2012 at 9:13 am
wendy elizabeth (5/24/2012)
1: When the subscription is setup, how will it know what...
May 25, 2012 at 12:04 am
riya_dave (5/24/2012)
i have 1 pie chart,now i need to make table of whatever secton of pie chart made.
for example, if i run report my pie chart legend shows...
May 24, 2012 at 11:38 pm
Viewing 15 posts - 91 through 105 (of 249 total)