├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── how-to ├── how-to-test-failover-group-connectivity-between-instances │ ├── README.md.md │ ├── TestFoGConnection-GenerateParameters.sql │ ├── TestFoGConnection-RunTests.sql │ ├── image-4dd11f01-e9df-4bb5-b5d9-456430317310.png │ └── image-5c41e1c9-9fbc-4536-a8ef-b4fc03c63704.png ├── how-to-test-tcp-connection-from-mi │ ├── README.md │ ├── TestTCPNetworkConnection.sql │ └── image-ebeea9ab-a74c-4777-8180-58435c4ce6c8.png └── sqlmi-how-to-all-in-one.sql ├── presentations ├── 2023 │ └── Azure_SQL_Managed_Instance_–_5_years_later.pptx ├── 2024 │ └── pass 2024 │ │ ├── 01 - Becoming Azure SQL DBA – High Availability and BCDR.pdf │ │ ├── 02 - Becoming Azure SQL DBA - Security Compliance Threats Connectivity.pdf │ │ ├── 03 - Becoming Azure SQL DBA – Performance monitoring, tuning.pdf │ │ └── 04 - Becoming Azure SQL DBA – New opportunities Copilot.pdf └── readme.txt ├── toolkit ├── DllConvertToStream │ ├── App.config │ ├── DllConvertToStream.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── GeneratedScript │ └── commands.sql ├── Toolkit.sln ├── Toolkit │ ├── SqlManagedInstanceToolkit.cs │ └── Toolkit.sqlproj └── readme.md ├── videos └── bits │ └── 001-provision-sqlmi-with-ps │ └── provision-sqlmi-with-powershell.ps1 └── whats.new /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /how-to/how-to-test-failover-group-connectivity-between-instances/README.md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-failover-group-connectivity-between-instances/README.md.md -------------------------------------------------------------------------------- /how-to/how-to-test-failover-group-connectivity-between-instances/TestFoGConnection-GenerateParameters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-failover-group-connectivity-between-instances/TestFoGConnection-GenerateParameters.sql -------------------------------------------------------------------------------- /how-to/how-to-test-failover-group-connectivity-between-instances/TestFoGConnection-RunTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-failover-group-connectivity-between-instances/TestFoGConnection-RunTests.sql -------------------------------------------------------------------------------- /how-to/how-to-test-failover-group-connectivity-between-instances/image-4dd11f01-e9df-4bb5-b5d9-456430317310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-failover-group-connectivity-between-instances/image-4dd11f01-e9df-4bb5-b5d9-456430317310.png -------------------------------------------------------------------------------- /how-to/how-to-test-failover-group-connectivity-between-instances/image-5c41e1c9-9fbc-4536-a8ef-b4fc03c63704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-failover-group-connectivity-between-instances/image-5c41e1c9-9fbc-4536-a8ef-b4fc03c63704.png -------------------------------------------------------------------------------- /how-to/how-to-test-tcp-connection-from-mi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-tcp-connection-from-mi/README.md -------------------------------------------------------------------------------- /how-to/how-to-test-tcp-connection-from-mi/TestTCPNetworkConnection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-tcp-connection-from-mi/TestTCPNetworkConnection.sql -------------------------------------------------------------------------------- /how-to/how-to-test-tcp-connection-from-mi/image-ebeea9ab-a74c-4777-8180-58435c4ce6c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/how-to-test-tcp-connection-from-mi/image-ebeea9ab-a74c-4777-8180-58435c4ce6c8.png -------------------------------------------------------------------------------- /how-to/sqlmi-how-to-all-in-one.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/how-to/sqlmi-how-to-all-in-one.sql -------------------------------------------------------------------------------- /presentations/2023/Azure_SQL_Managed_Instance_–_5_years_later.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/2023/Azure_SQL_Managed_Instance_–_5_years_later.pptx -------------------------------------------------------------------------------- /presentations/2024/pass 2024/01 - Becoming Azure SQL DBA – High Availability and BCDR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/2024/pass 2024/01 - Becoming Azure SQL DBA – High Availability and BCDR.pdf -------------------------------------------------------------------------------- /presentations/2024/pass 2024/02 - Becoming Azure SQL DBA - Security Compliance Threats Connectivity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/2024/pass 2024/02 - Becoming Azure SQL DBA - Security Compliance Threats Connectivity.pdf -------------------------------------------------------------------------------- /presentations/2024/pass 2024/03 - Becoming Azure SQL DBA – Performance monitoring, tuning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/2024/pass 2024/03 - Becoming Azure SQL DBA – Performance monitoring, tuning.pdf -------------------------------------------------------------------------------- /presentations/2024/pass 2024/04 - Becoming Azure SQL DBA – New opportunities Copilot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/2024/pass 2024/04 - Becoming Azure SQL DBA – New opportunities Copilot.pdf -------------------------------------------------------------------------------- /presentations/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/presentations/readme.txt -------------------------------------------------------------------------------- /toolkit/DllConvertToStream/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/DllConvertToStream/App.config -------------------------------------------------------------------------------- /toolkit/DllConvertToStream/DllConvertToStream.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/DllConvertToStream/DllConvertToStream.csproj -------------------------------------------------------------------------------- /toolkit/DllConvertToStream/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/DllConvertToStream/Program.cs -------------------------------------------------------------------------------- /toolkit/DllConvertToStream/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/DllConvertToStream/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolkit/GeneratedScript/commands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/GeneratedScript/commands.sql -------------------------------------------------------------------------------- /toolkit/Toolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/Toolkit.sln -------------------------------------------------------------------------------- /toolkit/Toolkit/SqlManagedInstanceToolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/Toolkit/SqlManagedInstanceToolkit.cs -------------------------------------------------------------------------------- /toolkit/Toolkit/Toolkit.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/Toolkit/Toolkit.sqlproj -------------------------------------------------------------------------------- /toolkit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/toolkit/readme.md -------------------------------------------------------------------------------- /videos/bits/001-provision-sqlmi-with-ps/provision-sqlmi-with-powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/videos/bits/001-provision-sqlmi-with-ps/provision-sqlmi-with-powershell.ps1 -------------------------------------------------------------------------------- /whats.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/sqlmi/HEAD/whats.new --------------------------------------------------------------------------------