2017-09-01から1ヶ月間の記事一覧

SQL Server 2017 の GA が発表されてました!

Ignite で発表があったようです。 10/2 GA みたい。 Microsoft for the Modern Data Estate | SQL Server Blog 後で読む。

T-SQL CREATE TABLE での FOREIGN KEY の指定で、ドキュメントに載ってない方法で出来た。。

CREATE TABLE (Transact-SQL) | Microsoft Docs ドキュメントでは、CREATE TABLE での FOREIGN KEY 指定はテーブルで指定する方法と列で指定する方法の2パターンあります。 テーブル < table_constraint > ::= [ CONSTRAINT constraint_name ] { { PRIMARY K…

.NET Core で SqlClient と TransactionScope は 2.1 から?

Close はしてるけど、Milestone は 2.1.0 ってなってた。 Support System.Transactions in SqlClient for .NET Core · Issue #12534 · dotnet/corefx · GitHub

.NET Core 2.0 の TransactionScope + SqlClient でハマってる。。

まだ対応してない? using System; using System.Data.SqlClient; using System.Transactions; namespace ConsoleApp3 { class Program { static void Main(string[] args) { var connstr = @"~"; using (var tran = new TransactionScope()) using (var co…