PoorMansTSqlFormatter icon indicating copy to clipboard operation
PoorMansTSqlFormatter copied to clipboard

A small free .Net and JS library (with demo UI, command-line bulk formatter, SSMS/VS add-in, notepad++ plugin, winmerge plugin, and demo webpage) for reformatting and coloring T-SQL code to the user's...

Results 108 PoorMansTSqlFormatter issues
Sort by recently updated
recently updated
newest added

Can you plead add a shortcut to Notepad++ plugin to change T-SQL keywords to uppercase .

This is what happens: ``` declare @var float = ( select * ) if ( ( select 1 ) like 1 ) print 1 ``` But I think it is...

Is it possible to add a training semi colon to the end of statements please? Because: Incorrect syntax near the keyword 'with'. If this statement is a common table expression,...

Hi, I just wondered if the Parse Tree was available? I would like to parse the tree and pull out from and where clauses for an optimisation tool I am...

when I was using React,with ES6, I import FormatterLib from 'poor-mans-t-sql-formatter,the chrome console print a mistask,like the title.ps: Bridge.$currentAssembly = new System.Reflection.Assembly("mscorlib");

Felipe Gualberto points out that Portuguese a tilde-carrying characters are being mangled by the Poor Man's T-SQL Formatter plugin in Notepad++: ```sql select * from Mão where Name = 'Felipe'...

priority-high

It's the first time I'm testing this extension, and I don't find a option to format correctly protected words when they are used like a property in a table. For...

formatting alter table alter column statement add additional empty line in-between: > alter table dbo.TableName > >alter column ColumnName decimal(24, 2) not null

priority-high
priority-medium
in-progress

Does SSMS Extension have a "Obfuscate/Minify" as it is in online formatter? I did not find it in the extension.

Ty to format some TSQL containing IF and THROW, you get this wrong result with unwanted indents ```sql IF @persistence_name_suffix IS NULL THROW 51001 , '@persistence_name_suffix is null' , 1;...