Viewing 15 posts - 241 through 255 (of 1,346 total)
Reporting services and SSIS are two distinct things, two different services.
You can't do this, and I'm not exacly sure why you would want to.
Reporting services only cares about datasets, and...
January 12, 2009 at 1:31 pm
In your expression Put
(DT_WSTR, 4) DATEPART( "Year", DATEADD("dd", -1, getdate())) + RIGHT("00" + (DT_WSTR, 4) DATEPART( "Month", DATEADD("dd", -1, getdate())),2) + RIGHT("00" + (DT_WSTR, 4) DATEPART( "Day", DATEADD("dd", -1, getdate())),2)
January 9, 2009 at 1:05 pm
Why not try
select convert(varchar(10), dateadd(dd, -1, getdate()), 112)
Edit Added Convert BOL REF
http://msdn.microsoft.com/en-us/library/ms187928(SQL.90).aspx
January 8, 2009 at 1:22 pm
SSIS doesn't have very good tools to do this.
Sure it has the lookup transformation, but it doesn't help with duplicates within the file. And the lookup transform is a hog...
January 7, 2009 at 2:24 pm
I am very confused about what you are asking.
A report model is a defintion for a data set.
and it resides on the reporting server.
Reports that use that report model are...
January 7, 2009 at 9:26 am
Unfortunatelly I don't think RS export works that way.
You can try altering your dataset.
Select (Cast Col1 as char(100)) as Col1, Cast(Col2 as char(25)) as Col2.....
From Mytable
January 6, 2009 at 12:44 pm
Conditional split is good for this stuff, but it is not very easy for your example in ssis 2005.
If you want to use conditional split you only have the findsting...
January 6, 2009 at 12:33 pm
using a parameter in a query using ssis is fairly simple.
For every place you want a parameter use a ? in place of a variable name.
The variables are used in...
December 31, 2008 at 9:26 am
Why do you need the values to be sequential.
As stated above it is done to prevent duplicates. The database doesn't care or require the Identity column to be sequential.
If you...
December 31, 2008 at 9:07 am
There is no Openrowset Connection in SSIS.
You should be able to use an openrowset within an execute sql task
OpenRowset described in books Online
http://msdn.microsoft.com/en-us/library/ms190312(SQL.90).aspx
What exactly are you trying to do?
Post examples...
December 30, 2008 at 3:04 pm
Merry Christmas,
Get out of the office Early,
and make sure you double check the server and database before you execute that last update statement before you skate out of the office.
:w00t:
December 24, 2008 at 11:07 am
Mathew,
What data access mode are you using when pulling data from your source?
are you using "Table or View" or "Sql Command" If table or View, then you should be...
December 24, 2008 at 10:51 am
Instead Select the columns link.
you'll See
Row Delimiter {CR}{LF}
Column Delimiter Comma{,} -- Change this to ^
December 23, 2008 at 12:31 pm
Viewing 15 posts - 241 through 255 (of 1,346 total)