Viewing 15 posts - 15,376 through 15,390 (of 18,923 total)
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...
July 8, 2005 at 11:33 am
Hey Vasc do you know of an article that compares both NON DETERMINISTIC and DETERMINISTIC for speed?
July 8, 2005 at 11:04 am
Yup... you were pointing back to your current comment on this thread ![]()
July 8, 2005 at 11:00 am
you mean this?
set @cmd = 'copy F:\data_dump\emer\inventory.txt ' + @filename
July 8, 2005 at 10:56 am
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. ...
July 8, 2005 at 10:27 am
Not even worth trying to compare.. gonna be too depressing
.
July 8, 2005 at 10:21 am
Have you turned on the logging to file of the steps? Maybe the error could be more relevant in there.
July 8, 2005 at 10:19 am
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...
July 8, 2005 at 10:16 am
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...
July 8, 2005 at 10:14 am
Thanx was looking for the definition... didn't know that people had so much time on their hands...
July 8, 2005 at 10:09 am
K... please post the results.. I'm curious to see if I'm right about this one.
July 8, 2005 at 10:05 am
Viewing 15 posts - 15,376 through 15,390 (of 18,923 total)