Viewing 12 posts - 106 through 117 (of 117 total)
You certainly can have multiple datasets using the same stored procedure. I do it when I want to show MTD and YTD information on the same report - I call...
May 18, 2011 at 9:47 am
Didn't think about the index implications - thanks Jeffrey for the better solution 😀
May 16, 2011 at 8:56 am
You can use the following to convert the date column to the date with a time of midnight:
SELECT DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()), 0) AS DateOnly
(Replace GETDATE() with the name of...
May 11, 2011 at 2:01 pm
I thought you had to do it through a view...I'm not sure if there's another way.
April 27, 2011 at 1:53 pm
On your summary report, where you have (or want) the link to the detail report to be, right click that object and select Properties, then select the Navigation tab.
You'll see...
April 26, 2011 at 2:44 pm
Data-driven subscriptions are in the enterprise edition only (not the standard edition)...hence the SSIS package Doug provided if you're not using enterprise.
April 20, 2011 at 12:28 pm
Do you have a test system where you can adjust the data the query should return? I'd be curious to know if it's a specific record (or subset of records)...
April 5, 2011 at 1:14 pm
I'm new at building reports, and I had the same dilemma.
After trying it both ways, I now go for stored procedures over SQL directly in datasets.
Several reasons I found for...
April 5, 2011 at 10:46 am
Thank-you both for your suggestions!
@CirquedeSQLeil - Unfortunately, I don't have access to update the source table, but otherwise that would be a really elegant solution.
@john-2 - I do...
December 23, 2009 at 9:06 am
Viewing 12 posts - 106 through 117 (of 117 total)