Viewing 15 posts - 1,501 through 1,515 (of 5,103 total)
Replication is not a good choice to do that because the overhead that you are going to put in production is not necessary. If you use transactional, for example your...
October 4, 2007 at 8:18 am
Todd,
You can subscribe 2005 to 2000 ONLY if 2005 is a PULL subscription. The rule always is that the distribution agent should be the Highest Version in the topology if...
October 4, 2007 at 7:56 am
Sergiy (10/3/2007)
It will work perfectly.
Yes, it will return "TRUE" for every column, but what does it change?
We still have to run the same...
October 4, 2007 at 7:36 am
Oh Boy ... This is probably going to be a big one 😀
October 4, 2007 at 7:25 am
Sergiy (10/3/2007)
noeld (10/3/2007)
1) Yes because UPDATE () function makes sense on UPDATE triggers only 😉
Not quite true.
I would say absolutely false.
:Whistling:
Hehe, R E A L L Y ????
Can you...
October 3, 2007 at 4:59 pm
RD (10/3/2007)
1) are u saying use 2 triggers, 1 for update, 1 for insert?
2) where would @@rowcount be used?...
October 3, 2007 at 4:00 pm
Make sure that SQL Server Account has rights to read and execute the app on that folder.
October 3, 2007 at 3:56 pm
declare @variable varchar(2000)
set @variable = 'select * ...from' + @server + '.' +......
exec (@varible)
October 3, 2007 at 3:48 pm
NOTE that is_subscribed does not work in all cases
October 3, 2007 at 3:46 pm
sqlquery (10/3/2007)
October 3, 2007 at 3:22 pm
Andy Warren, One of the Site Owners has done it in the past:
http://www.sqlservercentral.com/articles/Replication/noncontinuousreplication/111/%5B/url%5D
October 3, 2007 at 3:21 pm
Bruce,
continuos mode is really not that "continuos" if you look in the profile it is actually polling. I am not sure about your "latency" requeriments which is what really counts....
October 3, 2007 at 3:17 pm
This debate is still opened, for me at least
That makes us 2 😉
October 3, 2007 at 3:11 pm
Replication is a bad choice for doing that. You should use BCP, SSIS or SMO instead.
October 3, 2007 at 3:02 pm
Try :
SELECT E.id
, E.postedOn
, E.code
, E.title
, MIN(CASE WHEN X1.extensionRef = 'field1' THEN X1.value END ) AS field1
, MIN(CASE WHEN X1.extensionRef = 'field2' THEN X1.value END ) AS field2
.....
FROM...
October 3, 2007 at 2:47 pm
Viewing 15 posts - 1,501 through 1,515 (of 5,103 total)