Viewing 15 posts - 1 through 15 (of 54 total)
Thanks for your help, I am still having issues, could you look at the code below and see where I am going wrong
ALTER TABLE tableName CONVERT(char(5), DATEADD(MINUTE, convert(int,150), '19000101'), 108)...
September 30, 2019 at 1:34 pm
The errors are attached
September 30, 2019 at 11:14 am
I understand but how do you just import the latest files from SSIS FTP TASK, I dont want to have to import now 8000 records every 2mins. After the FTP...
June 18, 2014 at 7:46 am
set @temp= 'c:\xxx' + cast(@number as varchar(50)) + '.xml'
DECLARE @isExists INT
exec master.dbo.xp_fileexist @temp,
@isExists OUTPUT
SELECT case @isExists
when 1 then 'Yes'
return
else 'No'
end as isExists
the error is...
June 9, 2014 at 5:26 am
The main reason for backing up sequentially is because we are taking a further backup on a tape drive (TSM), if the backups are date based it backs each file,...
October 11, 2013 at 3:58 am
Could anybody supply the TSQL for this please:-)
October 8, 2013 at 3:38 am
Hi,
Yes I did enable logging in the SSIS package, but there anything useful to see.
September 11, 2013 at 2:55 am
Just out of interest can this be used with SQL 2005 SSIS packages?
July 12, 2012 at 2:13 am
Just a quick question will the solution you supplied sort the problem of comma's inside text eg '21,2000,"5 Bomley,way",xxxxx
July 6, 2012 at 4:14 am
Its worked:-):hehe:
I found the error, the text file had a blank row at the end of the text file.
thanks
July 6, 2012 at 1:04 am
Cheers that seem to solve that problem,
now for the next error:-)
July 5, 2012 at 10:22 am
Thanks for your solution, iam am getting the following error
:w00t:
July 5, 2012 at 9:43 am
thanks for your reply the only problem with that is in column3 is the process order, they have to be done in that order.
July 4, 2012 at 4:42 am
I have the tables below, I have not included scripts to insert the data as that is what the problem is, the data is provided in one text file and...
July 4, 2012 at 2:13 am
one thing i forgot to mentation is that rows in the data don't have the same number of delimiters(,), one row might have 20 delimiters and another row might have...
July 3, 2012 at 4:40 am
Viewing 15 posts - 1 through 15 (of 54 total)