Viewing 8 posts - 1 through 8 (of 8 total)
Hi, I also got the error even choosing not to save the package.
After trying many things I resolved the problem by formating the machine.
April 6, 2005 at 5:30 am
Thanks for your reply, I get the error when I use the DTS Import/Export Wizard to transfer data, source and destination databases are located on the local server. I receive the error message...
January 13, 2005 at 11:03 am
That's really fine!
It's just what i need, a diferent aproach, i will use a combination of both queries:
SELECT q.LowerMissing, q.UpperMissing, (q.UpperMissing - q.LowerMissing) AS [Difference] FROM
(SELECT (DocVendaid + 1) LowerMissing,
(SELECT...
June 17, 2004 at 11:11 am
I really have to visit this forum more often!
Thanks a lot!
February 27, 2004 at 1:16 pm
Nice!
Thanks noeld for your help.
DocTypes can be added by clients, so I will create a cursor to build a dynamic version of the...
February 27, 2004 at 10:48 am
Thanks cmore and ThomasH for your replies.
My idea is to use the one field on tmptable (int) to show the sproc progression in a visual basic progress bar, that's why...
December 5, 2003 at 8:27 am
I need to do that because i'm writing a vb app that monitors the sproc progression by reading it on the TmpTable of the example given.
I would really apreciate any...
December 5, 2003 at 4:58 am
Where's a way of doing it...
declare @iRows int,
@nvsql nvarchar(200)
set @iRows = 10
set @nvsql = 'select top ' + convert(char,@iRows) + ' * from TableName'
exec sp_executesql @nvsql
December 4, 2003 at 11:01 am
Viewing 8 posts - 1 through 8 (of 8 total)