ptheriault
IS-IT--Management
If you apply a service pack or hot fix to a SQL server that participates in Oracle to SQL Replication you may receive the following error.
The problem is that the HREPL_VERSION table on the Oracle database does not match with the @@version on the SQL Server.
To correct the problem run this update in the HREPL database on the Oracle server.
Note to change the version to the results you get from running @@version on your SQL Server.
- Paul
- If at first you don't succeed, find out if the loser gets anything.
The version of SQL Server used to download the Oracle package code does not match the version of SQL Server running at the distributor. The replication support code at the Oracle publisher needs to be refreshed (Source MSSQL_REPL, Error number: MSSQL_REPL22202)
The problem is that the HREPL_VERSION table on the Oracle database does not match with the @@version on the SQL Server.
To correct the problem run this update in the HREPL database on the Oracle server.
Code:
[COLOR=blue]UPDATE[/color] HREPL_VERSION
[COLOR=blue]SET[/color] SQLSERVERVERSION = [COLOR=red]'Microsoft SQL Server 2005 - 9.00.2164.00 (X64) Jun 14 2006 12:39:07 Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 5.2 (Build 3790: Service Pack 1) '[/color]
[COLOR=blue]COMMIT[/color]
Note to change the version to the results you get from running @@version on your SQL Server.
- Paul
- If at first you don't succeed, find out if the loser gets anything.