We came up with the following SQL command (if anybody is interested)
Update [SolarWindsOrion].[dbo].[SEUM_Transactions]
SET [Frequency] = 600 <--Frequency in seconds
Where [Name] Like 'Bing.com%' <--Recording Name
Then we verify with the following
SELECT TOP 1000 [TransactionId]
,[RecordingId]
,[AgentId]
,[Name]
,[Description]
,[Frequency]
,[Unmanaged]
,[UnmanageFrom]
,[UnmanageUntil]
,[JobId]
,[LastStatus]
,[LastDuration]
,[LastDateTimeUtc]
,[LastErrorMessage]
,[WarningThreshold]
,[CriticalThreshold]
,[LastModificationUtc]
FROM [SolarWindsOrion].[dbo].[SEUM_Transactions]
WHERE [Name] Like 'Bing.com%' <--Recording Name