How to change the description of process without publishing package to Orchestrator?
- Run below SQL to get the list of processes
SELECT *
FROM dbo.Releases
FROM dbo.Releases
- Find the appropriate process and update DESCRIPTION column using below SQL
UPDATE dbo.Releases
SET Description = 'Test Decsr'
WHERE Id = id
SET Description = 'Test Decsr'
WHERE Id = id