Recently I've replaced a sql server (2008R2). I've reinstalled hosted apps and restored backups of databases. All seems to work as expected except that these events are shown in the eventlog :
id 18054 in MSSQLSERVER Error 150010, severity 16, state 96 was raised,
but no message with that error number was found in sys.messages.
If error is larger than 50000, make sure the user-defined message
is added using sp_addmessage
I can get the message from the old server using select * from sys.messages where message_id='150010'
Now I'd like to know how to copy all the msg with id > 50000 on the new server? Do I have to restore a backup of the master db ?