column names in table DDL bug
torsten.strauss
Posts: 271 Silver 3
Hi Redgate Team,
SQL Prompt formats the following code
The problem here is that the column names Date and Day are converted to lowercase even they are surrounded by brackets, which is not correct.
Thanks for fixing!
SQL Prompt formats the following code
CREATE TABLE dimension.date
(
ID_Date int NOT NULL
, Date date NOT NULL
, [Date] date NOT NULL
, Day smallint NOT NULL
, [Day] smallint NOT NULL
, Test int NOT NULL
)
CREATE TABLE dimension.date
(
ID_Date int NOT NULL
, date date NOT NULL
, date date NOT NULL
, day smallint NOT NULL
, day smallint NOT NULL
, Test int NOT NULL
);
The problem here is that the column names Date and Day are converted to lowercase even they are surrounded by brackets, which is not correct.
Thanks for fixing!
Tagged:
Answers
Sean Quigley | Product Support Engineer | Redgate Software
Have you visited our Help Center?
SSMS 18.9.1
SQL Prompt Version 10.6.16.21150
Thanks!
Can you let me know what version of SQL Server that you're running this against just in case that plays a factor?
Thanks!
Sean Quigley | Product Support Engineer | Redgate Software
Have you visited our Help Center?