Toggle menu

Data Importer

This legacy importer uses ColdFusion scripts. It has been replaced by new functionality in the API Server. See Data Import from CSV for the new documentation.

The data importer provides a range of tools that allow you to import CSV data into custom tables in the iCM database. You can create and delete tables, import new versions of data, purge old data, and index imported data in the platform's search engine.

Data is imported using importer scripts, which are tailored to the data you need to import. As well as creating tables and defining columns and mappings, these scripts can also include row filters and custom functions to transform the CSV data before it's imported.

Database and Importer Details

All functions take a parameter named ctx, which provides the context for this import. As well as details like the datasource, database type and importer module, this is also where batched imports are cached. Database details will usually be the values set in iCM's autoconfig, and referenced at the start of the importer script:

<cfset ds=APPLICATION.datasource>
<cfset dt=APPLICATION.databasetype>
<cfmodule template="/icm/admin/dataimport/importer_v1.cfm" name="di" datasource=#ds# databasetype=#dt#>

This is then used in each function as:

<cfset existingTable = di.tableExists(ctx=#di#, tablename=#tablename#)>

Tables

All tables created by the data importer are prefixed DI_ It is not possible to import data into any of the standard iCM database tables.

Functions

tableExists

Tests whether a data import table already exists.

makeTable

Makes a data import table. Will return an error if the table already exists.

dropTable

Deletes a data import table.

importData

Imports data from a CSV file into a data import table.

indexData

Indexes data from a table into the SOLR site collection.

deleteOldSolrData

Deletes a collection from SOLR.

deleteOldTableData

Deletes old versions of imported data from a table.

Examples

Creating a table, importing csv data, setting up mappings and applying a filter.

Share this page

Facebook icon Twitter icon email icon

Print

print icon