SQL Server数据库同步问题
我们可以通过数据复制跨局域网、Internet在不同的数据库服务器上面维护多个数据的多个拷贝,同时以同步或异步的方式保证各个拷贝之间的数据一致性。 SQL Server提供完善的内置数据复制能力,它是SQL Server核心引擎非常重要的一部分。 SQL Server的复制分为
我们可以通过数据复制跨局域网、Internet在不同的数据库服务器上面维护多个数据的多个拷贝,同时以同步或异步的方式保证各个拷贝之间的数据一致性。
SQL Server提供完善的内置数据复制能力,它是SQL Server核心引擎非常重要的一部分。
SQL Server的复制分为三种方式:
快照复制:在某个时间点对于出版数据库中的数据照相,然后将其复制到定购服务器上。一般用于复制静态表。
事务复制:复制的内容是多条语句和存储过程,这样定购数据库只是读取数据库的数据修改方式,并且反映这种修改。一般用户更新频率较高的数据库。
合并复制:允许定购者和出版者的双向修改,并将修改反映到双方数据库上。如果数据有冲突,将会按照一定规则处理该冲突。
目前单位有用到一个web网站,数据库分别位于美国,荷兰和深圳。在网站基础架构上,我们使用的是3DNS和BigIP实现智能域名解析和负载均衡。但由于三地具备各自的数据库(SQL Server),需要保证各个数据库的数据一致。我们就需要做数据复制。根据用户的要求我们做的是事务复制,在网站的前两个版本都很正常,但在上两周更新了web页面版本后,发现事务复制经常出现错误。重新做事务复制在间隔不长的时间后仍然出现。后检查错误日志发现提示:
The query processor could not produce a query plan from the optimizer because a query cannot update a text, ntext, or image column and a clustering key at the same
检查数据库表格,经过排查,确定存在问题的一个表格(XXX_article)。和程序员确认后发现此表格属性变更为ntext类型,而且会同时更新此字段和此表的聚集索引栏位。
因此,怀疑是由于在做事务复制时会同时修改这两处位置造成,查阅相关的数据未能找到明确的官方说明,但是有其他程序的人员在程序编码中发现类似问题,其解决方法是分成两次update这个两个栏位。具体的技术细节,未能得到明确的说明。在事务复制上我们无法干扰其过程,因此我们将不对xxx_article做事务复制。然后对于xxx_article做快照复制,这样可以避免此问题的产生。经过测试和应用,,此问题已经得到解决。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Analysis of the basic principles of the MySQL database management system MySQL is a commonly used relational database management system that uses structured query language (SQL) for data storage and management. This article will introduce the basic principles of the MySQL database management system, including database creation, data table design, data addition, deletion, modification, and other operations, and provide specific code examples. 1. Database Creation In MySQL, you first need to create a database instance to store data. The following code can create a file named "my

1. Open DingTalk on your mobile phone and first select the avatar in the upper left corner. 2. Click Settings at the bottom of the pop-up page. 3. Then click on the settings on the page. 4. Open the calendar settings on the settings page. 5. Click on it and find the synchronized mobile schedule on the page. . 6. Then turn on the synchronization of mobile phone schedules.
