Viewing 15 posts - 1 through 15 (of 188 total)
first how are you extracting from DB2
-...
October 5, 2018 at 12:49 pm
LOL I'm an idiot. Square brackets!
public void Main()
{
MessageBox.Show(Dts.Variables["User::src_inbox_folder"].Value.ToString());
Dts.Variables["User::is_new_file"].Value = System.IO.File.Exists(Dts.Variables["User::src_inbox_folder"].Value.ToString());
Dts.TaskResult = (int)ScriptResults.Success;
}
December 20, 2017 at 6:26 pm
There is a property in the package that will allow you to save sensitive with password. Use that. Or better yet, use SSIS configs in a table. ...
November 13, 2015 at 8:09 am
https://www.youtube.com/watch?v=GiGHkQi2SAk
He gets around to it at 7:15. Config type is Parent package variable.
October 16, 2015 at 2:34 pm
I got partial answers from @sqldba and @SQLfool on #SQLhelp. Can hack my way from there. So NM.
December 13, 2012 at 4:41 pm
--BSC is one of the largest and most exciting centers for higher education in the commonwealth. Here in our idyllic setting, you'll find an institution steeped in history, ready for...
December 13, 2012 at 2:56 pm
Should anyone wish to know the solution...
I had to sign this public key with my secret key in order to execute the command in batch mode.
December 7, 2011 at 12:25 pm
I have a script task in an SSIS package that I wrote to PGP encrypt files using a public key from client A. Among other things, it writes a...
December 6, 2011 at 2:49 pm
For anyone following... the solution was to disable and re-enable replication on both servers.
November 9, 2010 at 9:45 pm
Jeff Moden (7/16/2010)
Yep... make sure they didn't change the domain name or the server name of the target server and make sure they didn't change the login name or password.
As...
July 19, 2010 at 8:46 pm
Screw the proc. I put the script in line. Works.
EXEC sp_MSforeachdb 'USE [?]; print DB_NAME();
DECLARE @TableName VARCHAR(100) --For storing values in the cursor
--Cursor to...
June 25, 2010 at 12:24 pm
noeld (6/25/2010)
ZenDada (6/25/2010)
Steve Jones - Editor (6/25/2010)
Keyword here is connection. These are stable for the connection. @@identity doesn't scope to your connection or that table.
As usual, Pinal Dave has the...
June 25, 2010 at 11:49 am
Thanks! That did the trick!
June 25, 2010 at 9:59 am
Steve Jones - Editor (6/25/2010)
Keyword here is connection. These are stable for the connection. @@identity doesn't scope to your connection or that table.
As usual, Pinal Dave has the 411!
June 25, 2010 at 9:58 am
I assume that id is an autonumber so let's not depend on that to be a perfect sequence, but rather to define the order ok?
Then, self-join and account for null...
June 10, 2010 at 1:20 pm
Viewing 15 posts - 1 through 15 (of 188 total)