Hi Guys,
I am trying to generate the Create Table statements from a SQL 2005 database using MyGeneration. Everything works fine, execpt I don't know how to get the default or check constraint for a column.
For example, if I have a column and MS SQL Server Management studio can generate the create statements for this column as:
[ConcurrencyId] [int] NOT NULL CONSTRAINT [DF_AttributeDataType_ConcurrencyId] DEFAULT ((0)),
How do I get the \"CONSTRAINT [DF_AttributeDataType_ConcurrencyId] \" part?
Thanks!
Wenbiao
