Viewing 15 posts - 1 through 15 (of 172 total)
Yes I can change the NULLs to 0s on the database side.
Thanks
February 5, 2014 at 5:41 am
The source is SQL Server
February 4, 2014 at 9:39 pm
GilaMonster (2/15/2012)
Please read through this: http://www.sqlservercentral.com/articles/Transaction+Log/72488/
Thank You Gail. The post was very helpful.
February 15, 2012 at 2:56 pm
This is exactly the solution I was looking for..works like a charm. Thanks for all your help.
January 30, 2012 at 2:38 pm
Gianluca Sartori (1/30/2012)
If the former, this should...
January 30, 2012 at 11:11 am
MostInterestingMan (12/5/2011)
I have a package that pulls a csv file from a client's ftp server daily and load into a sql table. I want to be able to check if...
December 5, 2011 at 12:55 pm
Ninja's_RGR'us (8/10/2011)
http://www.sqlservercentral.com/articles/Tally+Table/72993/
Then use this technique to pivot (or just the native pivot in tsql).
Select columns, MAX(CASE WHEN RowId = 1 THEN Value ELSE NULL END) AS Email1,...
August 14, 2011 at 6:23 pm
Ninja's_RGR'us (8/2/2011)
Are you sure the dataset is set as SP rather than text? Maybe that could be the difference :unsure:
Ninja's_RGR'us thanks for your help and patience but it's...
August 10, 2011 at 12:50 pm
Ninja's_RGR'us (8/2/2011)
Never seen that.
You could always use
SET DATEFORMAT YMD as the first line of code in SSRS. That might fix it. Don't know what else to...
August 2, 2011 at 1:30 pm
Yes the SSIS parameter is DateTime which results in the calendar control on the UI. The reporting is working just that it is returning less records than expected because it...
August 2, 2011 at 1:09 pm
Ninja's_RGR'us (8/2/2011)
Are you sure that the parameters are declared as datetime in the proc, the parameters and the...
August 2, 2011 at 12:48 pm
Ninja's_RGR'us (8/2/2011)
August 2, 2011 at 12:35 pm
I got this working by reading a great blog by David Leibowitz [/url]
David leverages a Table Function to parse the comma seperated list that SSRS multi value parameter passes and...
August 2, 2011 at 11:35 am
That was my problem. I deleted and re-added the table to the form and it worked. Thanks
August 2, 2011 at 9:38 am
Ninja's_RGR'us (5/6/2011)
http://www.red-gate.com/products/sql-development/sql-data-generator/
Or you can do it manually using this exemple :
http://www.sqlservercentral.com/articles/T-SQL/68467/
Go to the section called "Populate the Test Table with Randomized Data".
Option...
May 6, 2011 at 11:58 am
Viewing 15 posts - 1 through 15 (of 172 total)