Forum Replies Created

Viewing 15 posts - 15,376 through 15,390 (of 18,923 total)

  • RE: xp_cmshell

    Declare @FileName as varchar(200)

    set @FileName = 'C:\Whatever.txt'

    select 'copy F:\data_dump\emer\inventory.txt ' + @filename

    --copy F:\data_dump\emer\inventory.txt C:\Whatever.txt

    select 'copy F:\data_dump\emer\inventory.txt ''' + @filename + ''''

    --copy F:\data_dump\emer\inventory.txt 'C:\Whatever.txt'

    select 'copy F:\data_dump\emer\inventory.txt "' + @filename + '"'

    --copy...

  • RE: output to text file

    Anyways, try it and see what comes up.

  • RE: Need some help tweaking SQL select

    Hey Vasc do you know of an article that compares both NON DETERMINISTIC and DETERMINISTIC for speed?

  • RE: Giving pain to DBA

    Yup... you were pointing back to your current comment on this thread

  • RE: xp_cmshell

    you mean this?

    set @cmd = 'copy F:\data_dump\emer\inventory.txt ' + @filename

  • RE: output to text file

    No, but that could work too .

  • RE: output to text file

    Let's try it in english this time .

    Open the package, File/properties/3rd tab (logging or saving), then file out the err handling section. ...

  • RE: Widest table

    AMEN!

  • RE: Please give me a replacement for a Cursor

    Not even worth trying to compare.. gonna be too depressing .

  • RE: output to text file

    Have you turned on the logging to file of the steps? Maybe the error could be more relevant in there.

  • RE: Changing a date format

    I still wouldn't mess with the data just to beautify the data (unless it causes other problems). You can create much bigger problems that way... especially if you don't...

  • RE: Simple Insert

    I didn't provide that solution. Looks to me like you reinsert data that is already in the table. So I would just add a where not exists in...

  • RE: Giving pain to DBA

    Are you sure you got the right URL?

  • RE: Giving pain to DBA

    Thanx was looking for the definition... didn't know that people had so much time on their hands...

  • RE: create merged strings from a source table

    K... please post the results.. I'm curious to see if I'm right about this one.

Viewing 15 posts - 15,376 through 15,390 (of 18,923 total)