都内で働くSEの技術的なひとりごと / Technical soliloquy of System Engineer working in Tokyo

都内でサラリーマンやってます。SQL Server を中心とした (2023年からは Azure も。) マイクロソフト系(たまに、OSS系などマイクロソフト以外の技術も...)の技術的なことについて書いています。日々の仕事の中で、気になったことを技術要素関係なく気まぐれに選んでいるので記事内容は開発言語、インフラ等ばらばらです。なお、当ブログで発信、発言は私個人のものであり、所属する組織、企業、団体等とは何のかかわりもございません。ブログの内容もきちんと検証して使用してください。英語の勉強のため、英語の

やっぱりこんなツールがあるのね、と思って記事にしてみた

 SQL の整形ツールです。SQL Server Management Studio向けのアドイン、Windows フォームベースのアプリケーション、コマンドラインアプリケーション、WinMerge のアドイン、NotePad++ のアドインが提供されています。

  • SSMS and Visual Studio Add-In (setup program): SqlFormatterSSMSAddIn.Setup.1.5.3.msi (9730 downloads for this version, about 30000 for previous versions). 
  • WinForms App (simple exe): SqlFormatterWinForms.1.5.1.zip (1637 downloads this version, about 11500 for previous versions)
  • Command-line bulk formatting utility (simple exe): SqlFormatter.1.5.1.zip (713 downloads for this version, about 2600 for previous versions)
  • WinMerge Plugin for SQL Script comparison (setup program): PoorMansTSqlFormatterWinMergePlugin.Setup.1.5.1.msi (583 downloads for this version, about 2000 for previous versions) (WinMerge is a free GPL-licensed file comparison tool, available at winmerge.org)
  • Notepad++ plugin: It's recommended to use the Notepad++ plugin manager if possible (Notepad++ is an amazing free GPL-licensed text editor, available at notepad-plus-plus.org; it has a very rich plugin community available through the "Plugin Manager" plugin that is installed by default).

If you really want to install the plugin manually, you can get it from here: SqlFormatterNppPlugin.1.5.1.zip (47187 downloads for the latest version, about 95000 for previous versions) and unzip the entire contents of the ZIP file (1 DLL + 1 folder containing other DLLs and stuff) into your Notepad++ install folder's "plugins" subfolder, eg "C:\Program Files\Notepad++\plugins". If you get an error about the plugin not supporting unicode, then the wrong DLL is in the plugins folder, simply delete the incorrect DLLs and start again (please contact me for help if you have any issues with this).  

 長い SQL 文を書くと、タブとかスペースの位置を変えるのに結構苦労したりしますよね。便利なツールです。