• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Replication Collation error...

coder_t2

Member
I am working on setting up replication on SQL Server 2005, and I was hoping to get some help with it. I am finally at the point where I have a replication userid with all the correct permissions. But I get a collation error when trying to set up the distribution. I tried changing the collation of the distribution database but I get the following error.

Warning: Changing default collation for database 'distribution', which is used in replication. All replication databases should have the same default collation.

I was hoping to avoid changing the collation of all databases for fear of it causing problems with reports that are already running. Any Ideas?

Here are some pics that might help show where I am stuck.
At this point I click OK.
http://img24.imageshack.us/img24/294/distributor.jpg
Then I get error!
http://img686.imageshack.us/img686/1000/disterror.jpg
 
Interesting, I never had any issues with the collation while configuring distribution on SQL Server.
 
This server switched physical machines a few months ago, so I wonder if originally the databases were set up with one collation, and sql server was set up with a different collation when it was set up on the new box. I try getting to properties of the database to double check the collation and I get a collation error...

I can confirm that the original sql server settings were SQL_Latin1_CP1_CI_AS. Trying to figure out the current sql server settings are....

Also I am trying to replicate from an Oracle database, if that helps.
 
You can do a select against sys.databases to get the current collation setting for each database in the master database.
 
Back
Top