偶现在的问题就是,当2台WIN2000的机器复制的时候,由于权限的问题,总是无法成功,有人搞定了吗?请指教。

解决方案 »

  1.   

    前年幫一個客戶做過Replication,是SQL 7.0的,用的是Merge Replication方式,配置簡單,可就是異常情況太多了,資料常常發生沖突,而且都是一些莫名其妙的沖突。
    2000下的複製沒有弄過,好像應該更複雜吧?我剛試了一下用一台Server上的第二個實例去做,沒有成功。
      

  2.   

    听斑竹的意见,来参与一番
    对于由于权限问题无法进行的复制,可以把sql安全验证设置为与操作系统混合验证方式,然后agent中的帐号设置为能够访问目标机器的系统帐号,就不会出现权限问题了:)
      

  3.   

    对于使用自增字段作为流水号(不是主键)来进行复制的时候,只需在建表的时候加上with no replication(好像是这样的)来使其不参加复制
      

  4.   

    baresi(定海神针) :不行啊,2000之间访问时,第一次总要弹出一个验证框,随便写什么都行(GUEST用户打开)。
      

  5.   

    我觉得2000数据库复制很简单啊!!不知道大家说的和我理解的是不是一回事。
    我一般在目标机器上建立要复制的数据库名,然后把两台机器的sql server 服务停掉,copy data目录下的两个文件过来,覆盖目标机器上建立的空数据库文件就ok了!! 屡试不爽啊!
      

  6.   

    各位大哥,大姐,你们好:请教一个问题:
    CREATE TABLE [dbo].[user_Info1] (
    [user_ID] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [user_PWD] [char] (10) COLLATE Chinese_PRC_CI_AS NULL ,
    [user_Des] [char] (10) COLLATE Chinese_PRC_CI_AS NULL 
    ) ON [PRIMARY]
    此语句在SQL7中能正确运行吗?它是什么意思呢?
      

  7.   

    sql server 2000<-->sql server 2000 同数据库结构复制很简单吗。这里主要讨论什么呢?
      

  8.   

    SQL Server 2000 企业版可以执行一种数据库维护计划,它可以用一种logshipping的方法。
      

  9.   

    楼上的,logshipping 是什么?望相告!
      

  10.   

    去掉COLLATE Chinese_PRC_CI_AS就好
      

  11.   

    其实有些术语很难翻译为特定的中文词汇,[复制]英文是replication, 是数据库引擎设计中很重要的技术,而普通意义上的复制则指的是copy.Data ReplicationReplication allows you to automatically distribute copies of data from one server to one or more destination servers at one or more remote locations. Data integrity is a key design point of SQL Server's replication capabilities. The data at replicating sites might be slightly outdated, but it will accurately reflect the state of the data at a recent point in time and is guaranteed to reflect any changes made soon after they occur (or soon after a reliable network connection is established).SQL Server 2000 supports three modes of replication:1.Transactional replication 
    In this mode of replication, one site is considered the owner, or publisher, of a published article (a table or a subset of a table), and other sites subscribe to that article. All changes made to the article must be made at the publisher and then replicated to the subscribers. 2.Merge replication 
    Although the publisher defines the articles to be published, any participating sites can make changes. System tables keep track of the changes, which are then propagated to all participants, including the original publisher. You can define which type of conflict resolution to use in the event of conflicting updates made by multiple sites. 3.Snapshot replication 
    All data from the publishing site is periodically copied to all the subscribing sites. Individual changes aren't propagated. This method was formerly called scheduled table refresh.
      

  12.   

    我也凑凑热闹,
    如何保证远程两台SQL的数据一致,同步更新?
      

  13.   

    我用的比较多的是Sybase SQL Anywhere的数据复制,对于MS SQL Server的复制还没有研究过,到这里学习。
      

  14.   

    1.Snapshot replication  and (with updated subscriber)
    All data from the publishing site is periodically copied to all the subscribing sites. Individual changes aren't propagated. This method was formerly called scheduled table refresh.2.Transactional replication and (with updated subscriber)
    In this mode of replication, one site is considered the owner, or publisher, of a published article (a table or a subset of a table), and other sites subscribe to that article. All changes made to the article must be made at the publisher and then replicated to the subscribers. 3.Merge replication 
    Although the publisher defines the articles to be published, any participating sites can make changes. System tables keep track of the changes, which are then propagated to all participants, including the original publisher. You can define which type of conflict resolution to use in the event of conflicting updates made by multiple sites. 
      

  15.   

    to 斑竹;
    如何实现两台的数据同步更新:通过INTERNET连接???
    指教!!!!!!!!!!1
      

  16.   

    SQL Server 中实现同步复制比较简单,只是不知网络不够稳定的情况下,同步复制能否保持数据的完整性。
      

  17.   

    TO: fxjpost(天外有天)
      说一说做法,注意事项,也好让大家学习!
      

  18.   

    有没有人试过DB2同步复制到SQL SERVER 2000!希望切磋一下