Recording History Restoration After System Re-Addition
The article was successfully sent to the email
When a MOTOTRBO system is removed from the Server Configurator and later added again (Even with the same parameters), it receives a new unique GUID. This situation may also occur if Windows corrupts the configuration file - for example, when the disk runs out of free space. In such cases, restoring the configuration from a backup is the recommended approach.
Since the system GUID is stored inside all audio-record references in the database, previously recorded audio will not appear in Reports or Recent Calls until the old GUID is replaced with the new one. The audio files themselves remain on disk (unless they were manually deleted earlier). However, the database no longer knows how to match them to the system after the GUID change.
Run SQL Update to Replace GUID
SET
[master_station_id] = 'NEW-GUID-HERE'
WHERE [master_station_id] = 'OLD-GUID-HERE'
GO
How to Find the new GUID
How to Find the old GUID
FROM [TRBOnet].[dbo].[NotifyMessages]
WHERE protocol = 32
ORDER BY date DESC