SE の雑記

SQL Server の情報をメインに Microsoft 製品の勉強内容を日々投稿

Archive for 10月, 2014

クエリからのバイナリデータのインポート/エクスポート

leave a comment

クエリから SQL Server のバイナリ (varbinary(max)) に対してデータをインポート / エクスポートする際のメモを。

Using OPENROWSET to read large files into SQL Server
Exporting binary file data (images) from SQL via a stored procedure
Exporting Binary Files To The File System

を参考にするとよいかと。

SSIS で実行する場合は以下が参考になるかと。
Import multiple images to SQL Server using SSIS
Export images from a SQL Server Table to a Folder with SSIS
Store Images,Documents,PDF (BLOB) Files Into SQL Server Using SSIS
Retrive Image,Document,PDF (BLOB) Files Stored In SQL Server Tables Using SSIS

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 28th, 2014 at 10:45 pm

Posted in SQL Server

Tagged with

特定のセッションで実行されているクエリが複数スレッドで実行されているかを確認

leave a comment

以下のようなクエリを実行してみます。

DECLARE @tmp char(500)
SELECT @tmp = Col1 FROM [dbo].TempDBTest ORDER BY Col1 DESC OPTION (MAXDOP 0)
GO

 

この時の実行プランは以下のようになります。

image

実行プランからは複数のスレッドによる並列クエリとして実行されていることが確認できます。

実行中のセッションについて、この確認を実行プラン以外から確認する方法を。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 22nd, 2014 at 11:09 pm

Posted in SQL Server

Tagged with

トランザクションレプリケーションの基本的な仕組み

one comment

トランザクションレプリケーションの基本的な仕組みを調べたことがなかったのでメモとして。
今回はプッシュサブスクリプションを利用しています。
レプリケーションについては、兄貴SQL Server replication overviewSQL Server のレプリケーション から情報を追ってみると良いかと。
Read the rest of this entry »

Written by Masayuki.Ozawa

10月 13th, 2014 at 2:16 pm

Posted in SQL Server

Tagged with

Predictable Performance から見るパフォーマンスレベルに応じたリソースの調整

leave a comment

 ぺんぺん師匠Azure SQL Database Benchmark (ベンチマーク)の詳細説明動画が公開!という記事で紹介されている動画のシリーズで面白いものがあったので、それに倣ってパフォーマンスレベルのリソース調整について少し。

Azure SQL Database for Business-Critical Cloud ApplicationsAzure SQL Database for Business-Critical Cloud Applications: (03) Predictable Performance を参考にさせていただいています。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 9th, 2014 at 2:39 pm

Posted in SQL Database

Tagged with

sys.resource_stats を使用した Web/Business エディションの移行先検討

one comment

先日、ぺんぺん師匠Azure sql database 入門 2014年10月版
[slideshare id=39862630&doc=azuresqldatabase-141004001720-conversion-gate01]
sys.resource_stats を Web/Business で使用すると、S2 を基準とした使用率を表示してくれるという情報をお話しされていてお~と思ったので試してみました。
# 現状、Web / Business の場合は S2 を基本としているという記載は sys.resource_stats の英語版の情報のみ記載されているようですね。
Azure SQL Database introduces new near real-time performance metrics
Azure SQL Database に新たなほぼリアルタイムのパフォーマンス指標を追加
に書かれていたようなのですが下の方は全く読んでいませんでした。
やはり、SQL Database についてはぺんぺん師匠No.1 にぶん投げるのがよさそうです。
Read the rest of this entry »

Written by Masayuki.Ozawa

10月 8th, 2014 at 7:16 am

Posted in SQL Database

Tagged with

森鷗外るでみる SQL Server のデータ格納

leave a comment

Unicode 文字列の格納をテストする際に [森鷗る] を使うことがよくあるかと思います。
この文言を使って SQL Server のデータ格納を見てみようかと。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 7th, 2014 at 4:31 pm

Posted in SQL Server

Tagged with

森?外るでみる SQL Server のデータ格納

leave a comment

Unicode 文字列の格納をテストする際に [森?る] を使うことがよくあるかと思います。
この文言を使って SQL Server のデータ格納を見てみようかと。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 7th, 2014 at 4:31 pm

Posted in SQL Server

Tagged with

SQL Server 収穫祭に登壇してきました

leave a comment

2014/10/4 (土) の SQL Server 収穫祭 で SQL Database の DTU を研究してみる という内容で登壇してきました。
資料については http://1drv.ms/1x8OUIc で公開していますが、これだけだと少しわかりづらいところがありますので、どこかでフォローアップの記事を書きたいと思います。

Written by Masayuki.Ozawa

10月 5th, 2014 at 11:00 pm

Posted in SQL Database

Tagged with

Exchange Online のジャーナル ルールを設定

leave a comment

Office 365 のジャーナル ルールを触っていた際に結構癖があるな~とおもったので軽くまとめてみたいと思います。

TechNe で該当する箇所は、ジャーナル になるかと思いますが、Exchange Online アーカイブ・コンプライアンス機能 活用ガイド のほうがわかりやすいかもしれないですね。

Office 365 の機能は、オンプレミスのものと合致することが多いので必要な情報探すのが大変ですね…。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 5th, 2014 at 3:49 pm

Posted in Office 365

Tagged with

Windows Server Technical Preview の WSFC の Cloud Witness

leave a comment

Windows Server Technical Preview の新機能に関しては、What’s New in the Windows Server Technical Preview に記載されています。

ここにかかれているかが見つけられていないのですが WSFC で興味深い機能があったのでご紹介を。
What’s New in Failover Clustering in Windows Server Technical Preview に見当たらなかったのですよね。

Read the rest of this entry »

Written by Masayuki.Ozawa

10月 3rd, 2014 at 9:32 pm