Archived Months
April 2003
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007


all groups > sql server replication > february 2006 > threads for february 8 - 14, 2006

Filter by week: 1 2 3 4

Database Replication SQL 2000
Posted by stosti at 2/14/2006 4:57:27 PM
I have two SQL 2000 servers. I want to make the primary and one the secondary. I want to databases to stay replicated. If the Primary goes down the Secondary would be used while we fix the Primary. Once the the Primary is fixed it would be brought back online and the Secondary would replic...more >>

Alternate snapshot location for merge replication subscriber
Posted by jbzcooper NO[at]SPAM gmail.com at 2/14/2006 12:08:35 PM
Hi, I'm trying to set up a subscriber for merge replication over https. The initial snapshot file is about 50 Gigs and I'm wondering if its possible to download & store this snapshot somewhere other than on my database drive (I have size contraints). Any ideas or direction? Thanks, JC ...more >>

Replication works only with PublisherLogin ="sa" ??
Posted by smalo NO[at]SPAM gazmetro.com at 2/14/2006 12:03:52 PM
Hi, I am testing the replication with SqlCeReplication and the only way I have been able to make it works was by using the PublisherLogin="sa" (or a user with server role sysadmin). What privileges a PublisherLogin really needs? I find it risky to use sysadmin privilege. It's on SqlServer 200...more >>

Transaction replication,
Posted by Veasna Much at 2/14/2006 12:00:00 AM
Hello, I plan to setup an transaction replication for my project but I am very new to this. I have read some documents but still not so clear on how do it. I know that some of you have been sucessfull implement this type of replication. Just setting up the replication I think that is not ...more >>

Non standard port - non default instance
Posted by Cl NO[at]SPAM at 2/13/2006 6:34:29 PM
Hi all, I'm trying to create a subscription for a merge replication on a sql server mobile 2005 based application. The publisher is on a intranet, listening on port 9091 and with a named instance. The merge agent is in a DMZ with port 9091 open for inbound/outbound TCP traffic to the intr...more >>

Disabling triggers not involved in replication in SQL 2000
Posted by AK_Craig at 2/13/2006 3:40:28 PM
I am experimenting with replication and recently set up a prototype transactional replication with about a dozen publications and perhaps twice as many articles. All has gone smoothly so far. One item that is causing much gnashing of teeth is the fact that I cannot disable a pre-existing t...more >>

Merge replication- How to drop article and than add it again
Posted by איל שפירא at 2/13/2006 9:15:40 AM
Hi All, I need to drop an article from live merge publication and than add it back again with different schema (column, PK etc’) . I can’t use sp_dropsubscription for every subscriber and sp_droparticle because it is not transactional / snapshot publication. Do I have any other ...more >>

Blocking while getting Snapshot
Posted by billy_karnes at 2/13/2006 5:48:57 AM
We have a production database that is replicated(transactional). Whenever we have to take a snapshot, it creates blocking on the production tables and causes timeouts within the production application. This is creating big problems and I am wondering if there is away to avoid the blocking which...more >>



UPDATE Statements May be Replicated as DELETE/INSERT Pairs
Posted by Asser Maany at 2/12/2006 8:59:41 PM
Hi There, I was troubleshooting a problem in my transactional replication and notices that SQL Server replicates some of my update statements as Delete/Insert pairs, I was really surprised and couldn't understand why SQL server does that, I found an article in MS support web site http...more >>

sql server 2005 replication set up error
Posted by bsanders at 2/11/2006 2:07:27 PM
Hi, I installed sql server 2005 in two machine and want to set up replications between them, on mahcine A , I want to create a publication and a distributor. I have a administrator account "davidadmin" and password "abc " in this machine(A). In new publication wizard, in Snaphsot Agent Secur...more >>

transformable subscriptions between SQL Server 2000 and 2005
Posted by Mike Mullane at 2/11/2006 10:51:28 AM
I see that transformable subscriptions have been deprecated in SQL Server 2005. And although SQL Server BOL tells you how to setup SSIS to run DTS packages it also notes that this will be discontinued in future releases... What is my alternative to transformable subscriptions in SQL Server 200...more >>

REMOTE DISTRIBUTOR / FTP SETTINGS
Posted by Jose Fernandez at 2/10/2006 7:23:39 PM
Hello. I have this problem. I have 2 servers X and Y. X is only Publisher Y is Publisher and Distributor for X and Y. My question. When i make a publication in X, do i have to set the ftp server parameter for the snapshot in X or Y. I'm having errors on Connections. Thanks in Adva...more >>

SQL 2000 Merge Replication over Web
Posted by Micheal at 2/10/2006 5:32:29 PM
Hi We currently use VPN to allow 300+ remote clients to merge replicate to our SQL 2000 server. I am interested in looking at the option of implementing replication over the web as VPN is becoming a support headache and admin heavy. Any comments, resourses or feedback with your experience ...more >>

Get a list of publishers a subscriber is subscribed to
Posted by k0mput3r NO[at]SPAM gmail.com at 2/10/2006 11:19:50 AM
Hi, Is it possible to get a list of publishers a subscriber is subscribed to? - komp ...more >>

sp_scriptdynamicupdproc creates timestamp column
Posted by Phill Anderson at 2/10/2006 9:31:30 AM
I'm trying to use transactional replication between two Sql2000 sp4 servers. Updates are failing, on the subscriber, on tables with the timestamp column. I'm using sp_scriptdynamicupdproc to create the dynamic update stored procedures. It is adding a timestamp column, to update, to the stor...more >>

user defined function (UDF) with host_name() imput
Posted by lars.america NO[at]SPAM gmail.com at 2/10/2006 4:32:42 AM
Hi, I need to create a UDF that I can call like this: select machinename from fn_Split2(host_name()) My UDF code is this: CREATE FUNCTION fn_Split2(@machinename varchar(11)) RETURNS @Strings TABLE ( machinename varchar(10) ) AS BEGIN declare @m varchar(11) set @m = @machi...more >>

Cannot create Merge Replication in 2005
Posted by savvaschr NO[at]SPAM nodalsoft.com.cy at 2/10/2006 1:03:48 AM
Hi to All, I had sql 2005 with sp3 and i was working succesfully with merge replication on Sql ce. Yestarday i upgrade to sql 2005 (first upgrate my sql200 with sp4) Now i am here in sql 2005 trying to create a new merge replication on windows mobile 2005 and i get to the final step this error ...more >>

handling failover at the application level with Sql2005 Mirroring
Posted by Keith Henry at 2/10/2006 12:00:00 AM
We're in the process of writing an application that we want to work with a synchronous mirrored Sql 2005 database and a witness. As I currently understand it the best way to handle failover with this setup is to catch the server not available error and then retry the operation. Any open tra...more >>

MSSQL Replication (Type Merge)
Posted by Adrian Huryn at 2/10/2006 12:00:00 AM
Hello, i have this 2 errors. Pleas for help. The process could not check existence of generation at the 'Subscriber'. (Source: Merge Replication Provider (Agent); Error number: -2147201003) General network error. Check your network documentation. (Source: SERWER (Data source); Error number: ...more >>

conlict resolution question (merge repl)
Posted by djc at 2/9/2006 5:38:00 PM
windows 2000 / sql 2000 in the conflict resolution dialog I get the 'winner' columns listed with data and on the right 'loser' side I see this message instead of data: "The error described above occurred when trying to insert or update this data at the other server. If you ignore this confli...more >>

Question about replicating stored procedure execution
Posted by pshroads NO[at]SPAM gmail.com at 2/9/2006 4:55:07 PM
I am doing some research in advance of setting up replication. I've read about replicating stored procedure execution and I need clarification on what it is exactly. My understanding is that, for example, if you have a stored procedure on the publisher that modifies 10,000 rows then replicatio...more >>

Log Shipping
Posted by ANTHONY SHEEHAN at 2/9/2006 3:29:59 PM
Can I use my backup server as my monitoring server for log shipping? --=20 Tony...more >>

Set up MSDE replication during installation
Posted by C Williams at 2/9/2006 2:08:25 PM
Hi all, I am trying to configure a pull merge subscription in MSDE (2000, not sql express) at installation-time and am hoping someone can help. Here is my situation: I have a publisher/distributer on machine X. I have a client application that uses MSDE as its db. I want to have an in...more >>

Publisher and Subscriber on the same SQL Server
Posted by mordac at 2/9/2006 2:04:46 PM
When using "Merge Replication", is it possible to have a SQL Server to be a Publisher for one database and a Subscriber for another? I'm not a SQL gury and was hoping someone out there can lend me a helping hand. ...more >>

Advice Needed: Asynchronous Replication/Mirroring to central offic
Posted by Erik with a K at 2/9/2006 1:47:28 PM
I am a VB/.NET/SQL developer that has been tasked with restructuring how our field offices return data to the central office so some of this "advanced" SQL Server functionality - like replication - is relatively new to me... and I need your help, please. The scenario: We have installations...more >>

bug described in article 872843
Posted by Jay at 2/9/2006 1:28:55 PM
I am experiencing same problem described in article 872843. even though my sql server is on SP4. I try to tweak Log reader Agent Properties & other things but that is not helping. It is my impression whether this bug is not fixed or got break in SP4. Any reply/feedback/solutions/tips will...more >>

Replication Conflict Notification
Posted by SteveInBeloit at 2/9/2006 12:34:27 PM
Is there a way I can be notified when a merge replication resolves/shows a conflict. Maybe e-mail or something? Thanks, Steve...more >>

10 times more commands than transactions since adding fields
Posted by Julia at 2/9/2006 12:08:31 PM
We have been running transactional replication from one remote server to our in-house sql server for some years. This morning 4 new fields were added to 4 existing tables using sp_repladdcolumn. All 4 fields were Integer fields that allows nulls. Since making this change to the schema this m...more >>

Error using 'Validation Subscription' with SPs replcations
Posted by Fas at 2/9/2006 9:14:57 AM
I was runnung 'Validation Subscription' on our replication server and it try to validate a replicated 'stored --procedure' with the row count and returned with an error : -------------------------- exec dbo.sp_table_validation @table = 'usp_SP1', @expected_rowcount = 0, @rowcount_only = ...more >>

Error using 'Do not lock tables during snapshot generation' optio
Posted by Fas at 2/9/2006 9:10:29 AM
I setup a transactional recplication and selected the 'Do not lock tables during snapshot generation' option so to allow the publication DB to be available while snapshot is being generated. Snapshot completed OK but the distributor returned error: Operand type clash: uniqueidentifier is i...more >>

Log Reader Agent remains after removing replication
Posted by mpWong at 2/9/2006 6:59:27 AM
After I execute sp_removedbreplication for a database on SQL Server 2000 SP3, the Log Reader Agent remains and shows error "could not execute sp_replcmds". How to remove this particular agent? There is replication going on for a few other databases....more >>

Replicate a database that's mirrored
Posted by billy_karnes NO[at]SPAM corphealth.com at 2/9/2006 5:47:45 AM
Has anyone had any experience with mirroring and replicating a production database at the same time. The mirrored database will be in another state for high availability purposes, the replicated database (transactional) will be used for reporting purposes on site. Is this possible to do both a...more >>

Snapshot Replication
Posted by Tecnica at 2/9/2006 3:56:29 AM
Hi, i have instaled SQL Server 2005 Standard and i have create a Snapshot replication for one of our database. The snapshot should run every 3 hours, but after the first one create during the replication configuration no more snapshot is generated. If i see the replication monitor everythin...more >>

Publication w/o logreader agent. Is it possible?
Posted by Oskar at 2/9/2006 2:56:17 AM
Hi, Is it possible to create a publication without creating a logreader agent at the same time? I'm on MS SQL Server 2000 SP3a. -- Many thanks, Oskar ...more >>

MERGE REPLICATION TUTORIAL
Posted by Jose Fernandez at 2/8/2006 10:17:56 PM
Please, I bought the Book of Hillary Cotter about Transaccional and Snapshot but... I need to know about Merge. He still is not publishing his book. So, anyone know where can i download, read or anything about Merge replication? Thanks in advance ...more >>

SQL 2005 - Identity Range Management
Posted by TCorp at 2/8/2006 4:06:50 PM
I was hoping someone could explain the (IMHO) strange behaviour I see occurring with my SQL Server 2005 identity range management. I am testing merge replication to MSDE pull subscriptions from my SQL Server 2005 Publisher. I am trying to add a number of records (at the publisher) to a tab...more >>

merge conflicts resolution en-masse
Posted by Chris at 2/8/2006 2:53:03 PM
Recently added table to merge, another process is moving the records between servers and beating merge causing conflicts. App so big - dev will have to spend many hours finding cause & resolving. Until then I have to deal w/ conflicts... How do I resolve conflicts when I have thousands of...more >>

Replication of Dynamic SQL Stored Procedures
Posted by Jay Croft at 2/8/2006 12:18:29 PM
I'm trying to set up replication on a Db that I just took over. When replicating the SProcs the Distribution Agent stops with an error on the Subscriber whenever it encounters an SP that is building a dynamic SQL statement. I typically get the following error: are not allowed. Add a name...more >>

SQL2005 to Oracle9i replication problems..
Posted by paul.saldanha NO[at]SPAM gmail.com at 2/8/2006 9:51:18 AM
Hi, I am attempting a POC to replicate a single table from SQL2005 to Oracle 9i. Although the publication process is working correctly (I can see the published data), SQL is failing with an error "cannot connect to subscriber xxxxx". I have verified, using sqlplus, that I can connect from t...more >>

Setting up https replication with SqlExpress
Posted by Jonathan Hodges at 2/8/2006 2:54:56 AM
Hi I have set up a publication on a database in a datacentre which is web enabled. I now need to set up a subscription on a sqlexpress server on a local machine using RMO (or whatever). I do NOT have a 'network' connection to the server and so the normal MergePullSubscription subscription...more >>

SQL CE Replication - Failed to enumerate changes in the filtered articles
Posted by david.brunning NO[at]SPAM dsl.pipex.com at 2/8/2006 1:09:38 AM
I have a SQL 2000 server running service pack 3a with security hotfix SQL2000-KB815495-8.00.0818-ENU.exe applied. IIS and the SQLCE2 merge agent are on the same machine. First time synchronisation to Pocket PC is fine, but subsequent synchronisations fail (i.e. the snapshot gets delivered OK, ...more >>

conflict Problem Help
Posted by Sam at 2/8/2006 12:00:00 AM
Hello Everybody I am having merge Replication using MSSQL 2000 sp3 latest security patch, My replication is server1 –Publisher, server2 – subscriber, server3 – subscriber, Server4 – subscriber, server5 – subscriber. I am using schedule around 1:00 AM every day, In Server2 we insert 5 ro...more >>

sp4 and replication
Posted by Roger Nygård at 2/8/2006 12:00:00 AM
-Win2003 -msSQL200 sp3 8.00.760 We have a database with 2 publications one native and one Hetrogeneous publication. Is there any trouble to upgrade from sp3 to sp4 (mssql2000)? ...more >>


DevelopmentNow Blog