IS_DEFAULT

This function evaluates to a single character and is applied to columns that contain property values. It will evaluate to T if the value in the property is a default value assigned by erwin DM, otherwise, it will evaluate to F.

For example, when you create a new Validation_Rule object in erwin DM, it is assigned an application-generated name of the form Validation_Rule_XX where XX is the ID. A query would show that this is a default name.

SELECT NAME, IS_DEFAULT(NAME)
FROM M0.VALIDATION_RULE

If you change the name and re-execute the query, the status changes.

Back to Top