Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 replication

Author  Topic 

mcm
Starting Member

6 Posts

Posted - 2008-07-22 : 10:37:45
hello

what exactly is replication and what does it accomplish?

tx

elancaster
A very urgent SQL Yakette

1208 Posts

Posted - 2008-07-22 : 10:39:40
i'm interested... where exactly did you hear the term and not understand it's purpose? classroom? interview?

Em
Go to Top of Page

mcm
Starting Member

6 Posts

Posted - 2008-07-22 : 10:50:53
read about it
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-07-22 : 10:52:00
quote:
Originally posted by mcm

read about it




Are you looking for suggestion or giving one?
Go to Top of Page

mcm
Starting Member

6 Posts

Posted - 2008-07-22 : 11:07:02
trying to find out what exactly is replication in regards to sql server 2005

Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-07-22 : 11:14:39
quote:
Originally posted by mcm

trying to find out what exactly is replication in regards to sql server 2005





Replication is a warm-standby solution . It allows you to replicates same copy of tables into other server or other instances.You should check books online about Replication which comes with SQL Server CD.
Go to Top of Page

laddu
Constraint Violating Yak Guru

332 Posts

Posted - 2008-07-23 : 01:27:04
Replication is to put copies of the same data at different locations throughout the enterprise. And synchronizing between databases to maintain the consistency.
Reasons:
Moving data closer to the user
Reducing the locking conflicts when multiple sites wish to work with same data
Allowing site autonomy so that each location can set up its own rules and procedures for working with its copy of data
Removing the impact of read-intensive operations such as report generation and ad hoc query processing from the OLTP database

Read BooksOnline for types of replication and all...
quote:
Originally posted by mcm

hello

what exactly is replication and what does it accomplish?

tx


Go to Top of Page
   

- Advertisement -