Skip to main content

uploaded_file_access

Log of PHI access to uploaded file contents

Primary Key:Checks:
  • uploaded_file_access_row_check - CASE WHEN (access_type = 'Read'::text) THEN (row_count IS NOT NULL) WHEN (access_type = 'Analyze'::text) THEN ((row_offset = 0) AND (row_count IS NULL)) ELSE NULL::boolean END
Foreign Keys:Indexes:
ColumnData TypeNullableIndexedDescription
uploaded_file_access_idbigintNoYesSnowflake ID of the access record
uploaded_file_idbigintNoYesID of the uploaded file that was accessed
access_typetextNoNoType of access performed: 'Read' for raw data, 'Analyze' for data type inference
columnstext[]YesNoColumns requested, if not set will give all columns.
row_offsetbigintNoNoOffset of the rows served.
row_countbigintYesNoNumber of rows served. NULL means the entire file.
accessed_bybigintNoYesID of the user who accessed the file
accessed_attimestamp with time zoneNoNoWhen the access occurred.