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...
-
Updated
May 30, 2022 - Go
-
Updated
Apr 29, 2022 - Go
-
Updated
Jun 6, 2022 - TSQL
-
Updated
Mar 28, 2022 - C++
-
Updated
May 21, 2022 - PHP
-
Updated
Jun 6, 2022 - C++
-
Updated
Apr 25, 2022 - Java
-
Updated
Sep 25, 2019 - C
-
Updated
Jun 6, 2022 - C#
make a template that at minimum requires that users share:
- their
dbt-sqlserver
version, - the database product they are using (e.g. SQL Server 2012, Azure SQL)
- the relevant excerpt of their
log/dbt.log
-
Updated
Jun 6, 2022 - TSQL
-
Updated
Jun 18, 2018 - C#
-
Updated
Feb 25, 2022 - TSQL
-
Updated
Mar 29, 2019 - C#
-
Updated
May 27, 2022 - C#
-
Updated
Dec 24, 2019 - Elixir
-
Updated
May 22, 2022 - Go
-
Updated
Jan 7, 2022 - C#
-
Updated
Feb 12, 2018
-
Updated
Dec 3, 2021 - TSQL
-
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.
-
Updated
Jun 6, 2022 - TSQL
-
Updated
Feb 5, 2021
-
Updated
Aug 18, 2021 - C#
-
Updated
Apr 13, 2022 - F#
-
Updated
Jan 15, 2021 - C#
-
Updated
Oct 5, 2018 - HTML
-
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 EXISTS
tablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;
On stepping through the code, it seems that the issu