sqlserver.rst
changeset 2553 11f741239f16
child 2560 e023a7bbaf3b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sqlserver.rst	Sun Jan 22 17:27:27 2023 +0200
@@ -0,0 +1,36 @@
+
+============
+ SQL Server
+============
+.. contents::
+   :local:
+
+Informational schema
+====================
+
+::
+
+  SELECT * FROM sys.tables;
+  SELECT * FROM sys.views;
+  SELECT * FROM sys.indexes;
+
+  SELECT * FROM information_schema.tables;
+
+Table stats
+===========
+
+Individual table::
+
+  EXEC sp_spaceused NAME;
+
+All tables in a schema::
+
+  sp_msforeachtable 'EXEC sp_spaceused [?]';
+
+List collations
+===============
+
+::
+
+  SELECT name, description FROM sys.fn_helpcollations();
+