* OracleMode : Physical Database > Pre & Post Scripts > Model Level1. Script Template 새로 생성 2. Code 란에 아래 내용 삽입 %ForEachTable() { COMMENT ON TABLE %TableName IS '%EntityName'; %ForEachColumn() { COMMENT ON COLUMN %TableName.%ColName IS '%AttName';} } * MSSQL%ForEachTable() {exec sp_addextendedproperty 'MS_Description' , '%EntityName' , 'user' , 'dbo' , 'table' , '%TableName'go%ForEachColumn() {e..