Hi!

It seems to be impossible to allign the first value in the value list to the succeeding.
Also brackets and tabs are not working as expected.
INSERT	dbo.IAMPage
(
	col1
,	col2
,	col3
)
VALUES
(
	REPLICATE('d', 5000)
	, REPLICATE('e', 5000)
	, REPLICATE('f', 8000)
)

, (
	REPLICATE('g', 5000)
,	REPLICATE('h', 5000)
,	REPLICATE('i', 8000)
)

Should look like:
INSERT	dbo.IAMPage
(
	 col1
,	col2
,	col3
)
VALUES
(
	 REPLICATE('d', 5000)
,	REPLICATE('e', 5000)
,	REPLICATE('f', 8000)
)
, 
(
	 REPLICATE('g', 5000)
,	REPLICATE('h', 5000)
,	REPLICATE('i', 8000)
)
torsten.strauss
0

Comments

1 comment

  • Michael Clark
    Hi Torsten,

    Could you confirm that you are using our new beta formatting system?

    We will add this to our formatting backlog of items to consider before releasing the full version (reference SP-6070).

    Thanks,
    Michael
    Michael Clark
    0

Add comment

Please sign in to leave a comment.