Forum Replies Created

Viewing 10 posts - 556 through 565 (of 565 total)

  • RE: SSIS Secure FTP Task

    Use an execute process task with PSFTP - no need to shell out $$$ for /n software's SSIS task.

    Tommy

  • RE: how to edit a saved ssis package

    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...

  • RE: how to edit a saved ssis package

    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...

  • RE: Check file exists before load into Database

    NP - e-mail me at freebsdboy@gmail.com and I can you send you an example.

    Thanks.

    Tommy

  • RE: Execute Process Task and GPG

    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...

  • RE: Check file exists before load into Database

    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...

  • RE: Send Mail Task

    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" +...

  • RE: SSIS Package Load error

    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...

  • RE: Send Mail Task

    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...

  • RE: How to Connect to SSIS on a Remote Server?

    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...

Viewing 10 posts - 556 through 565 (of 565 total)