Difference between revisions of "ETLRoute Table"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="SQL"> CREATE TABLE "ETLRoute" ( "LoadConfigurationID" integer DEFAULT 0 NOT NULL, "FileTypeID" smallint DEFAULT 0 NOT NULL, "ETLQueueName" t...") |
|||
| Line 1: | Line 1: | ||
| + | The <code>ETLRoute</code> controls how types of files get routed to ETL exploitation processes. | ||
| + | |||
<syntaxhighlight lang="SQL"> | <syntaxhighlight lang="SQL"> | ||
CREATE TABLE "ETLRoute" ( | CREATE TABLE "ETLRoute" ( | ||
Revision as of 06:21, 26 May 2020
The ETLRoute controls how types of files get routed to ETL exploitation processes.
CREATE TABLE "ETLRoute" (
"LoadConfigurationID" integer DEFAULT 0 NOT NULL,
"FileTypeID" smallint DEFAULT 0 NOT NULL,
"ETLQueueName" text NOT NULL
);