View files which are intended to be referenced by feature attributes.
Output
Column | Type | Description |
|---|---|---|
filename | VARCHAR2 | The file name |
reference_count | NUMBER | The number of feature attributes referencing this file. This includes current and obsolete features. |
Example
-- Find files which are not referenced by features. select filename from FEATURE_ATTRIBUTE_FILE_VW where reference_count = 0 order by filename; |