├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md └── sqldb-tips ├── get-sqldb-tips-compat-level-100-only.sql └── get-sqldb-tips.sql /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/SECURITY.md -------------------------------------------------------------------------------- /sqldb-tips/get-sqldb-tips-compat-level-100-only.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/sqldb-tips/get-sqldb-tips-compat-level-100-only.sql -------------------------------------------------------------------------------- /sqldb-tips/get-sqldb-tips.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-sql-tips/HEAD/sqldb-tips/get-sqldb-tips.sql --------------------------------------------------------------------------------