SQL Server 2005 Express Edition - Part 14 - Replication SupportJanuary 7, 2008 In our series dedicated to SQL Server 2005 Express Edition, we have been focusing mainly on characteristics that emphasize its unique capabilities, making it a preferred choice in variety of scenarios, despite the apparent superiority of its full-featured counterparts. However, it is fairly obvious that its small footprint and free-of-charge use also have negative implications, imposing restrictions on functionality available in the Standard or Enterprise editions. This is especially conspicuous in the case of replication, which we will explore starting with this installment. Before we turn our attention to aspects of replication specific to SQL Server 2005 Express Edition, let's briefly review its terminology and principles that are important to our discussion. The main purpose of replication is to provide a mechanism for creating multiple copies of the same data (including underlying metadata) and keeping them synchronized, regardless of where updates originate. While its basic terminology is derived from the world of traditional magazine publishing, some of its concepts appear to be better represented by Web 2.0-based online technologies, such as wikis or blogs (which allow partial or multi-directional updates to publications). In general, though, both of these analogies work well when analyzed from the point of view of three main entities participating in the replication:
Note that, as we mentioned, some of these objectives can be assigned (for example a subscriber can function as a publisher) to the same database, although distributor is always separate and unique per publisher. (However, this still allows for publisher databases to be hosted on the same SQL Server 2005 instance as the distributor, which, in such configurations, is known as "local"). In addition, it is possible to intermingle multiple replication arrangements (e.g. a single subscriber can receive distinct publications from several, independent publishers). Despite the wide range of possible variations, there are three basic replication categories, determined by the roles of participants in the process of data modification as well as the mechanism and frequency of updates:
All the replication arrangements described above can be configured as either
push (with publisher and distributor controlling the frequency of updates) or
pull (changes are applied following explicit requests from a subscriber).
Individual tasks that facilitate data exchange are handled by specialized
processes called agents (implemented as separate executables located in the
Following this brief introduction to replication, let's concentrate on its characteristics that are relevant within the context of our series. First of all, it is important to realize that SQL Server 2005 Express Edition instances are limited to the role of a subscriber, although with its ability to participate as a subscriber in all types of replication topology, you can actually publish its changes in a bi-directional merge replication. (Incidentally, this makes it inferior to its predecessor - Microsoft SQL Server Desktop Engine, better known as MSDE, which, in addition to functioning as a subscriber, supported the roles of a publisher and a local distributor in snapshot or merge replication arrangements). Furthermore, since SQL Server 2005 Express Edition does not include SQL Server Agent (also present in MSDE), it does not directly support replication agents running on subscribers (such as merge or distribution agents in the pull configuration). In order to emulate their functionality, you will need to resort to workarounds that involve the use of such mechanisms as Windows Synchronization Manager, invoking replication-specific executables (such as replmerg.exe), or coding with .NET-based Replication Management Objects (RMO). The Windows Synchronization utility has been available since the release of Windows Server 2000 and Internet Explorer 5.0, via Synchronize shortcut (rebranded as Sync Center in Windows Vista) in the Accessories program group. While its primary purpose was to provide a central point of administering synchronization for e-mail, offline files, and Web pages, its capabilities have been extended to accommodate such aspects of SQL Server 2005 Express Edition replication as synchronizing, reinitializing, deleting, or modifying an update mode (when dealing with updating subscribers) for its subscriptions. Replication Management Objects assembly, combined with managed code, offers programming methods of manipulating responsibilities of replication agents. You should keep in mind that replication functionality is not incorporated by default in the SQL Server 2005 Express Edition installation. The option controlling this behavior is accessible by expanding the Database Services node on the Feature Selection page of the setup wizard and can be modified by assigning "Will be installed on local hard drive" value to its Replication entry. In addition, if you intend to take advantage of the connectivity and Replication Management Objects (RMO), you should apply the same setting to the Connectivity Components subnode of the Clients Components node on the same page of the wizard. In case you missed these steps during initial setup, simply launch SQLEXPR32.EXE (or SQLEXPR.EXE for 64-bit systems) to modify an existing instance (for the background information regarding this process, refer to our earlier article). By leveraging technologies described in this article, you can deploy arbitrarily filtered portions of a database residing on a designated SQL Server 2005 Standard or Enterprise instance to multiple SQL Server 2005 Express Edition systems and maintain consistency between them. This approach provides a cost-efficient solution in situations where remote users must be able to not only remain fully operational even if network connectivity to a central office is limited, but also maintain access to up-to-date data through on-demand synchronization. In our next article of this series, we will review a few examples illustrating such implementations. |