09-23-2008, 10:55 AM
|
#3 (permalink)
|
| New Member
Join Date: Sep 2008 Location: Rochester, NY Model: 8110 PIN: N/A Carrier: AT&T
Posts: 1
Post Thanks: 0 Thanked 0 Times in 0 Posts
| You can always move the database without running the create a new database utility but you will need to add the sysmessages to the 2005 master database or you will get a schema error and the dispatcher service will not start. Below is the code to retrieve those messages from the SQL 2000 database.
select 'exec sp_addmessage '+convert(varchar,error)+
', '+convert(varchar,severity)+', '+''''+description+''''
from master..sysmessages
where error > 49999
order by 1
you should get something that looks like this:
exec sp_addmessage 60002, 16, 'Unable to add new BlackBerry Agent "%s" AgentID=%d Machine Name=%s'
exec sp_addmessage 60003, 16, 'Unable to add MDS Mapping. Duplicate Pin: [%d]'
exec sp_addmessage 60004, 16, 'Unable to enable/disable MDS server as push server - entry does not exist.'
exec sp_addmessage 60005, 16, 'Unable to add new ServerConfig entry for ServiceName "%s" MachineName "%s".'
exec sp_addmessage 60006, 16, 'Unable to %s ServerStats entry for ServiceName "%s".'
exec sp_addmessage 60007, 16, 'Unable to %s UserConfig entry for SMTPAddr "%s" ServiceName "%s".'
exec sp_addmessage 60008, 16, 'Unable to %s UserStats entry for SMTPAddr "%s".'
exec sp_addmessage 60009, 16, 'Unable to add SyncDeviceMgmt entry because there is no UserConfig entry for %d.'
exec sp_addmessage 60010, 16, 'Unable to %s entry because there is no UserConfig entry for %s.'
exec sp_addmessage 60011, 16, 'PendingServerConfigId [%d] not found in ServerConfig table - User not added'
exec sp_addmessage 60012, 16, 'Deleting of the default Policy is not allowed.'
exec sp_addmessage 60103, 16, 'Unable to update the License record for BESRouter [%s]'
exec sp_addmessage 70000, 1, '%s TableName=%s'
exec sp_addmessage 70001, 1, '%s TableName=%s'
exec sp_addmessage 70010, 1, '%s,%i TableName=%s'
exec sp_addmessage 70011, 1, ' TableName=%s' |
| Offline
| |