I have the following error in orchestrator:
The transaction log for database 'RPAPROD' is full due to 'LOG_BACKUP'
How can I resolve this?
I have the following error in orchestrator:
The transaction log for database 'RPAPROD' is full due to 'LOG_BACKUP'
How can I resolve this?
couple of things you can try (no guarantee on what LOG_BACKUP actually is in your case at his point but…)
if you google ‘transaction log t-sql’ you will find plenty of help, it is a common issue …
if you log a lot of messages in your bot workflows, perhaps try this in ssms :
TRUNCATE TABLE [RPAPROD].[dbo].[Logs]
which will wipe the UIPATH logs table , leaving the structure intact.
Alternatively you can look up information for
EXEC master.sys.sp_cycle_errorlog
GO
Thanks @TAFS_TAFS. The problem was a space issue in the database. I have the infrastructure team revising the polices being used to manage backups.
yeah my logs table takes up 99% of the db size (storage-wise) kinda sucks