Viewing 7 posts - 1 through 7 (of 7 total)
Erik Kutzler (8/27/2008)
Easiest fix is to create a stored procedure that executes...
August 28, 2008 at 3:24 am
rbeuker (8/7/2008)
and by temporarily setting the language to... Italian. 😎 Apparently, they use the dd-mm-jj notation a lot also.
you could also use "set datetime dmy" (in case the...
August 8, 2008 at 3:11 am
Hi Satish,
You can do this the same way you would do it in a query analyzer session
I don't know the name of your instances but let's call them 'farawaydb'...
August 1, 2008 at 12:35 pm
That's what I meant,
the code should be put in your 'Execute SQL Task' where you access one DB as local and the remote as a linked server (see sp_addlinkedserver).
Matte
August 1, 2008 at 4:09 am
Hi,
I've had similar problems in the past, in my case it was due to the network drive not being available on runtime. I solved it by replacing it with...
August 1, 2008 at 3:46 am
Hi Satish,
you could perhaps try to achieve it using set-based statements, something like :
--------------------------------
--rows that do not satisfy COND1
--------------------------------
insert into dest_table_1 (colname1, colname2, ...)
...
August 1, 2008 at 3:26 am
Viewing 7 posts - 1 through 7 (of 7 total)