SQL Pretty Printer provides the ability to capitalize user defined identifier such as stored procedure name start with sp_ in SQL Server.
name: case_prefix_identitfer
setting path: capitalisation -> Prefix_ident
name: identifier_prefix_list
setting path: capitalisation -> Identifier prefix list
@query,
n’@age int’,
@age = 25
After setting case_prefix_identitfer to uppercase and identifier_prefix_list to sp_,
@query,
n’@age int’,
@age = 25
