Forum Replies Created

Viewing 15 posts - 676 through 690 (of 1,118 total)

  • RE: Import File Using SSIS FTP Task

    Lonnie Johnson (7/30/2009)


    Is there a link or "walk through" that shows you how to set up a job to go to a web server, log on and get a file...

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: How to remove first leading char using SSIS derived cloumn

    Try this:

    ( ( CODEPOINT( [COL1] ) >= 65 && CODEPOINT( [COL1] ) = 97 && CODEPOINT( [COL1] ) <= 122 ) ) ? SUBSTRING( [COL1], 2, LEN( [COL1] ) -...

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: Web Service task failing

    tvanharp (7/28/2009)


    We have a package with a web service task that ran on a SQL Server where the service account was a server admin.

    Now it is being transfered to...

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: Cannot connect to SSIS from SSMS

    This doesn't look right. The easiest option would be to reinstall your server.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: Exporting Multiple SSIS packages from MSDB

    Yes, you can create a script to do it.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: ssis time stamp problem

    When you use the data flow task what happens?

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: XML output from SSIS based on XSD file

    Do you expect the XSD to change? If not check Keelio's XML Destination. Otherwise you have to create custom script component to build your output based on the XSD.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: SSIS Package Logs

    In the SQL Job Agent you have job execution log/history. You can review there what is the status.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: SSIS not resolving Sybase sql.ini alias

    DBASkippack (7/23/2009)


    I was told by our Sybase DBA that Sybase Clinet 15.3 does not use sql.ini anymore...

    So where does it find the information about aliasing?

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: How can we load the Xlsx and xls files using the same connection manager?

    sumankumarreddym (7/23/2009)


    Hi

    I am using SQL Server 2008 , trying to load the data from excel files into the sql server table.I have both the type of files i.e .xls...

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: SSIS not resolving Sybase sql.ini alias

    DBASkippack (7/21/2009)


    My SSIS connect string to Sybase is not recognizing the Sybase sql.ini entry alias... I am forced to use our actual 4-node server name to resolve. How...

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: SSIS Basic Dumps

    Phil,

    I could not stop laughing... so funny 🙂

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: Importing Excel File

    Double-quote the variable like this:

    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\"" + @[User::BudgetFilePath] + "\";Extended Properties=\"Excel 8.0;HDR=Yes\";"

    Your path probably contains spaces.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: Executing SSIS package on a remote sever

    Have you tried to setup your package in the remote server SQL job agent? And then use script to setup the remote server job step for execution.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • RE: xml task and xpath

    This is duplicate post. The question is being answered here.

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

Viewing 15 posts - 676 through 690 (of 1,118 total)