Alignment

Hi Redgate Team,

SQL Prompt will not align the Unique Constraint columns:

[code]
CREATE TABLE #t
(
    L int NOT NULL
,    ELEMENT_NAME nvarchar(150) NOT NULL UNIQUE
                                            (
                                                LEVEL    -- not aligned
                                            , MODULE_UID
                                            , TYPE_UID
                                            , ELEMENT_NAME
                                            , ELEMENT_UID_PARENT
                                            )
);
[/code]

Would be nice if you can fix this!

Thanks a lot!

Torsten
MVP Data Platform

Answers

  • Russell DRussell D Posts: 1,324 Diamond 5
    Hi Torsten, what version are you using? This aligns properly for me on 9.2.5.5933.

    Also any custom zoom level or anything special about your screen/resolution? Whilst I'm not sure it should matter I have qhd (2560x1440) monitors at 100% scaling.
    Have you visited our Help Centre?
Sign In or Register to comment.