Viewing 10 posts - 556 through 565 (of 565 total)
Use an execute process task with PSFTP - no need to shell out $$$ for /n software's SSIS task.
Tommy
May 24, 2007 at 9:45 am
Correct - export to File System, launch VSS, create a new project and choose add existing item from the SSIS packages folder in VSS. Select file system again and browse...
May 24, 2007 at 8:05 am
Open SQL Management Studio - connect SSIS. Expand the stored packages folder. Locate the saved package, right-click and select export package. An alternative - launch VSS, create a new SSIS...
May 24, 2007 at 6:54 am
May 24, 2007 at 6:48 am
I've been using GnuPG within a BAT file in an execute process task within SSIS to perform encrypt/decrypt operations. i.e.
Example BAT file:
@echo off
gpg --encrypt -r "someone@somekey.com %1
Example Execute Process...
May 23, 2007 at 1:20 pm
Use a script task to populate a boolean variable to determine if the file exists (in this example, using varFileName, varFileExists). Then use an expression (i.e. @[User::varFileExists]==True) on the precedence...
May 23, 2007 at 1:13 pm
Hi Imke,
Your message source can be anything you want; you can build an expression using variables, etc. i.e.
"THE FOLLOWING FILE HAS BEEN TRASMITTED TO SOMEHOST VIA FTP." + "\n" +...
December 22, 2006 at 6:56 am
not sure about this error - I've used something similar to this in the past -
Imports System.Data.SqlTypes
Imports Microsoft.SqlServer.Dts.Runtime
Imports Microsoft.SqlServer.Management.Smo
Imports Microsoft.SqlServer.Managment.Smo.Agent
Imports Microsoft.SqlServer.Managment.Common
Imports System.Data.SqlClient
Dim app As New Microsoft.SqlServer.Dts.Runtime.Application()
Dim pInfos As PackageInfos...
December 21, 2006 at 7:56 am
You could always use ServerName@domainname.com in the FromLine of the Send Mail Task (so long as your SMTP server accepts this as a valid address). You can acomplish this...
December 21, 2006 at 7:41 am
Have you launched the surface area configuration tool and enabled remote connections unde the database engine? By default SSIS runs under NT AUTHORITY\Network Service - try changing to a domain...
December 21, 2006 at 7:35 am
Viewing 10 posts - 556 through 565 (of 565 total)