fixed bug with reset settings tasks & update tasktype id DB

This commit is contained in:
vfedosevich 2013-05-16 15:42:43 +03:00
parent 59b097b10b
commit 38c8ac1199
2 changed files with 8 additions and 4 deletions

View file

@ -809,4 +809,8 @@ exec sp_xml_removedocument @idoc
COMMIT TRAN
RETURN
GO
UPDATE ScheduleTasks SET TaskType = RTRIM(TaskType) + '.Code'
WHERE SUBSTRING(RTRIM(TaskType), LEN(RTRIM(TaskType)) - 3, 4) <> 'Code'
GO