I am generating SQL server DDL. The DDL includes collation such as,
CREATE TABLE [MyTable]
(
[PrimaryKey] int NOT NULL ,
[CharCol] varchar(10) COLLATE Latin1_General_CI_AS NOT NULL
)
go
There is not a switch in the forward engineer options to disable generating the keyword COLLATE.
How do I quickly remove the COLLATE statements when I Forward Engineer SQL Server SQL DDL?
Solution:
The way to remove the collate statements is,
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center