SQL script props

  • Thread starter Alexandre Chmakotine
  • Start date
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
 
S

Scot Becker

Hi Alexandre,

Irritating, isn't it?

Unfortunately there is no way to tweak this behavior. The only workaround is
Find... Replace.

FYI,
Scot.
................................................
Scot Becker

Orthogonal Software
www.orthogonalsoftware.com

ORM Blog: www.objectrolemodeling.com

To e-mail me, please use my first name at the domain listed above. All mail
sent to the reply-to address gets routed to a junk e-mail folder where it
will likely be deleted without being read.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top