Forum Replies Created

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

  • RE: DTS Step Error Description goes missing.

    Thanks but I don`t think you understood.

    Logging is enabled, otherwise I would not get any rows in the log table (as I said, the error is there, but the description...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Question of the Day for 07 Feb 2006

    I think this is SQL Server 2005 only, to Quote from SQL Server 2000 BOL:

    varchar[(n)]

    Variable-length non-Unicode character data with length of n bytes. n must be a value from 1...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Importing data from Access table to SQL Table

    Oh yeah, I forgot about that ... D`OH


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: DTS Package fails

    If all the mappings are the same (IE if H:, or whatever, always evaluates to the same full path on all the PCs) then neither server agent nor DTSs should have...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Default task pad view in enterprise manager

    This has annoyed me too, on some systems it remembers these settings and on others it seems to lose them. I think it has to do with the MMC (microsoft...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Specify TCP Port for named instance of SQL Server

    Not sure if it is the same in 2005 but in SQL Server 2000 you use the server network utility (which you can get to from the start menu items...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: DTS Package fails

    Ooooh this sounds familiar, bells going off all over the place, I`m sure Ive had this same error

    Its the bit 'When i try...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Importing data from Access table to SQL Table

    A Timestamp column is 8 Bytes, so you should be able to copy it into a BINARY(8) column, remember that it will no longer be guaranteed unique though.

    I have not...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Path of INI file

    We appear to be going around in circles

    Look, in any installation you have to have some point at which you set up the...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Path of INI file

    If the INI file is always in the same location relative to the application calling it then ajays suggestion makes sense.

    If you do store the path in a table...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Convert Varchar to Bit

    Quick and dirty fix:

    DECLARE @Word varchar(5)

    DECLARE @MyValue as bit

    SET @Word = 'True'

    select @MyValue = CASE @Word WHEN 'true' THEN 1 ELSE 0 END

     


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: COUNTing help required.

    Is IP.SB_INVOICE_PRINT_INV_NO varchar? Could it have trailing or leading white space that make it non-distinct despite looking the same?

     


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Path of INI file

    If you are talking about DTSs in particular did you know you can pass in parameters to a DTS when called from a command line? Look up the dtsRun utility...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Subqueries on DTS/SSIS Packages

    Did you have a comment in the SQL? I have noticed that parameters don`t work where there are comments in the SQL


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

  • RE: Primary Key on Date Range and Foreign Key

    OK, that makes sense, I work in the financial sector and company names are always changing

    Even without splitting the table I would still keep a...


    "Don`t try to engage my enthusiasm, I don`t have one."

    (Marvin)

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