Logical-Only and Physical-Only Status of Attributes
Example: Query for returning the logical-only and physical-only status of all attributes
SELECT TRAN(E.NAME) || '.' || TRAN(A.NAME) AS 'NAME',
ISNULL( A.IS_LOGICAL_ONLY, 'F') AS 'LOGICAL ONLY', ISNULL( A.IS_PHYSICAL_ONLY, 'F') AS 'PHYSICAL ONLY'
FROM M0.ENTITY E INNER JOIN M0.ATTRIBUTE A ON E.ID@ = A.OWNER@ ORDER BY 1
Copyright © 2018 erwin, Inc.
All rights reserved.
|
|