Tagged Questions

78
votes
5answers
55k views

I get a “An attempt was made to load a program with an incorrect format” error on a SQL Server replication project

The exact error is as follows "Could not load file or assembly 'Microsoft.SqlServer.Replication, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. An ...
10
votes
8answers
3k views

Is Guid the best identity datatype for Databases?

It is connected to BI and merging of data from different data sources and would make that process more smooth. And is there an optimal migration strategy from a database without Guids to a version ...
8
votes
4answers
5k views

The best technology to synchronize data between different database schemas?

I have an existing SQL Server 2005 database that runs our accounting/inventory application. We are looking at using a new on-line ordering framework - which has it's own database. If we use this new ...
8
votes
10answers
2k views

Which database has the best support for replication

I have a fairly good feel for what MySQL replication can do. I'm wondering what other databases support replication, and how they compare to MySQL and others? Some questions I would have are: Is ...
7
votes
5answers
2k views

Wait for connections to close before restoring SQL Server database

I have a web application that uses two databases. DB1 Users perform their CRUD (Create, Read, Update, Delete) operations. Database DB2 is a readonly database on a different server that i use for ...
7
votes
3answers
10k views

What are the scenarios for using mirroring, log shipping, replication and clustering in SQL Server

As far as i know SQL Server provides 4 techniques for better availability. I think these are the primary usage scenarios, in summary :- 1) Replication would be primarily suited for online-offline ...
6
votes
2answers
469 views

SQL Server 2005 Transactional Replication Fails to Publish Stored Procedure Containing an Index Create

I've experienced a bizarre problem with a SQL Server 2005 Transactional Publication. The issue is this: If the publication contains an article that is a stored procedure that contains a create index ...
6
votes
3answers
169 views

How to set up a new SQL Server database to allow for possible replication in the future?

I'm building a system which has the potential to require support for 500+ concurrent users, each making dozens of queries (selects, inserts AND updates) each minute. Based on these requirements and ...
6
votes
6answers
1k views

Tools for Building an OCA (Occasionally Connected Application)

I will be building an in-house, Occasionally Connected App (OCA). What technologies would you suggest I employ. Here are my parameters: .NET Shop(3.5sp1) C# for code behind ...
6
votes
2answers
1k views

SQL Server 2005 Replication

Environment: SQL Server 2005 SP2 (9.0.3077) Transactional Publications (Production and Beta) I have a situation where I have two different Replication Publications setup that use some of the same ...
5
votes
1answer
9k views

Guide for Replication in MS SQL Server 2008

I wonder if anyone know/have a good guide for Replication in MS SQL Server 2008? I want to set up a Replication between two different computers that run MS SQL Server 2008, the master runs on Windows ...
5
votes
5answers
5k views

Copy SQL Server data from one server to another on a schedule

I have a pair of SQL Servers at different webhosts, and I'm looking for a way to periodically update the one server using the other. Here's what I'm looking for: As automated as possible - ideally, ...
5
votes
1answer
1k views

Peer to peer replication in SQL Server 2005/08

Has anyone had any experience in setting up peer to peer replication using SQL Server 2005 or 2008? Specifically, I'm interested in whether other options/alternatives where considered and why P2P ...
5
votes
2answers
1k views

SQL Server Merge Replication Schedule

We're replicating a database between London and Hong Kong using SQL Server 2005 Merge replication. The replication is set to synchronise every one minute and it works just fine. There is however the ...
4
votes
1answer
177 views

Errors restoring a Sql Server 2008 database with Merge Replication

I'm trying to restore my database from a file and get the following error: "An explicit DROP INDEX is not allowed on index..." "It is being used for PRIMARY KEY constraint enforcement." If I delete ...
4
votes
4answers
273 views

How can I minimize the data in a SQL replication

I want to replicate data from a boat offshore to an onshore site. The connection is sometimes via a satellite link and can be slow and have a high latency. Latency in our application is important, ...
4
votes
4answers
318 views

Backing up SQL Database for Reports

I'm looking for some help/suggestions for backing up two large databases to one server dedicated to reports. The situation is; My company has two databases for its internal website. One for the UK ...
4
votes
3answers
8k views

How do I check SQL replication status via T-SQL?

I want to be able to check the status of a publication and subscription in SQL Server 2008 T-SQL. I want to be able to determine if its okay, when was the last successful, sync, etc.. Is this ...
3
votes
1answer
155 views

Why should someone use Identity Range Management with SQL Server

When I began to work on replication a few years ago, I was convinced that Identity Range Management was only made available in recent SQL Servers for legacy purposes as, prior to SQL Server 2000, the ...
3
votes
1answer
131 views

SQL Server Replication: Transform replicated data

I have an employee database that is replicated to several other servers. Currently, only the employee ID and name are being replicated. However, the need has arisen to have the last four digits of ...
3
votes
4answers
454 views

SQL Server : subscription : how to know if a table is under replication/subscription

in SQL server on "Subscription side" how to know if a table is under replication/subscription. Any Idea
3
votes
2answers
100 views

Suggested replication type?

I have 2 similar tables in different servers, data in certain columns can only be changed by server A while data in other columns can only be changed by server B. However, I need these tables to ...
3
votes
3answers
329 views

How to synchronize two (or n) replication processes for SQL Server databases?

There are two master databases and two read-only copies updated by standard transactional replication. It is needed to map some entity from both read-only databases, lets say that A databases contains ...
3
votes
1answer
444 views

Help on choosing which SQL Server 2008 scale-out solution to pick (replication, …)

I am currently crossing the jungle of SQL Server scale-out technologies like replication, log-shipping, mirroring... I have the following constraints on my choice: I want the read-only load to be ...
3
votes
3answers
573 views

Consolidate data from many different databases into one with minimum latency

I have 12 databases totaling roughly 1.0TB, each on a different physical server running SQL 2005 Enterprise - all with the same exact schema. I need to offload this data into a separate single ...
3
votes
3answers
203 views

Copy Database Data from Many DBs to One. Data Replication (sort of)

This involves data replication, kind of: We have many sites with SQL Express installed, there is an 'audit' database on each site that has one table in 1st normal form (to make life simple :) Now I ...
3
votes
3answers
329 views

How do I keep a table synchronized with a query in SQL Server - ETL?

I wan't sure how to word this question so I'll try and explain. I have a third-party database on SQL Server 2005. I have another SQL Server 2008, which I want to "publish" some of the data in the ...
3
votes
2answers
2k views

SQL Server Change Tracking vs Replication vs Differential Backup

Ok we have critical transactional database and its in full recovery mode in SQL Server 2008. We have have two different servers in two different data centers on two different timezones. And I am ...
3
votes
3answers
1k views

SQL Replication Setup - Almost There

I'm trying to setup replication between two SQL Servers and I'm almost there but stuck on a permission error (it appears). The servers are connected via VPN. Publisher/Distributer = W2003 + SQL2005 ...
3
votes
4answers
346 views

How to partially migrate a database to a new system over time?

We are in the process of a multi-year project where we're building a new system and a new database to eventually replace the old system and database. The users are using the new and old systems as ...
3
votes
2answers
756 views

Why does merge replication fail on setting a table's LOCK_ESCALATION?

We're having a problem with a merge replication. Our publisher runs SQL Server 2008, while our two subscribers run 2005. Our publisher is trying to send an ALTER TABLE Foo SET (LOCK_ESCALATION) ...
3
votes
2answers
912 views

Best Hot/Warm Backup Server Replication Strategy (SQL Server 2005)

I have two identical servers with SQL Server 2005 and my application. Hard requirements: I must be able to update data at either server. I must be able to unplug either server without having to ...
3
votes
5answers
3k views

SQL Replication “Row Not Found” Error

I have transactional replication running between two databases. I fear they have fallen slightly out of sync, but I don't know which records are affected. If I knew, I could fix it manually on the ...
3
votes
3answers
1k views

SQL Server Transactional Replication Over VPN

I have transactional replication running between two servers over a dedicated VPN connection. The databases are fairly large, so I initially use the backup and restore method to get the initial ...
3
votes
4answers
5k views

SQL Server trigger on replication

I need to create a SQL Server database that will recieve updates by some replication mechanism from another database. I need to write insert, update and delete triggers that will execute when this ...
3
votes
1answer
974 views

SQL Server Replication connection error

After I renamed my PC, I couldn't create new paublications, for database replication in SQL Server 2005. I receive un error "SQL Server replication requires the actual server name to make connection ...
3
votes
2answers
894 views

MS-SQL Server 2005: Initializing a merge subscription with alternate snapshot location

We started some overseas merge replication 1 year ago and everything is going fine till now. My problem is that we have now so much data in our system that any crash on one of the subscriber's servers ...
2
votes
2answers
59 views

SQL Server Performance Suggestion

I have been creating database tables using only a primary key of the datatype int and I have always had great performance but need to setup merge replication with updatable subscribers. The tables ...
2
votes
1answer
59 views

Frequent Setup and Tear Down of SQL Server Replication

I am using the Visual Studio Database Project for my database. I have it setup to auto-build twice a week. When it builds it drops the database and recreates it from scripts. I really like the tear ...
2
votes
1answer
93 views

Powershell problem using .NET Replication Management Objects RMO

I am trying to automate the reinitialization of several replication subscriptions that pull anonymously from the distribution server. I am working on this project in Powershell and I believe I am ...
2
votes
1answer
150 views

SQL Server - best replication model for archiving

I am at the point where I need to start archiving database of website I'm maintaining. Basically, lots of transactional data is generated daily, and after approximately 2 weeks, this data is pretty ...
2
votes
1answer
73 views

Differential Update With SQL Server

I have several huge (2GB each) database in Firebird format. Every few weeks, this data has to be synchronized with an MS SQL Server. Currently this is a long winded process which just truncates the ...
2
votes
1answer
159 views

Is SQL Server merge replication transaction-aware?

If I have two tables with a one-many relationship that are replicated using merge replication in the same publication, and on the subscriber I add a row to each in a transaction, will SQL Server ...
2
votes
1answer
817 views

Copy Multiple Tables into ONE Table (From Multiple Databases)

I've got multiple identical databases (distributed on several servers) and need to gather them to one single point to do data mining, etc. The idea is to take Table1, Table2, ..., TableN from each ...
2
votes
1answer
37 views

Help determining proper Identity Range sizes

I have a Merge Replication with ~200 subscribers. I am trying to determine what would be appropriate Identity Range Sizes on some of the tables. You see I inherited a DB structure that was not ...
2
votes
1answer
391 views

Issues with SQL Replication & sp_vupgrade_replication questions

I've got a database from SQL Server 2005 that I am programmatically attaching to an instance of SQL Server 2008 R2, then re-establishing replication on some tables (via some pre-baked scripts that ...
2
votes
4answers
656 views

Sync Data Between Two Diff SQL Servers

I have two SQL servers that I need to have identical. Sync should occur maybe a couple times per day, automatically. The two servers have no "direct" connection between them, so no linked db etc. ...
2
votes
1answer
170 views

Create Sql server replication with some data transformation (during or at the end)

i'm running a sql server replication to sync a table to a separate (reporting) database. In the source database, all records have a DateTime value (not so unusual) but it isn't stored as a DateTime, ...
2
votes
1answer
133 views

Configuring replication after mirroring - is this possible?

I'm currently setting up replication in order to produce a database that will be used to run reports and take load of the main database. According to the guide at: ...
2
votes
1answer
403 views

Deploy SMO application to workstation without SQL Server 2008 installed

I am trying to deploy an application that uses SMO on a workstation without SQL Server installed on it. The instance the app is connecting to is SQL Server 2008. The application is failing with: ...

1 2 3 4 5 6