Genesys Outbound Contact Solution comes with a list of databases, depending on site specific implementation. Common databases are configuration db, LOG db, ODS db, Dart Mart db and OCS db.
Couple migration tasks to migrate MS SQL 2000 to MS SQL 2000 (yes! changing hardware servers only) were performed. A point should be reminded was migration of usernames and access rights. Below MS SQL command might be required.
use my_db;
go
sp_change_users_login AUTO_FIX, 'my_user'
go
--------------------------------
Migration from MS SQL 2000 to MS SQL 2005 was never performed in production environment. Development testing was tried.
Most Genesys components requiring DB access works fine for MS SQL 2005; problem begins when running Reporting modules; Data Sourcer and ETL sevice. Error message could be found in relevant debug log in which it suggested using sp_dbcmptlevel in MS SQL 2005 server.
sp_dbcmptlevel [ [ @dbname = ] name ] [ , [ @new_cmptlevel = ] version ]
version:
60 = SQL Server 6.0
65 = SQL Server 6.5
70 = SQL Server 7.0
80 = SQL Server 2000
90 = SQL Server 2005
You need Database administrator support to change below settings
EXEC sp_dbcmptlevel 'gctiCONF', '80';
GO
EXEC sp_dbcmptlevel 'gctiLOG', '80';
GO
EXEC sp_dbcmptlevel 'gctiODS', '80';
GO
EXEC sp_dbcmptlevel 'gctiDM', '80';
GO
EXEC sp_dbcmptlevel 'gctiOCS', '80';
GO
## and, all other databases as well!
## use below command to list database size, owner,..., compatibility level
sp_helpdb
This approach can be the minimum effect without upgrading any Genesys component. Please consult your local Genesys Support and have confirmation before any migration to production environment!
It is interesting to know as well what are impacts when upgrading to Geneyss 7.5. For instance, is it possible to migrate and keep current report databases (ODS and DM).
It's wondered Geneys DB server 7.5 is NOT the only components for MS SQL 2005! ETL Service is a set of Java programs that do not access Genesys DB server; they access database tables directly. It may imply that Genesys 7.5 Reporting solution/module are mandatory required. Again, confirmation from your local Genesys Support is recommended.
regards