microsoft-sql-server
Microsoft's SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality. It originated from the Sybase SQL Server 4.x codebase and Transact-SQL dialect (t-sql), but it has forked significantly since then.
SQL Server is available in multiple versions (typically identified by release year), each of which are subdivided into editions to distinguish between product functionality. The latest released version is SQL Server 2019 which was released on November 4th, 2019.
Here are 250 public repositories matching this topic...
Universal command-line interface for SQL databases
-
Updated
May 30, 2022 - Go
Command line tool to generate idiomatic Go code for SQL databases supporting PostgreSQL, MySQL, SQLite, Oracle, and Microsoft SQL Server
-
Updated
Apr 29, 2022 - Go
sp_Blitz, sp_BlitzCache, sp_BlitzFirst, sp_BlitzIndex, and other SQL Server scripts for health checks and performance tuning.
-
Updated
Jun 6, 2022 - TSQL
Automatically identify anti-patterns in SQL queries
-
Updated
Mar 28, 2022 - C++
Independent query builders for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server.
-
Updated
May 21, 2022 - PHP
Universal cheminformatics toolkit, utilities and database search tools
-
Updated
Jun 6, 2022 - C++
R2DBC Driver for Microsoft SQL Server using TDS (Tabular Data Stream) Protocol
-
Updated
Apr 25, 2022 - Java
Native Microsoft SQL Server client for iOS
-
Updated
Sep 25, 2019 - C
DBA Dash - SQL Server Monitoring Tool
-
Updated
Jun 6, 2022 - C#
make a template that at minimum requires that users share:
- their
dbt-sqlserverversion, - the database product they are using (e.g. SQL Server 2012, Azure SQL)
- the relevant excerpt of their
log/dbt.log
Open-source Repository of Useful Scripts and Solutions for the Microsoft Data Platform
-
Updated
Jun 6, 2022 - TSQL
StackOverflow Data Dump Importer. Forked from https://bitbucket.org/bitpusher/soddi/ after the original author passed away.
-
Updated
Jun 18, 2018 - C#
A collection of cool and useful tools, procedures and scripts for the discerning DBA
-
Updated
Feb 25, 2022 - TSQL
Full Text Search for Microsoft SQL Server with Entity Framework
-
Updated
Mar 29, 2019 - C#
Simple database wrapper for Microsoft SQL Server, MySQL, PostgreSQL, and Sqlite written in C# supporting dynamic query building and nesting using expressions.
-
Updated
May 27, 2022 - C#
Microsoft SQL Server Adapter for Elixir
-
Updated
Dec 24, 2019 - Elixir
SQL/NoSQL DB Guide. Learn about SQL/NoSQL databases & Distributed Systems.
-
Updated
May 22, 2022 - Go
RESTful HTTP/HTTPS server for Microsoft SQL Server, MySQL, and PostgreSQL
-
Updated
Jan 7, 2022 - C#
SQL Server Blocked Process Report Viewer
-
Updated
Feb 12, 2018
This repo is the home of various SQL-Server-Tools
-
Updated
Dec 3, 2021 - TSQL
Implementation of ULID generator For Microsoft SQL Server
-
Updated
Jun 14, 2017 - SQLPL
The https://github.com/aws/aws-sdk-go is still actively maintained and new versions are released daily.
For Go 1.15+ there is an AWS SDK Go v2 available: https://github.com/aws/aws-sdk-go-v2.
With added support for 1.17, migrator moved supported versions to 1.15+. migrator can now make the switch to new AWS SDK Go.
sp_Develop can be used by database developers, software developers and for performing database code (smell) reviews.
-
Updated
Jun 6, 2022 - TSQL
A set of instructions, command and techniques that help during an Active Directory Assessment.
-
Updated
Feb 5, 2021
Converts simple query to SQL Server full-text-search query.
-
Updated
Aug 18, 2021 - C#
Fable Node client for Microsoft SQL Server, built around a node-mssql binding
-
Updated
Apr 13, 2022 - F#
Query Migration Tool for Microsoft SQL Server to SAP HANA
-
Updated
Jan 15, 2021 - C#
A collection of legacy SugarCRM Community Edition installers, upgrade packages, documentation, etc. collected from the SourceForge project prior to the files being removed from the site.
-
Updated
Oct 5, 2018 - HTML
This project is a simple E-Commerce website based on ASP.NET MVC
-
Updated
Aug 19, 2018 - PowerShell


https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTStablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;On stepping through the code, it seems that the issu