Loading Property Attributes Assessment Field Value Key Data - property_attributes_assessment - Latest

Property Attributes Assessment Getting Started Guide

Product type
Data
Portfolio
Enrich
Product family
Enrich Properties > Property Features
Product
Property Attributes Assessment
Version
Latest
ft:locale
en-US
Product name
Property Attributes Assessment
ft:title
Property Attributes Assessment Getting Started Guide
Copyright
2025
First publish date
2020
ft:lastEdition
2025-12-24
ft:lastPublication
2025-12-24T08:35:24.668000
  1. Download the Field Value Key data file.
  2. Create the table structure in the database using the Create Table script. Be sure to change the table name in the template to asmt_field_value_key.
  3. Once the table structure has been created, copy data using the PostgreSQL Copy command:
    copy <table_name> from '<path_to_text_file>\<text_file_name.txt>' delimiter '|' csv HEADER;
    Syntax:

    <table_name>: Name of table created using Create Table script

    <path_to_text_file>: Path to extracted data text file

    <text_file_name.txt>: Extracted data text file name, including file extension

    delimiter: Defines the text delimiter (in this case, the pipe character)

    csv HEADER : Specifies header

    Example:
    copy asmt_field_value_key from 'E:\PAD\
    property_attributes_assessment_field_value_key_usa.txt' delimiter '|' csv header