Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: File System Object Task - Variable File Name

    I am trying to do something very similar, but I am not sure how to go about creating destination file property a variable with "evaluate expression" true. Can somebody...

  • RE: "," used as a decimal separator

    Why can't you simply replace "," with "." before passing the value to SQL?

  • RE: Collation Problems with BCP 8.0

    Try creating a new bcp format file using

    bcp MBLOGS_DEV..AuditJournal out c:\fmtAuditJournal.txt -Sservername -Uuid -Ppwd

    The new file should have default collation.

    Hope it helps!

  • RE: debug DTS package

    Turn on Just in Time debugging option -

    1. In the SQL Server Enterprise Manager console tree, right-click the Data Transformation Services node, and then click Properties.
    2. Select the Turn on just-in-time...
  • RE: Question of the Day for 20 Sep 2004

    Run the following script (ammended version of post by  Journeyman).  Result will be 1.

    CREATE TABLE #TestUpdateA (ColA Char(1),ColB Int)

    GO

    CREATE TABLE #TestUpdateB (ColA Char(1),ColB Int)

    GO

    INSERT INTO #TestUpdateA VALUES('A','0')

    GO

    INSERT INTO #TestUpdateA...

  • RE: Question of the Day for 24 Aug 2004

    An auto-created statistic starts with the prefix _WA_Sys and is not "named _WA_Sys"

  • RE: Question of the Day for 11 Aug 2004

    How do you insert results of sp_who2 in a table?

Viewing 7 posts - 1 through 7 (of 7 total)