Format profile for CREATE TYPE

Discussion of open issues, suggestions and bugs regarding database management and development tools for SQL Server
Post Reply
JDSX
Posts: 7
Joined: Thu 21 Jul 2016 20:15
Location: Brooklyn, NY
Contact:

Format profile for CREATE TYPE

Post by JDSX » Thu 04 Jan 2018 17:15

Hi,

Is there any way to define formatting for a CREATE TYPE statement? For example, I want the below to indent within parentheses and align types similar to a what's possible for a CREATE TABLE statement:

Code: Select all

CREATE TYPE [app].[OperationResultTable] AS TABLE
(
ort_id int IDENTITY,
message_code varchar(100) NOT NULL,
severity int NOT NULL,
field_name sysname NULL,
message nvarchar(max) NOT NULL,
operation_details nvarchar(max) NULL,
call_info nvarchar(max) NULL
);

alexa

Re: Format profile for CREATE TYPE

Post by alexa » Tue 09 Jan 2018 17:52

We will review this post and will answer you as soon as possible.

Post Reply