CARIS HPD : HPD® Server API : Feature Data : Feature Object Views : FEATURE_ATTRIBUTE_FILE_VW
 

FEATURE_ATTRIBUTE_FILE_VW

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;