Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Devops Exercises | 58,240 | a day ago | 48 | other | Python | |||||
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions | ||||||||||
Sql Server Samples | 8,958 | 6 | 4 days ago | 17 | December 20, 2022 | 215 | other | |||
Azure Data SQL Samples - Official Microsoft GitHub Repository containing code samples for SQL Server, Azure SQL, Azure Synapse, and Azure SQL Edge | ||||||||||
Azuredatastudio | 7,240 | 5 | 3 | 18 hours ago | 1 | April 18, 2019 | 2,104 | other | TypeScript | |
Azure Data Studio is a data management and development tool with connectivity to popular cloud and on-premises databases. Azure Data Studio supports Windows, macOS, and Linux, with immediate capability to connect to Azure SQL and SQL Server. Browse the extension library for more database support options including MySQL, PostgreSQL, and MongoDB. | ||||||||||
Steampipe | 5,568 | 3 | 3 hours ago | 495 | July 31, 2023 | 107 | agpl-3.0 | Go | ||
Use SQL to instantly query your cloud services (AWS, Azure, GCP and more). Open source CLI. No DB required. | ||||||||||
Cloudquery | 5,144 | 7 | 3 hours ago | 345 | May 22, 2023 | 339 | mpl-2.0 | Go | ||
The open source high performance data integration platform built for developers. | ||||||||||
Fluentmigrator | 2,992 | 548 | 163 | 2 days ago | 52 | January 14, 2022 | 221 | apache-2.0 | C# | |
Fluent migrations framework for .NET | ||||||||||
Sql Server Maintenance Solution | 2,464 | 5 months ago | 359 | mit | TSQL | |||||
SQL Server Maintenance Solution | ||||||||||
Vscode Sqltools | 1,281 | 1 | 61 | a month ago | 13 | October 16, 2022 | 191 | mit | TypeScript | |
Database management for VSCode | ||||||||||
Sqlworkshops | 676 | 10 months ago | 3 | Jupyter Notebook | ||||||
SQL Server Workshops | ||||||||||
Azure Cosmos Dotnet V3 | 663 | 54 | 245 | 5 hours ago | 93 | July 11, 2022 | 340 | mit | C# | |
.NET SDK for Azure Cosmos DB for the core SQL API |
This client library enables client applications to connect to Azure Cosmos DB for NoSQL. Azure Cosmos DB is a globally distributed, multi-model database service. For more information, refer to https://azure.microsoft.com/services/cosmos-db/.
CosmosClient client = new CosmosClient("https://mycosmosaccount.documents.azure.com:443/", "mysupersecretkey");
Database database = await client.CreateDatabaseIfNotExistsAsync("MyDatabaseName");
Container container = await database.CreateContainerIfNotExistsAsync(
"MyContainerName",
"/partitionKeyPath",
400);
// Create an item
dynamic testItem = new { id = "MyTestItemId", partitionKeyPath = "MyTestPkValue", details = "it's working", status = "done" };
ItemResponse<dynamic> createResponse = await container.CreateItemAsync(testItem);
// Query for an item
using (FeedIterator<dynamic> feedIterator = container.GetItemQueryIterator<dynamic>(
"select * from T where T.status = 'done'"))
{
while (feedIterator.HasMoreResults)
{
FeedResponse<dynamic> response = await feedIterator.ReadNextAsync();
foreach (var item in response)
{
Console.WriteLine(item);
}
}
}
Install-Package Microsoft.Azure.Cosmos
This project has adopted the Microsoft Open Source Code of Conduct.
Resources:
For details on contributing to this repository, see the contributing guide.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.