A
Alexandre Chmakotine
Hello,
Is it possible to specify the use of brackets for the name delimeting while
generation a DDL script for the SQL Server database instead of quotes or
double quotes.
Ex:
create table MyTable (
'ID' int,
'Name' nvarchar(2555)
)
go
to get
create table MyTable (
[ID] int,
[Name] nvarchar(2555)
)
go
TIA,
Alex Chmakotine
Is it possible to specify the use of brackets for the name delimeting while
generation a DDL script for the SQL Server database instead of quotes or
double quotes.
Ex:
create table MyTable (
'ID' int,
'Name' nvarchar(2555)
)
go
to get
create table MyTable (
[ID] int,
[Name] nvarchar(2555)
)
go
TIA,
Alex Chmakotine