Skip to content

Instantly share code, notes, and snippets.

@Dalmirog-zz
Created November 9, 2016 18:02
Show Gist options
  • Save Dalmirog-zz/5cd03644eb63fa9e21599852045e4e76 to your computer and use it in GitHub Desktop.
Save Dalmirog-zz/5cd03644eb63fa9e21599852045e4e76 to your computer and use it in GitHub Desktop.
Turn off maintenance mode from DB
UPDATE [dbo].[Configuration]
SET [JSON] = '{"IsInMaintenanceMode":false}'
WHERE ID = 'maintenance'
GO
SELECT * FROM [dbo].[Configuration]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment