Procedure - complete - Latest

GroundView: Complete US Demographic Estimates and Projections Data Suite Getting Started Guide

Product type
Data
Portfolio
Enrich
Product family
Enrich Demographics > Demographic Estimates and Projections
Product
GroundView Demographics > Complete
Version
Latest
ft:locale
en-US
Product name
GroundView: Complete
ft:title
GroundView: Complete US Demographic Estimates and Projections Data Suite Getting Started Guide
Copyright
2024
First publish date
2016
ft:lastEdition
2025-09-26
ft:lastPublication
2025-09-26T16:42:02.443000
L1_Product_Gateway
Enrich
L2_Product_Segment
Data
L3_Product_Brand
Precisely Demographics
L4_Investment_Segment
Precisely Demographics
L5_Product_Group
Demographic E&P
L6_Product_Name
E&P Demographics
Note: The following procedure uses Consumer Spend Potential as an example in command syntax. All other GeoEnrichment Demographics datasets can be uploaded by following the same steps and substituting the appropriate dataset name.
  1. Download the product delivery file.
  2. Extract the delivery file and find the text data file.
  3. Create the table structure in the database using the product-specific Create Table script. Be sure to change the table name in the template to the dataset you are loading. If, for example, you are loading the Consumer Spend dataset, the table should be named consumer_spend.
  4. Once the table structure has been created, copy data using the PostgreSQL Copy command:
copy <Table_name> from program 'cmd /c "type <FILE PATH>"' with 
(format csv ,delimiter '|',header true)

Syntax:

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

<path_to_text_file>: Path to extracted data 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 quote e'\b': Specifies quoting.

Example – Linux:

copy groundview_consumer_spend_dataset1_cy_attribute from program 
'cmd /c "type ’mnr/GROUNDVIEW_COMPLETE_USA_2025_TXT/data
/geoenrichment/ge_gv_usa_consumer_spend1_cy.txt"'
with (format csv ,delimiter '|',header true)

Example – Windows:

copy groundview_consumer_spend_dataset1_cy_attribute from program 
'cmd /c "type E:\GROUNDVIEW_COMPLETE_USA_2025_TXT\data
\geoenrichment\ge_gv_usa_consumer_spend1_cy.txt"'
with (format csv ,delimiter '|',header true)