Viewing 15 posts - 181 through 195 (of 285 total)
For my data transfers from our AS400 I have set up a Linked Server that uses the iSeries Access ODBC driver. Then I use TSQL syntax in my SSIS...
April 14, 2009 at 11:58 am
Yes, as Jack said, you may want to go the other direction and have the report subscription fire the SSIS package. From BOL: http://msdn.microsoft.com/en-us/library/ms345250(SQL.90).aspx
There is an example of...
March 18, 2009 at 8:10 am
Here is a small vbscript I use to login to a site and click a button on a subsequent form. I run it from a scheduled task, not from...
March 10, 2009 at 7:41 am
I used the pivoted ID columns to join on and to group on. I did not have to concatenate the ID's. There was additional analysis to be done,...
March 9, 2009 at 7:23 am
Bob Hovious (3/6/2009)
My current line of thinking is to concatenate the alphanumeric owner id's
This is what I was keying on. But your point is well taken, Jeff....
March 8, 2009 at 7:54 pm
noeld,
Thank you, I think that your pivot script gives me what I need. I never used the row_number over partition functions available in SQL 2005. Since I can...
March 6, 2009 at 8:07 am
Jeff Moden (3/5/2009)
March 6, 2009 at 7:20 am
Another option would be to execute the SSIS package from a SQL Agent job if your server-client is capable of executing sp_start_job.
February 10, 2009 at 6:59 am
I don't know if this matters...
but you might try losing the User:: and just use the variable name
also if there is a space after the comma that might be a...
February 9, 2009 at 10:26 am
Is your variable declared in the ReadVariables property of the script dialog?
Also, the Derived Column transform is probably a bit easier to use if all you are doing is adding...
February 6, 2009 at 11:14 am
Well... I've learned something here. You can't really disable a task at runtime. What you can do is put an expression in the workflow precedence (the arrow) to...
February 5, 2009 at 1:02 pm
Here are example values for the FileSystem task:
UseDirectoryIfExists = True
Operation = CreateDirectory
IsSourcePathVariable = True
SourceVariable = User::DirToCreate
For your script dialog:
ReadWriteVariables = FolderExists
February 5, 2009 at 11:52 am
As G squared indicated, there is a UseDirectoryIfExists property you can set to True in the FileSystem Task. As to why your code isn't working - two things you...
February 5, 2009 at 11:28 am
I think you are experiencing the "double hop" issue with Windows Authentication (you can Google that for more details). Basically, Unless you have Kerberos enabled for these servers, you...
January 13, 2009 at 1:17 pm
Not sure what you are linking into, but I have a similar issue with my DB2 Linked Server. Management Studio will come back with the table names, but it...
January 13, 2009 at 12:53 pm
Viewing 15 posts - 181 through 195 (of 285 total)