Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question On Replicating A SQL Database 1

Status
Not open for further replies.

mpodraza

Programmer
Joined
Oct 16, 2001
Messages
1
Location
US
Are there any limitations (such as on indexes, automated updates, etc) to replicating a database in SQL that I should be aware of? Any suggestions would be helpful -- Thanks!!
 
I'm not sure what your real concern is but every case has diferent limitation, and the greater limitations I know are usualy bandwidth and time AL Almeida
NT/DB Admin
"May all those that come behind us, find us faithfull"
 
Planning for Each Type of Replication
Each type of replication (snapshot replication, transactional replication, and merge replication) has specific requirements and issues that you should consider before implementation.

Because an initial snapshot must be applied for all types of replication, you should be familiar with the planning considerations for snapshot replication even if you choose to implement transactional replication or merge replication.

When considering transactional replication, allocate adequate disk space in the distribution database to handle the number of transactions that will be stored there.

When considering merge replication, Microsoft® SQL Server™ 2000 uses a globally unique identifier (GUID) column to identify each row during the merge replication process. If the table that is replicated does not have a uniqueidentifier column with the ROWGUIDCOL property and a unique index, SQL Server 2000 will add one to the table, and you will need to account for the additional data that is stored there. If the table already has a uniqueidentifier column, you can add the ROWGUIDCOL property to signal that it can be used during merge replication. You must also add a unique index on this column or make it the primary key for the table. Distributed applications can benefit greatly from using the uniqueidentifier column because it guarantees that no two sites will generate the same key value.

AL Almeida
NT/DB Admin
"May all those that come behind us, find us faithfull"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top