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)
)
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.
Should look like: