Skip to content

Instantly share code, notes, and snippets.

@defilerc
Last active June 22, 2018 20:59
Show Gist options
  • Select an option

  • Save defilerc/70d3ccf81b5e40a1a981ea4a710fddb0 to your computer and use it in GitHub Desktop.

Select an option

Save defilerc/70d3ccf81b5e40a1a981ea4a710fddb0 to your computer and use it in GitHub Desktop.
-- see db collation (method 1):
EXECUTE sp_helpsort;
-- see db collation (method 2):
SELECT CONVERT (varchar, SERVERPROPERTY('collation'));
-- Take the Database Offline
ALTER DATABASE [myDB] SET OFFLINE WITH
ROLLBACK IMMEDIATE
GO
-- Take the Database Online
ALTER DATABASE [myDB] SET ONLINE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment