Loading Serviceability Extended Attributes Data - serviceability_extended_attributes - Latest

Serviceability Extended Attributes Getting Started Guide

Product type
Data
Portfolio
Enrich
Product family
Enrich Addresses > World Addresses
Product
Address Fabricâ„¢ Data > Serviceability Extended Attributes
Version
Latest
ft:locale
en-US
Product name
Serviceability Extended Attributes
ft:title
Serviceability Extended Attributes Getting Started Guide
Copyright
2023
First publish date
2021
ft:lastEdition
2025-02-05
ft:lastPublication
2025-02-05T08:56:26.227000
  1. Download the product delivery file
  2. Extract the delivery file and find the data text file
  3. Open the SEA Create Table script in a text editor and confirm that the table name is set to serviceability_extended_attributes
  4. Run the Create Table script
  5. After the table structure has been created, copy data using the PostgreSQL Copy command:
    copy serviceability_extended_attributes from program 'cmd /c
    "type <path of data file>"' with (format csv ,delimiter '	',header true)

    If this syntax does not work, the alternate command shown below can be used:

    copy serviceability_extended_attributes from program 'cmd /c
    "type <path of data file>"' with (format csv ,delimiter e'\t',header true)
    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, delimiter is tab)

    <e'/t'>: Specifies alternate quoting for tab delimiter

    Example:
    copy serviceability_extended_attributes from program 'cmd /c "type F:\serviceability_extended_attributes\
    serviceability_extended_attributes.txt"' with (format csv ,delimiter '    ',header true)
    Alternate command:
    copy serviceability_extended_attributes from program 'cmd /c "type F:\serviceability_extended_attributes\
    serviceability_extended_attributes.txt"' with (format csv ,delimiter e'\t',header true)