Forum Replies Created

Viewing 15 posts - 1 through 15 (of 30 total)

  • RE: Connecting to SQL2008 DB's using ODBC

    Thank you Tim that was my issue.

    I was trying to eliminate the sys and schema's from displaying on the tables so the users would not get confused.

    Which I still have...

  • RE: Connecting to SQL2008 DB's using ODBC

    That was the issue, and is fixed.

  • RE: Connecting to SQL2008 DB's using ODBC

    Where would I find the security for 'View any database'?

    This maybe my issue.

  • RE: Need to pick up a mdf using ssh or https

    What I should of indicated was the mdf is in a specific folder, however the mdf is dropped randomly (no set date).

  • RE: SSIS FTP Task Editor

    Found the issue.

    The source system was converting the text files to a dos format (need this for sql2000 not sql2008).

    We removed the unix to dos conversion and the extra {CR}...

  • RE: Importing Flat text file

    I've loaded the file in excel and it looks good.

    From my research it looks as if it may be trailing nulls, however I've tried filling the nulls with a value...

  • RE: Importing Flat text file

    Maybe I stated the delimiter backwards.

    Should be row delimiter cr/lf

    and column delimiter tab.

    See attachment

  • RE: Importing Flat text file

    Thanks for the quick reply.

    Yes, I've verified the cr/lf is truly there.

  • RE: Need help with a Export

    Thanks, Norman

    objFile.WriteLine("How do I reference the trailer row here?")

    strFile = "c:\output.txt" ' e.g. c:\output.txt

    ' ------ END CONFIGURATION ---------

    const ForAppending = 8

    set objFSO = CreateObject("Scripting.FileSystemObject")

    set objFile = objFSO.OpenTextFile(strFile, ForAppending, True)

    objFile.WriteLine("Script completed:...

  • RE: Need help with a Export

    Hi Norman,

    I do not have the knowledge to write a ActiveXScript Task.

    Any help would be greatly appreciated!;)

  • RE: DTS very strang issue

    I use DTS to map and load the data in a table.

    I guess I do use QA to view the data.

    See attached file.

  • RE: DTS very strang issue

    Okay, I'll need a little help.

    In DTS I created a BulkInsertTask, how do I specify columns 1,3 and 33?

  • RE: DTS very strang issue

    Thanks I've set up the exception file.

    I'm not using Query Analyzer:unsure:

    If I delete part of col033 the file loads.

  • RE: DTS very strang issue

    I've attached the txt file.

    I added the msgbox.

    Where do I find the exception log?

  • RE: DTS very strang issue

    Okay changed to:

    Changed field back to varchar(6000)

    Function Main()

    DTSDestination("MAID") = DTSSource("Col001")

    DTSDestination("Mem_ID") = DTSSource("Col003")

    If Len( DTSSource("Col033")) > "6000" Then

    Main = DTSTransformStat_ExceptionRow

    Exit function

    End If

    DTSDestination("Ac_Ded_Yr") = DTSSource("Col033")

    Main = DTSTransformStat_OK

    End Function

    AC_Ded_Yr is...

Viewing 15 posts - 1 through 15 (of 30 total)