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 as an example in command syntax. All other GeoEnrichment Demographics datasets can be uploaded by the following 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. If a new format (FMT) file needs to be created, follow the steps contained in https://msdn.microsoft.com/en-us/library/ms191516.aspx.
  5. Issue the following command:
bcp <database_name>.dbo.<table_name> format nul -c -f 
<path>\<format_file_name.fmt> -t "|" -S -T

Syntax:

-T: Specifies that the bcp utility connects to SQL Server with a trusted connection using integrated security. If -T is not specified, the -U and -P parameters (username and password, respectively) must be passed in order to log in.

-t "|": Specifies that the format file will be generated using the pipe character as a delimiter.

Example:

bcp PAD.dbo.consumer_spend format nul -c -f 
C:\Consumer_Spend\consumer_spend.fmt -t "|" -S -T
Note: Once the format file has been generated, \r needs to be removed from the file in order to load data successfully.