Forum Replies Created

Viewing 15 posts - 421 through 435 (of 1,062 total)

  • RE: My Recent EMail

    Ram

    I understand your point. My own mother language is Chinese. However if I live in US and I have respect this country official language so I have to...

  • RE: Sql Server 2005 DTS Package

    I think you better get a book about SSIS. It is totally different from DTS. Some of the tasks are no longer used.

  • RE: DTS Job Failed (Urgent... Please Help!!!)

    The error log said Step 'DTSStep_DTSDataPumpTask_5' failed not Step 'DTSStep_DTSDataPumpTask_6' and it failed due to network problem.

  • RE: dts copy object error

    Was the data in the client table different when the bcp failed? The error message seemed to tell me the length of one column in the client table was...

  • RE: Sql Server 2005 DTS Package

    In SQL Server 2005, DTS is changed to SSIS which you would find under Business Intelligence development studio.

  • RE: BCP ERROR TRAPPING

    In your procedure it would not show bcp failed because you used xp_cmdshell. It just checked if xp_cmdshell executed, then it returned a successful status.

  • RE: Linked server problem

    You need to create an login account in Server A and the same login in Server B. When you create the linked server between A and B, you...

  • RE: Assigning Variables using DYNAMIC T-SQL

    declare @RECORDCNT int

    declare @TABLE char(100)

    declare @cmd Nvarchar(100)

    -- Set the table to be used

    set @TABLE = '[ORDERS]'

    -- Build the dynamic T-SQL command

    SET @CMD = 'select @RECORDCNT=count(*) from ' + @TABLE

    -- Call...

  • RE: Trigger will not export to Excel Spreadsheet

    As Steve said before, DO NOT USE TRIGGER !!!!!

  • RE: Losing Your Job

    It is getting more and more complicated working for corporation. Long time ago I made a choice not to pursue management because I do not like company politics. ...

  • RE: Ten Ways To Lose Your DBA Job

    I was pushed to resign myself because my manager and I did not get along. One example he wanted to use trigger to insert data into the one main...

  • RE: My Recent EMail

    One thing about US English and UK English is spelling. There are some words that spell different, eg in US we spell 'color', in UK 'colour'.

    I don't know which...

  • RE: Check if temporary table exists or not?

    Steve,

    I always use SYSOBJECT but you suggested to use information_schema.tables. What's wrong with using SYSOBJECT?

    Maybe I really need to beef up my DBA skills, I guess being a part...

  • RE: Substituting white spaces, in a string, with nothing

    You can also do a RTRIM(LTRIM(.....)), this will eliminate any white space.

  • RE: Storing Error Description in a Table

    I am still not very sure what you want to store because you said something about syntax error.

    I had created a error table before to store the errors of some...

Viewing 15 posts - 421 through 435 (of 1,062 total)