Cloud

Build 24.0.9175
  • Oracle Eloqua
    • Getting Started
      • Establishing a Connection
      • Creating a Custom OAuth Application
      • Fine-Tuning Data Access
      • SSL Configuration
      • Firewall and Proxy
    • Data Model
      • Tables
        • Account
        • AccountGroup
        • Campaign
        • CampaignResponses
        • Contact
        • ContactEmailSubscription
        • ContactSegment
        • ContentSection
        • Custom
        • Email
        • EmailFooter
        • EmailGroup
        • EmailHeader
        • Event
        • ExternalActivity
        • ExternalAsset
        • Folder
        • Form
        • Hyperlink
        • LandingPage
        • Microsite
        • OptionList
        • OptionListElement
      • Views
        • AccountField
        • AccountView
        • Activity_Bounceback
        • Activity_CampaignMembership
        • Activity_EmailClickThrough
        • Activity_EmailOpen
        • Activity_EmailSend
        • Activity_EmailSubscribe
        • Activity_EmailUnsubscribe
        • Activity_FormSubmit
        • Activity_PageView
        • Activity_WebVisit
        • CampaignElement
        • CampaignField
        • CampaignFolder
        • ContactField
        • ContactFilter
        • ContactFilterFolder
        • ContactList
        • ContactListFolder
        • ContactScoringModelFolder
        • ContactSegmentData
        • ContactSegmentFolder
        • ContactView
        • ContentSectionFolder
        • Dependencies
        • DynamicContent
        • DynamicContentFolder
        • EmailDeployment
        • EmailFolder
        • EmailFooterFolder
        • EmailHeaderFolder
        • ExternalType
        • FieldMerge
        • FieldMergeFolder
        • FormElement
        • FormFolder
        • FormProcessingStep
        • HyperlinkFolder
        • Image
        • ImageFolder
        • ImportedFile
        • ImportedFileFolder
        • LandingPageFolder
        • LeadScoringModel
        • PageTag
        • PageTagGroup
        • Program
        • Rejects
        • Style
        • Syncs
        • Template
        • TemplateCategory
        • TrackedUrl
        • User
        • Visitor
        • VisitorProfileField
      • Stored Procedures
        • ClearImportDefinitions
        • CreateExportDefinition
        • DeleteExportData
        • GetExportDefinition
        • GetSyncLogs
        • SubscribeContacts
        • UnsubscribeContacts
      • System Tables
        • sys_catalogs
        • sys_schemas
        • sys_tables
        • sys_tablecolumns
        • sys_procedures
        • sys_procedureparameters
        • sys_keycolumns
        • sys_foreignkeys
        • sys_primarykeys
        • sys_indexes
        • sys_connection_props
        • sys_sqlinfo
        • sys_identity
        • sys_information
    • Connection String Options
      • Authentication
        • AuthScheme
        • Company
        • ReportingSubject
        • User
        • Password
      • OAuth
        • OAuthClientId
        • OAuthClientSecret
      • SSL
        • SSLServerCert
      • Logging
        • Verbosity
      • Schema
        • BrowsableSchemas
        • Schema
      • Miscellaneous
        • BulkPollingInterval
        • BulkQueryTimeout
        • DataRetentionDuration
        • DisplayColumnName
        • MapDataCardsCaseSensitiveMatch
        • MapDataCardsRelationship
        • MaxRows
        • Pagesize
        • PseudoColumns
        • RetryCount
        • RetryInterval
        • Timeout
        • UseBulkAPI
        • UseSimpleNames

Oracle Eloqua - CData Cloud

Overview

CData Cloud offers access to Oracle Eloqua across several standard services and protocols, in a cloud-hosted solution. Any application that can connect to a MySQL or SQL Server database can connect to Oracle Eloqua through CData Cloud.

CData Cloud allows you to standardize and configure connections to Oracle Eloqua as though it were any other OData endpoint, or standard SQL Server/MySQL database.

Key Features

  • Full SQL Support: Oracle Eloqua appears as standard relational databases, allowing you to perform operations - Filter, Group, Join, etc. - using standard SQL, regardless of whether these operations are supported by the underlying API.
  • CRUD Support: Both read and write operations are supported, restricted only by security settings that you can configure in Cloud or downstream in the source itself.
  • Secure Access: The administrator can create users and define their access to specific databases and read-only operations or grant full read & write privileges.
  • Comprehensive Data Model & Dynamic Discovery: CData Cloud provides comprehensive access to all of the data exposed in the underlying data source, including full access to dynamic data and easily searchable metadata.

CData Cloud

Getting Started

This page provides a guide to Establishing a Connection to Oracle Eloqua in CData Cloud, as well as information on the available resources, and a reference to the available connection properties.

Connecting to Oracle Eloqua

Establishing a Connection shows how to authenticate to Oracle Eloqua and configure any necessary connection properties to create a database in CData Cloud

Accessing Data from CData Cloud Services

Accessing data from Oracle Eloqua through the available standard services and CData Cloud administration is documented in further details in the CData Cloud Documentation.

CData Cloud

Establishing a Connection

Connect to Oracle Eloqua by selecting the corresponding icon in the Database tab. Required properties are listed under Settings. The Advanced tab lists connection properties that are not typically required.

Authenticating to Oracle Eloqua

Oracle Eloqua supports both Basic (login) and OAuth authschemes.

Basic Authentication

Basic authentication runs over HTTP via SSL to enable users to connect via login.

To use Basic authentication, specify these properties:

  • AuthScheme: Basic.
  • Company: The company's unique identifier.
  • User: Your login account name.
  • Password: Your login password.

OAuth Authentication

To enable OAuth authentication from all OAuth flows, you must set AuthScheme to OAuth and create a custom OAuth application.

The following subsections describe how to authenticate to Oracle Eloqua from the three most common authentication flows. For information about how to create a custom OAuth application, see Creating a Custom OAuth Application. For a complete list of connection string properties available in Oracle Eloqua, see Connection.

Automatic refresh of the OAuth access token:

To have the Cloud automatically refresh the OAuth access token:

  1. Before connecting to data for the first time, set these connection parameters:
    • InitiateOAuth: REFRESH.
    • OAuthClientId: The client Id in your application settings.
    • OAuthClientSecret: The client secret in your application settings.
    • OAuthAccessToken: The access token returned by GetOAuthAccessToken.
    • OAuthSettingsLocation: The path where you want the Cloud to save the OAuth values, which persist across connections.
  2. On subsequent data connections, set:
    • InitiateOAuth
    • OAuthSettingsLocation

Manual refresh of the OAuth access token:

The only value needed to manually refresh the OAuth access token is the OAuth refresh token.

  1. To manually refresh the OAuthAccessToken after the ExpiresIn period (returned by GetOAuthAccessToken) has elapsed, call the RefreshOAuthAccessToken stored procedure.
  2. Set these connection properties:

    • OAuthClientId: The Client Id in your application settings.
    • OAuthClientSecret: The Client Secret in your application settings.

  3. Call RefreshOAuthAccessToken with OAuthRefreshToken set to the OAuth refresh token returned by GetOAuthAccessToken.
  4. After the new tokens have been retrieved, set the OAuthAccessToken property to the value returned by RefreshOAuthAccessToken. This opens a new connection.

Store the OAuth refresh token so that you can use it to manually refresh the OAuth access token after it has expired.

Using PASSWORD Grant

If you set OAuthGrantType to password, it may trigger an OAuth flow that passes credentials. In this case, there will be no browser window to authorize.

To ensure that you are authenticated properly, set these connection properties:

  • User: The user name.
  • Company: The company's unique identifier.
  • OAuthClientId The Client ID returned in your custom OAuth application settings. (See Creating a Custom OAuth Application.)
  • OAuthClientSecret: The Client Secret returned in your custom OAuth application settings (See Creating a Custom OAuth Application.)
  • OAuthGrantType: password.
  • InitiateOAuth: GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.

CData Cloud

Creating a Custom OAuth Application

Creating a Custom OAuth Application

In order to obtain the OAuth credentials needed to authenticate to Oracle Eloqua, you must create and register an custom OAuth application linked linked to your Oracle Eloqua account.

  1. Log in to Oracle Eloqua.
  2. Navigate to Settings > Platform Extensions > AppCloud Developer.
  3. Click Create New App.
  4. Enter a name, icon, and description for the new application, to be displayed to users when they connect to Oracle Eloqua.
    The console displays the OAuthClientId and OAuthClientSecret. Record these values for future use.
  5. Specify a CallbackURL:
    • If this is a Desktop application, set the CallbackURL to http://localhost:3000, or another port of your choice.
    • If this is a Web application, set the Callback URL to a page where you would like the user to be returned after they authorize your application. to after the user has authorized your application. Note that Eloqua requires that the Callback URL begin with https://, and that you specify a port.

When you connect, the add-in opens the OAuth endpoint in your default browser. Log in and grant permissions to the application.

CData Cloud

Fine-Tuning Data Access

Fine Tuning Data Access

You can use the following properties to gain more granular control over how the Cloud surfaces the functionality of the underlying Oracle Eloqua APIs.
The Cloud uses the bulk API when possible; you can fine-tune the connectivity to the bulk API with the following connection properties:

  • UseBulkAPI
  • BulkPollingInterval
  • BulkQueryTimeout
  • DataRetentionDuration
Additionally, the following properties are useful to circumvent failed bulk API requests:
  • RetryCount
  • RetryInterval
Oracle Eloqua accepts characters for table and column names that must be escaped in SQL. You can set UseSimpleNames to true to report nonalphanumeric characters as underscores.

CData Cloud

SSL Configuration

Customizing the SSL Configuration

By default, the Cloud attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.

To specify another certificate, see the SSLServerCert connection property.

CData Cloud

Firewall and Proxy

Connecting Through a Firewall or Proxy

HTTP Proxies

To authenticate to an HTTP proxy, set the following:

  • ProxyServer: the hostname or IP address of the proxy server that you want to route HTTP traffic through.
  • ProxyPort: the TCP port that the proxy server is running on.
  • ProxyAuthScheme: the authentication method the Cloud uses when authenticating to the proxy server.
  • ProxyUser: the username of a user account registered with the proxy server.
  • ProxyPassword: the password associated with the ProxyUser.

Other Proxies

Set the following properties:

  • To use a proxy-based firewall, set FirewallType, FirewallServer, and FirewallPort.
  • To tunnel the connection, set FirewallType to TUNNEL.
  • To authenticate, specify FirewallUser and FirewallPassword.
  • To authenticate to a SOCKS proxy, additionally set FirewallType to SOCKS5.

CData Cloud

Data Model

The CData Cloud models the Bulk API and the REST API as relational tables, views, and stored procedures. For example, Oracle Eloqua activity types are represented by the corresponding views. Views are tables that cannot be modified.

Working with Oracle Eloqua APIs as Tables

All tables are accessible with the REST API, including custom tables. A limited number of tables and views can be used with the Bulk API. The Cloud supports version 2.0 of the Bulk API and version 2.0 of the REST API.

Custom Tables and Columns

The Cloud can expose custom tables, views, and columns from Oracle Eloqua that are not mentioned in the Tables and Views. The data model illustrates a sample of what your Oracle Eloqua data model might look like. The actual data model will be obtained dynamically based on your user credentials and Oracle Eloqua account. For example, the Account, Campaign, and Contact tables are dynamic: These tables contain the columns described and your custom columns.

Tables Available in the Bulk API

The following tables and views, including custom tables, are supported with the Bulk API:

  • Account
  • Activity_Bounceback
  • Activity_EmailClickThrough
  • Activity_EmailOpen
  • Activity_EmailSend
  • Activity_EmailSubscribe
  • Activity_EmailUnsubscribe
  • Activity_FormSubmit
  • Activity_PageView
  • Activity_WebVisit
  • Contact
  • Custom tables
  • CampaignResponses

Stored Procedures

Stored Procedures are function-like interfaces to Oracle Eloqua that complement the data available from Oracle Eloqua tables. Stored procedures implement actions available in the Bulk API and other API functionality that cannot be expressed as SELECT, INSERT, UPDATE, or DELETE statements.

API SQL Limitations

Table-specific API limitations and requirements are documented in Tables and Views; you can use the SupportEnhancedSQL feature, set by default, to circumvent most of these limitations. For both the Bulk and REST APIs, the following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the ">" operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Bulk API Limitations

DELETE and UPDATE are not supported by the Bulk API. Additionally, the column count must be <250 for SELECT and must be <= 100 for INSERT.

REST API Limitations

Bulk updates are only supported in the Bulk API.

Custom Table Limitations

Custom tables are read-only in the REST API. In the Bulk API, SELECT and INSERT are supported.

CData Cloud

Tables

The Cloud models the data in Oracle Eloqua as a list of tables in a relational database that can be queried using standard SQL statements.

CData Cloud - Oracle Eloqua Tables

Name Description
Account Create, update, delete, and query Accounts. This table is supported in bulk mode.
AccountGroup Retrieve Account group.
Campaign Create, update, delete, and query Campaigns.
CampaignResponses Create, delete, and query Campaign Responses. This table is only supported in bulk mode.
Contact Create, update, delete, and query Contacts. This table is supported in bulk mode.
ContactEmailSubscription Retrieve all email group subscription status for the specific contact.
ContactSegment Create, update, delete, and query Contact Segments.
ContentSection Create, update, delete, and query Content Sections.
Custom Create and delete custom.
Email Create, update, delete, and query Emails.
EmailFooter Create, update, delete, and query Email Footers.
EmailGroup Create, update, delete, and query Email Groups.
EmailHeader Create, update, delete, and query Email Headers.
Event Create and delete Event.
ExternalActivity Create and query External Activities.
ExternalAsset Create, update, delete, and query External Assets.
Folder Create, update, delete, and query Folders.
Form Create, update, delete, and query Forms.
Hyperlink Create, update, delete, and query Hyperlinks.
LandingPage Create, update, delete, and query Landing Pages.
Microsite Create, update, delete, and query Microsites.
OptionList Create, update, delete, and query Option Lists.
OptionListElement Create, update, delete, and query Option List Elements.

The Cloud can expose custom tables, views, and columns from Oracle Eloqua that are not mentioned in the Tables and Views. The data model illustrates a sample of what your Oracle Eloqua data model might look like. The actual data model will be obtained dynamically based on your user credentials and Oracle Eloqua account.

CData Cloud

Account

Create, update, delete, and query Accounts. This table is supported in bulk mode.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the account.

Company Name String False

The Name of the account.

Country String False

The country of the account.

Address String False

The address of the account.

City String False

The city of the address for the account.

State or Province String False

The state or province of the address for the account.

Zip or Postal Code String False

The zip or postal code of the address for the account.

Business Phone String False

The business phone number of the account.

Eloqua Company ID String True

The Eloqua company Id of the account

Date Created Datetime True

Date and time the account was created.

Date Modified Datetime True

Date and time the account was last updated.

Company Category Double False

The category of the company

SFDC Account ID String False

The Salesforce Id of the account

Last Modified by CRM System Datetime True

Date and time the account was last updated by the CRM system.

Address 2 String False

The second address of the account.

Address 3 String False

The third address of the account.

Industry String False

The industry of the account.

PURL Name (Default Hypersite) String True

The URL of the account.

Annual Revenue String False

The annual revenue of the account.

Fax String False

The fax number of the account.

Employees Double False

The number of employees of the account

Website String False

The website of the account.

Account Rating String False

The account rating of the account.

CData Cloud

AccountGroup

Retrieve Account group.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the account group.

Name String False

The name of the account group.

Type String False

The type of the account group.

Permissions String False

The permissions of the account group.

CreatedAt Datetime True

Date the account group was created.

IsArchived String False

The Id of the user who created the account group.

FolderId String True

The folderId of the account group.

UpdatedAt Datetime True

Date the account group was updated.

Description String True

The description of the accountgroup.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Campaign

Create, update, delete, and query Campaigns.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the campaign.

Name String False

The name of the campaign.

ActualCost Double False

The actual cost of the campaign.

BudgetedCost Double False

The budgeted cost for the Campaign.

CrmId String False

The unique Id of the campaign in your CRM.

EndAt Datetime False

The campaign's end date.

EndValues String False

The end values of the campaign.

IsMemberAllowedReEntry Boolean False

Determines whether a member can reenter the campaign.

IsReadOnly Boolean False

Whether the campaign is read-only.

StartAt Datetime False

The campaign's start date.

CreatedAt Datetime False

The date and time the campaign was created.

CreatedBy String False

The Id of the user who created the Campaign.

AccessedAt Datetime False

Date the campaign was accessed.

CurrentStatus String False

The current status of the campaign.

Depth String False

The depth of the campaign.

UpdatedAt Datetime False

Date the campaign was updated.

UpdatedBy String False

The Id of the user who last updated the Campaign.

Permissions String False

The permissions of the campaign.

ScheduledFor Datetime False

The date and time scheduled for the campaign.

SourceTemplatedId String False

The Id of the source template for the campaign.

FolderId Long False

The Id of the folder for the campaign.

Campaign Type String False

The type of campaign.

Product String False

The product of the campaign.

Region String False

The region of the campaign.

Five String False

The fifth value for the campagin.

Four String False

The fourth value for the campagin.

Three String False

The third value for the campagin.

Two String False

The second value for the campagin.

CLR End Date Datetime False

The CLR end date.

CData Cloud

CampaignResponses

Create, delete, and query Campaign Responses. This table is only supported in bulk mode.

Columns

Name Type ReadOnly Description
ID Long False

The unique identifier for the campaign responses.

Member Status String False

The status of the campaign member.

Integration Return Value String False

The return value of the campaign responses.

Created At Long False

The created time of the campaign responses.

Add At String False

The added time of the campaign responses.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ServiceInstanceId String

The AppCloud action service instance ID. It is necessary to insert or select this table

ExecutionId String

The execution ID of service instance.It is necessary to select this table

CData Cloud

Contact

Create, update, delete, and query Contacts. This table is supported in bulk mode.

Table Specific Information

The EmailAddress column is required for INSERTs and updates.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the contact.

Email Address [KEY] String False

The Email Address of the contact.

First Name String False

The First Name of the contact.

Last Name String False

The Last Name of the contact.

Company String False

The Company of the contact.

Email Display Name String False

The Email Display Name of the contact.

Address 1 String False

The Address 1 of the contact.

Address 2 String False

The Address 2 of the contact.

Address 3 String False

The Address 3 of the contact.

City String False

The City of the contact.

State or Province String False

The State or Province of the contact.

Zip or Postal Code String False

The Zip or Postal Code of the contact.

Country String False

The Country of the contact.

Business Phone String False

The Business Phone of the contact.

Mobile Phone String False

The Mobile Phone of the contact.

Fax String False

The Fax of the contact.

Title String False

The Title of the contact.

Salutation String False

The Salutation of the contact.

Salesperson String False

The Salesperson of the contact.

SFDC Contact ID String False

The SFDC Contact ID of the contact.

SFDC Lead ID String False

The SFDC Lead ID of the contact.

Date Created Date True

The Date Created of the contact.

Date Modified Date True

The Date Modified of the contact.

Eloqua Contact ID String True

The Eloqua Contact ID of the contact.

SFDC Account ID String False

The SFDC Account ID of the contact.

Last Modified by CRM System Date True

The Last Modified by CRM System of the contact.

Last SFDC Campaign ID String False

The Last SFDC Campaign ID of the contact.

Last SFDC Campaign Status String False

The Last SFDC Campaign Status of the contact.

Company Revenue String False

The Company Revenue of the contact.

SFDC Email Opt Out String False

The SFDC Email Opt Out of the contact.

Lead Source - Most Recent String False

The Lead Source - Most Recent of the contact.

Lead Source - Original String False

The Lead Source - Original of the contact.

Industry String False

The Industry of the contact.

Annual Revenue String False

The Annual Revenue of the contact.

Lead Status String False

The Lead Status of the contact.

Job Role String False

The Job Role of the contact.

Lead Score - High Value Website Content Double False

The Lead Score - High Value Website Content of the contact.

Lead Score Date - Engagement - Most Recent Date False

The Lead Score Date - Engagement - Most Recent of the contact.

Integrated Marketing and Sales Funnel Stage String False

The Integrated Marketing and Sales Funnel Stage of the contact.

Product/Solution of Interest String False

The Product/Solution of Interest of the contact.

Region String False

The Region of the contact.

PURL Name (Default Hypersite) String True

The PURL Name (Default Hypersite) of the contact.

Lead Rating - Combined String False

The Lead Rating - Combined of the contact.

Email Address Domain String True

The Email Address Domain of the contact.

First and Last Name String True

The First and Last Name of the contact.

Company Size String False

The Company Size of the contact.

Lead Score - Last High Touch Event Date Date False

The Lead Score - Last High Touch Event Date of the contact.

Lead Rating - Profile (Explicit) String False

The Lead Rating - Profile (Explicit) of the contact.

Lead Rating - Engagement (Implicit) String False

The Lead Rating - Engagement (Implicit) of the contact.

Lead Score - Profile (Explicit) Double False

The Lead Score - Profile (Explicit) of the contact.

Lead Score - Engagement (Implicit) Double False

The Lead Score - Engagement (Implicit) of the contact.

Lead Score Date - Profile - Most Recent Date False

The Lead Score Date - Profile - Most Recent of the contact.

Employees Double False

The Employees of the contact.

Territory String False

The Territory of the contact.

Lead Score String False

The Lead Score of the contact.

PURL Name String True

The PURL Name of the contact.

MD5 Hashed Email Address String True

The MD5 Hashed Email Address of the contact.

SHA256 Hashed Email Address String True

The SHA256 Hashed Email Address of the contact.

MD5 Hashed Business Phone String True

The MD5 Hashed Business Phone of the contact.

SHA256 Hashed Business Phone String True

The SHA256 Hashed Business Phone of the contact.

MD5 Hashed Mobile Phone String True

The MD5 Hashed Mobile Phone of the contact.

SHA256 Hashed Mobile Phone String True

The SHA256 Hashed Mobile Phone of the contact of the contact.

CData Cloud

ContactEmailSubscription

Retrieve all email group subscription status for the specific contact.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for Email Group.

ContactID [KEY] Long False

The unique identifier for the contact.

Name String True

The name of the email group.

Description String True

The description of the email group.

IsSubScribed Boolean False

The subscribed status.

The default value is false.

Permissions String True

The permissions of the email group.

CData Cloud

ContactSegment

Create, update, delete, and query Contact Segments.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the contact segment.

Name String False

The name of the contact segment.

Description String False

The description of the contact segment.

FolderId Long False

The Id of the folder for the contact segment.

ScheduledFor Datetime False

The date and time scheduled for the contact segment.

SourceTemplatedId Long False

The Id of the source template of the contact segment.

Permissions String False

The permissions of the contact segment.

CreatedAt Datetime True

Date the contact segment was created.

CreatedBy String True

The Id of the user who created the contact segment.

AccessedAt Datetime False

Date the contact segment was accessed.

CurrentStatus String False

The current status of the contact segment.

UpdatedAt Datetime True

Date the contact segment was last updated.

UpdatedBy String True

The Id of the user who last updated the contact segment.

LastCalculatedAt Datetime False

Date the contact segment was last calculated.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

ContentSection

Create, update, delete, and query Content Sections.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the content section.

Name String False

The name of the content section.

Description String False

The description of the content section.

FolderId Long False

The Id of the folder for the content section.

ScheduledFor Datetime False

The date and time scheduled for the content section.

SourceTemplatedId Long False

The Id of the source template of the content section.

Permissions String False

The permissions of the content section.

CreatedAt Datetime True

Date the content section was created.

CreatedBy String True

The Id of the user who created the content section.

AccessedAt Datetime False

Date the content section was accessed.

CurrentStatus String False

The current status of the content section.

UpdatedAt Datetime True

Date the content section was updated.

UpdatedBy String True

The Id of the user who last updated the content section.

ContentHtml String False

The content HTML of the content section.

ContentText String False

The content text of the data lookup for the content section.

Scope String False

A list of contact Ids to be removed from the content section.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Custom

Create and delete custom.

Columns

Name Type ReadOnly Description
Id [KEY] String False

The id of the custom.

Name String False

The name of the custom.

EmailAddressFieldId String False

The field id that contains the Email Address. Use the desired custom object field's negative id as the value for this parameter.

EventGroupByFieldId String False

The id of the field used to organize multiple sessions. Use the desired custom object field's negative id as the value for this parameter.

FolderId String True

The folder id of the folder which contains the custom.

Fields String False

Array consisting of custom field properties

Description String False

The description of the custom.

RecordCount Integer True

The amount of records within the custom.

CreatedAt Datetime True

Date the custom was created.

CreatedBy String True

The Id of the user who created the custom.

UpdatedAt Datetime True

Date the custom was last updated.

UpdatedBy String True

The Id of the user who last updated the custom.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Email

Create, update, delete, and query Emails.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the email.

Name String False

The name of the email.

EmailGroupId Long False

The Id of the email group.

HtmlContent_ContentSource String False

The raw HTML contentSorce for the content of the email.

HtmlContent_CssHeader String False

The raw HTML cssHeader for the content of the email.

HtmlContent_DocType String False

The raw HTML docType for the content of the email.

HtmlContent_DocumentDescription String False

The raw HTML documentDescription for the content of the email.

HtmlContent_HtmlBody String False

The raw HTML Body for the content of the email.

HtmlContent_MetaTags String True

The raw HTML metaTags for the content of the email.

HtmlContent_Root String False

The raw HTML root for the content of the email.

HtmlContent_SystemHeader String False

The raw HTML systemHeader for the content of the email.

HtmlContent_Type String False

The raw HTML type for the content of the email.

IsPlainTextEditable Boolean False

Identifies whether the email is plaintext editable.

IsTracked Boolean False

Identifies whether the email is tracked.

PlainText String False

The plaintext version of the email.

BouncebackEmail String False

The bounce-back email address.

ReplyToEmail String False

The email address in the reply-to line of the email.

ReplyToName String False

The name in the reply-to line of the email.

SenderEmail String False

The email address of the sender.

SenderName String False

The name of the sender.

SenderPlainTextOnly Boolean False

Identifies whether the plaintext version should be sent.

Subject String False

The subject of the email.

Description String False

The description of the email.

FolderId Long False

The Id of the folder for the email.

EmailHeaderId Long False

The Id of the email header.

EmailFooterId Long False

The Id of the email footer.

Permissions String False

The permissions of the email.

CreatedAt Datetime True

Date the email was created.

CreatedBy String True

The Id of the user who created the email.

AccessedAt Datetime False

Date the email was accessed.

CurrentStatus String False

The current status of the email.

Depth String False

The depth of the email.

UpdatedAt Datetime True

Date the email was updated.

UpdatedBy String True

The Id of the user who last updated the email.

CData Cloud

EmailFooter

Create, update, delete, and query Email Footers.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the email footer.

Name String False

The name of the email footer.

Body String False

The body of the email footer.

Hyperlinks String True

A list of hyperlinks.

FieldMerges String True

A list of field merges.

Text String False

The text of the email footer.

Permissions String False

The permissions of the email footer.

Description String False

The description of the email footer.

FolderId Long False

The Id of the folder for the email footer.

CreatedAt Datetime True

Date the email footer was created.

CreatedBy String True

The Id of the user who created the email footer.

AccessedAt Datetime False

Date the email footer was accessed.

CurrentStatus String False

The current status of the email footer.

Depth String False

The depth of the email footer.

UpdatedAt Datetime True

Date the email footer was updated.

UpdatedBy String True

The Id of the user who last updated the email footer.

PlainText String True

The plain text of the email footer.

CData Cloud

EmailGroup

Create, update, delete, and query Email Groups.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the email group.

Name String False

The name of the email.

DisplayName String False

The display name of the email group.

EmailFooterId Long False

The Id of the email footer of the email group.

EmailIds String False

The Ids of the emails in the email group.

IsVisibleInOutlookPlugin Boolean False

Identifies whether the email group is visible in the Outlook plugin.

IsVisibleInPublicSubscriptionList Boolean False

Identifies whether the email group is visible in public subscription list.

SubscriptionLandingPageId Long False

The Id of the landing page used to subscribe to the email group.

SubscriptionListId Long False

The Id of the subscription list for the email group.

UnsubscriptionLandingPageId Long False

The Id of the landing page used to unsubscribe for the email group.

UnsubscriptionListId Long False

The Id of the unsubscription list for the email group.

UnsubscriptionListDataLookupId String False

The Id of the data lookup for the unsubscription list for the email group.

Description String False

The description of the email group.

FolderId Long False

The folder Id for the email group.

Permissions String False

The permissions list of the email group.

CreatedAt Datetime True

Date the email group was created.

CreatedBy String True

The Id of the user who created the email group.

AccessedAt Datetime False

Date the email group was accessed.

CurrentStatus String False

The current status of the email group.

Depth String False

The depth of the email group.

UpdatedAt Datetime True

Date the email group was updated.

UpdatedBy String True

The Id of the user who last updated the email group.

CData Cloud

EmailHeader

Create, update, delete, and query Email Headers.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the email header.

Name String False

The name of the email header.

Body String False

The body of the email header.

Hyperlinks String True

A list of hyperlinks.

FieldMerges String True

A list of field merges.

Text String False

The text of the email header.

Permissions String False

The permissions of the email header.

Description String False

The description of the email header.

FolderId Long False

The Id of the folder for the email header.

CreatedAt Datetime True

Date the email header was created.

CreatedBy String True

The Id of the user who created the email header.

AccessedAt Datetime False

Date the email header was accessed.

CurrentStatus String False

The current status of the email header.

Depth String False

The depth of the email header.

UpdatedAt Datetime True

Date the email header was updated.

UpdatedBy String True

The Id of the user who last updated the email header.

CData Cloud

Event

Create and delete Event.

Columns

Name Type ReadOnly Description
Id [KEY] String False

The Id of the event.

Name String False

The name of the event.

EmailAddressFieldId String False

The field Id that contains the Email Address. Use the negative id of the desired custom object field as the value for this parameter.

EventGroupByFieldId String False

The Id of the field used to organize multiple sessions. Use the negative Id of the desired custom object field as the value for this parameter.

FolderId String True

The folder Id of the folder which contains the event.

Fields String False

Array consisting of event field properties.

Description String False

The description of the event.

RecordCount Integer True

The amount of records within the event.

CreatedAt Datetime True

Date the event was created.

CreatedBy String True

The Id of the user who created the event.

UpdatedAt Datetime True

Date the event was last updated.

UpdatedBy String True

The Id of the user who last updated the event.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

ExternalActivity

Create and query External Activities.

Table Specific Information

Select

This table requires that either Id or ContactId be specified to retrieve data:

SELECT * FROM ExternalActivity WHERE Id = '1111'
SELECT * FROM ExternalActivity WHERE ContactId = '11'

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the external activity.

Type String False

The type of the external activity.

Name String False

The Name of the external activity.

ActivityType String False

The Type of external activity.

ContactId Long False

The ID of the contact who performed the external activity

CampaignId Long False

The ID of the campaign associated with this external activity.

AssetName String False

The AssetName of the external activity.

AssetType String False

The AssetType of the external activity.

AssetId Long False

The AssetId of the external activity.

ActivityDate Datetime False

The Date of the external activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

ExternalAsset

Create, update, delete, and query External Assets.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the external asset.

Name String False

The name of the external asset.

CreatedAt Datetime True

Date the external asset was created.

CreatedBy String True

The Id of the user who created the external asset.

Depth String False

The depth of the external asset.

UpdatedAt Datetime True

Date the external asset was updated.

UpdatedBy String True

The Id of the user who last updated the external asset.

CData Cloud

Folder

Create, update, delete, and query Folders.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the folder.

Name String False

The name of the folder.

IsSystem Boolean False

Identifies a system-generated folder.

Description String False

The description of the folder.

CreatedAt Datetime True

Date the folder was created.

UpdatedAt Datetime True

Date the folder was last updated.

UpdatedBy String True

The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Form

Create, update, delete, and query Forms.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the form.

Name String False

The name of the form.

FolderId Long False

The Id of the folder for the form.

SourceTemplatedId Long False

The Id of the source template of the form.

Permissions String False

The permissions of the form.

CreatedAt Datetime True

Date the form was created.

CreatedBy String True

The Id of the user who created the form.

CurrentStatus String False

The current status of the form.

UpdatedAt Datetime True

Date the form was last updated.

UpdatedBy String True

The Id of the user who last updated the form.

HtmlName String False

The HTML name of the form.

ProcessingType String False

The processing type of the data lookup for the form.

SubmitFailedLandingPageId Long False

The submit failed landing page Id of the form.

Html String False

The HTML of the form.

Style String False

The style of the form.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Hyperlink

Create, update, delete, and query Hyperlinks.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the hyperlink.

Name String False

The name of the hyperlink.

IsSystem Boolean False

Identifies a system-generated hyperlink.

UpdatedAt Datetime True

Date the hyperlink was updated.

UpdatedBy String True

The Id of the user who last updated the hyperlink.

FolderId Long False

The folder Id of the hyperlink.

CreatedAt Datetime True

Date the hyperlink was created.

CreatedBy String True

The Id of the user who created the hyperlink.

Href String False

The href of the hyperlink.

HyperlinkType String False

The type of the hyperlink.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

LandingPage

Create, update, delete, and query Landing Pages.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier for the landing page.

Name String False

The name of the landing page.

DeployedAt Datetime False

Date the landing page was deployed.

HtmlContent String False

The raw HTML for the content of the landing page.

MicrositeId Long False

The unique identifier for this page's microsite.

RefreshedAt Datetime False

Date the landing page was refreshed.

RelativePath String False

The relative path to the landing page.

Style String False

The style of the landing page.

Description String False

The description of the landing page.

FolderId Long False

The Id of the folder for the landing page

Permissions String False

The permissions list for the landing page.

CreatedAt Datetime True

Date the landing page was created.

CreatedBy String True

The Id of the user who created the landing page.

AccessedAt Datetime False

Date the landing page was accessed.

CurrentStatus String False

The current status of the landing page.

AutoRedirectUrl String False

The URL to redirect window used with autoRedirectWaitFor.

Depth String False

The depth of the landing page.

UpdatedAt Datetime True

Date the landing page was updated.

UpdatedBy String True

The Id of the user who last updated the landing page.

CData Cloud

Microsite

Create, update, delete, and query Microsites.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique identifier of the microsite.

Name String False

The name of the microsite.

Domains String False

A list of domains for this micosite.

ScheduledFor Datetime False

The date and time scheduled for the microsite.

SourceTemplatedId Long False

The Id of the source template for the microsite.

DefaultLandingPageId Long False

The Id of the default landing page for the microsite.

Description String False

The description of the microsite.

FolderId Long False

The Id of the folder for the microsite

Permissions String False

The permissions of the microsite.

CreatedAt Datetime True

Date the microsite was created.

CreatedBy String True

The Id of the user who created the microsite.

AccessedAt Datetime False

Date the microsite was accessed.

CurrentStatus String False

The current status of the microsite.

Depth String False

The depth of the microsite.

UpdatedAt Datetime True

Date the microsite was updated.

UpdatedBy String True

The Id of the user who last updated the microsite.

CData Cloud

OptionList

Create, update, delete, and query Option Lists.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique Id of the option list.

Name String False

The name of the option list item.

Depth String False

The depth of the option list item.

Permissions String False

The permissions of the option list item.

CData Cloud

OptionListElement

Create, update, delete, and query Option List Elements.

Columns

Name Type ReadOnly Description
ID [KEY] Long True

The unique Id of the option list.

Name String False

The name of the option list item.

type String False

The type of the option list element item.

displayName String False

The displayName of the option list element item.

value String False

The value of the option list element item.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String

The depth of information requested from Eloqua.

CData Cloud

Views

Views are similar to tables in the way that data is represented; however, views are read-only.

Queries can be executed against a view as if it were a normal table.

CData Cloud - Oracle Eloqua Views

Name Description
AccountField Retrieve Account Fields.
AccountView Retrieve Account Views.
Activity_Bounceback Retrieve Bounceback Activities. This table is only supported in bulk mode.
Activity_CampaignMembership Retrieve Campaign Membership Activities.
Activity_EmailClickThrough Retrieve Email Click Through Activities.
Activity_EmailOpen Retrieve Email Open Activities.
Activity_EmailSend Retrieve Email Send Activities.
Activity_EmailSubscribe Retrieve Email Subscribe Activities.
Activity_EmailUnsubscribe Retrieve Email Unsubscribe Activities.
Activity_FormSubmit Retrieve Form Submit Activities.
Activity_PageView Retrieve Page View Activities. This table is only supported in bulk mode.
Activity_WebVisit Retrieve Web Visit Activities.
CampaignElement Retrieve Campaign Elements.
CampaignField Retrieve Campaign Fields.
CampaignFolder Retrieve Campaign Folders.
ContactField Retrieve Contact Fields.
ContactFilter Retrieve Contact Filters.
ContactFilterFolder Retrieve Contact Filter Folders.
ContactList Create, update, delete, and query Contact Lists.
ContactListFolder Retrieve Contact List Folders.
ContactScoringModelFolder Retrieve Contact Scoring Model Folders.
ContactSegmentData Retrieve Contact Segment Data. Note: The pseudo column SegmentID must be specified to retrieve the data of this table. This SegmentID can be retrieved from the ContactSegment table's ID column.
ContactSegmentFolder Retrieve Contact Segment Folders.
ContactView Retrieve Contact Views.
ContentSectionFolder Retrieve Content Section Folders.
Dependencies Retrieve Dependencies.
DynamicContent Retrieve Dynamic Contents.
DynamicContentFolder Retrieve Dynamic Content Folders.
EmailDeployment Retrieve email deployments.
EmailFolder Retrieve Email Folders.
EmailFooterFolder Retrieve Email Footer Folders.
EmailHeaderFolder Retrieve Email Header Folders.
ExternalType Retrieve External Types.
FieldMerge Retrieve Field Merges.
FieldMergeFolder Retrieve Field Merge Folders.
FormElement Retrieve Form Elements.
FormFolder Retrieve Form Folders.
FormProcessingStep Retrieve Form Processing Steps.
HyperlinkFolder Retrieve Hyperlink Folders.
Image Retrieve Image.
ImageFolder Retrieve Image Folders.
ImportedFile Retrieve Imported Files.
ImportedFileFolder Retrieve Imported File Folders.
LandingPageFolder Retrieve Landing Page Folders.
LeadScoringModel Query Lead Scoring Models.
PageTag Retrieve Page Tags.
PageTagGroup Retrieve Page Tag Groups.
Program Retrieve Programs.
Rejects Retrieves the rejected records for the specified import sync.
Style Retrieve Styles.
Syncs Retrieves the rejected records for the specified import sync.
Template Retrieve Templates.
TemplateCategory Retrieve Template Categories.
TrackedUrl Retrieve Tracked Urls.
User Retrieve Users.
Visitor Retrieve Visitors.
VisitorProfileField Retrieve all of the visitor profile fields.

CData Cloud

AccountField

Retrieve Account Fields.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the account field.
Name String The name of the account field.
DataType String The data type of the account field.
DisplayType String The display type of the account field.
InternalName String The country of the account field.
IsReadOnly Boolean Identifies whether the account field is read-only.
IsRequired Boolean Identifies whether the account field is required.
IsStandard Boolean Identifies whether the account field is standard.
OptionListId Long The Id of the option list for the account field.
OutputFormatId Long The Id of the output format for the account field.
CreatedAt Datetime Date the account field was created.
CreatedBy String The Id of the user who created the account field.
Depth String The depth of the account field.
UpdatedAt Datetime Date the account field was updated.
UpdatedBy String The Id of the user who last updated the account field.

CData Cloud

AccountView

Retrieve Account Views.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the account view.
Name String The name of the account view.
Description String The description of the account view.
Permissions String The permissions of the account view.
CreatedAt Datetime Date the account view was created.
CreatedBy String The Id of the user who created the account view.
AccessedAt Datetime Date the account view was accessed.
UpdatedAt Datetime Date the account view was updated.
UpdatedBy String The Id of the user who last updated the account view.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_Bounceback

Retrieve Bounceback Activities. This table is only supported in bulk mode.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the bounceback activity.
CreatedAt Datetime The date and time the bounceback activity was created.
Type String The type of the activity associated with the bounceback activity.
AssetName String The name of the asset associated with the bounceback activity.
AssetId Long The Id of the asset associated with the bounceback activity.
AssetType String The type of the asset associated with the bounceback activity.
CampaignId Long The Id of the campaign associated with the bounceback activity.
EmailAddress String The address of the email.
ExternalId String The ExternalId associated with the email activity. Only supported in bulk mode.
EmailRecipientId String The Email Recipient Id associated with the email activity. Only supported in bulk mode.
SmtpErrorCode String The Smtp Error Code associated with the email activity. Only supported in bulk mode.
SmtpStatusCode String The Smtp Status Code associated with the email activity. Only supported in bulk mode.
SmtpMessage String The Smtp Message associated with the email activity. Only supported in bulk mode.
DeploymentId String The email deployment Id associated with the email activity. Only supported in bulk mode.
ContactId Long The Id of the contact associated with the bounceback activity.
FirstName String The FirstName of the contact associated with the bounceback activity.
LastName String The LastName of the contact associated with the bounceback activity.
Company String The Company of the contact associated with the bounceback activity.
City String The City of the contact associated with the bounceback activity.
ContactCreatedAt Datetime The date and time the contact associated with the bounceback activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the bounceback activity was created.
Address1 String The first line address of the contact associated with the bounceback activity.
Address2 String The second line address of the contact associated with the bounceback activity.
Title String The Title of the contact associated with the bounceback activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_CampaignMembership

Retrieve Campaign Membership Activities.

Table Specific Information

This table is the only activity table not available in the Bulk API.

Select

ContactId is required to query Activity tables.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the campaign membership activity.
Name String The name of the campaign membership activity.
CreatedAt Datetime The date and time the campaign membership activity was created.
Type String The type of campaign membership activity.
AssetId Long The Id of the asset associated with the campaign membership activity.
AssetType String The type of the asset associated with the campaign membership activity.
AssetName String The name of the asset associated with the email campaign membership activity.
ContactId Long The Id of the contact who performed the campaign membership activity.
Responded String Whether the campaign membership activity has been responded to.
CampaignName String The campaign name of the campaign membership activity.
LeadStage String The lead stage of the campaign membership activity.
CampaignId Long The campaignId of the campaign membership activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_EmailClickThrough

Retrieve Email Click Through Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the email click-through activity.
Name String The name of the email click-through activity. Not supported in bulk mode.
CreatedAt Datetime The date and time the email click-through activity was created.
Type String The type of the email click-through activity.
AssetId Long The Id of the asset associated with the email click-through activity.
AssetName String The name of the asset associated with the email click-through activity.
AssetType String The type of the asset associated with the email click-through activity.
ContactId Long The Id of the contact who performed the email click-through activity.
EmailClickedThruLink String The click-through link in the email.
EmailName String The name of the email. Not supported in bulk mode.
EmailWebLink String The Web link of the email.
SubjectLine String The subject line of the email.
EmailRecipientId String The Id of the recipient of the email.
EmailSendType String The send type of the email. Only supported in bulk mode.
EmailAddress String The address of the email. Only supported in bulk mode.
IpAddress String The IP address of the email activity. Only supported in bulk mode.
CampaignId Long The Id of the campaign associated with the email click-through activity. Only supported in bulk mode.
DeploymentId Long The deployment Id associated with the email open activity. Only supported in bulk mode.
VisitorId Long The Id of the visitor associated with the email open activity. Only supported in bulk mode.
VisitorExternalId String The ExternalId of the visitor associated with the email open activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the email open activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the email click-through activity.
LastName String The LastName of the contact associated with the email click-through activity.
Company String The Company of the contact associated with the email click-through activity.
City String The City of the contact associated with the email click-through activity.
ContactCreatedAt Datetime The date and time the contact associated with the email click-through activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the email click-through activity was created.
Address1 String The first line address of the contact associated with the email click-through activity.
Address2 String The second line address of the contact associated with the email click-through activity.
Title String The Title of the contact associated with the email click-through activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_EmailOpen

Retrieve Email Open Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the email open activity.
Name String The name of the email open activity. Not supported in bulk mode.
EmailAddress String The email address of the contact.
CreatedAt Datetime The date and time the email open activity was created.
Type String The type of the activity associated with the email open activity.
AssetName String The name of the asset associated with the email open activity.
AssetId Long The Id of the asset associated with the email open activity.
AssetType String The type of the asset associated with the email open activity.
ContactId Long The Id of the contact who performed the email open activity.
EmailName String The name of the email. Not supported in bulk mode.
EmailWebLink String The Web link of the email.
EmailRecipientId String The Id of the recipient of the email.
EmailSendType String The send type of the email. Only supported in bulk mode.
IPAddress String The IP address of the sender.
SubjectLine String The subject line of the email.
CampaignId Long The Id of the campaign associated with the email open activity. Only supported in bulk mode.
DeploymentId Long The deployment Id associated with the email open activity. Only supported in bulk mode.
VisitorId Long The Id of the visitor associated with the email open activity. Only supported in bulk mode.
VisitorExternalId String The ExternalId of the visitor associated with the email open activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the email open activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the email open activity.
LastName String The LastName of the contact associated with the email open activity.
Company String The Company of the contact associated with the email open activity.
City String The City of the contact associated with the email open activity.
ContactCreatedAt Datetime The date and time the contact associated with the email open activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the email open activity was created.
Address1 String The first line address of the contact associated with the email open activity.
Address2 String The second line address of the contact associated with the email open activity.
Title String The Title of the contact associated with the email open activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_EmailSend

Retrieve Email Send Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ExternalId [KEY] String The ExternalId associated with the email send activity. Only supported in bulk mode.
ID Long The identifier of the email send activity. This is not unique.
Name String The name of the email send activity. Not supported in bulk mode.
CreatedAt Datetime The date and time when the email send activity was created.
Type String The activity type of the email send activity.
AssetName String The name of the asset associated with the email send activity.
AssetId Long The Id of the asset associated with the email send activity.
AssetType String The type of the asset associated with the email send activity.
ContactId Long The Id of the contact who performed the email send activity.
EmailName String The name of the email. Not supported in bulk mode.
EmailWebLink String The Web link of the email.
EmailRecipientId String The Id of the recipient of the email.
SubjectLine String The subject line of the email.
EmailAddress String The address of the email. Only supported in bulk mode.
EmailSendType String The send type of the email. Only supported in bulk mode.
CampaignId Long The Id of the campaign associated with the email send activity. Only supported in bulk mode.
DeploymentId Long The deployment Id associated with the email send activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the email send activity.
LastName String The LastName of the contact associated with the email send activity.
Company String The Company of the contact associated with the email send activity.
City String The City of the contact associated with the email send activity.
ContactCreatedAt Datetime The date and time the contact associated with the email send activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the email send activity was created.
Address1 String The first line address of the contact associated with the email send activity.
Address2 String The second line address of the contact associated with the email send activity.
Title String The Title of the contact associated with the email send activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_EmailSubscribe

Retrieve Email Subscribe Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the email subscribe activity.
Name String The name of the email subscribe activity. Not supported in bulk mode.
CreatedAt Datetime The date and time the email subscribe activity was created.
Type String The activity type of the email subscribe activity.
AssetName String The name of the asset associated with the email subscribe activity.
AssetId Long The Id of the asset associated with the email subscribe activity.
AssetType String The type of the asset associated with the email subscribe activity.
CampaignName String The name of the campaign associated with the email subscribe activity. Not supported in bulk mode.
EmailCampaignId String The Id of the email campaign associated with the email subscribe activity. Not supported in bulk mode.
EmailAddress String The address of the email. Only supported in bulk mode.
EmailRecipientId String The Id of the recipient of the email.
CampaignId Long The Id of the campaign associated with the email subscribe activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the email subscribe activity. Only supported in bulk mode.
ContactId Long The Id of the contact associated with the bounceback activity.
FirstName String The FirstName of the contact associated with the email subscribe activity.
LastName String The LastName of the contact associated with the email subscribe activity.
Company String The Company of the contact associated with the email subscribe activity.
City String The City of the contact associated with the email subscribe activity.
ContactCreatedAt Datetime The date and time the contact associated with the email subscribe activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the email subscribe activity was created.
Address1 String The first line address of the contact associated with the email subscribe activity.
Address2 String The second line address of the contact associated with the email subscribe activity.
Title String The Title of the contact associated with the email subscribe activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_EmailUnsubscribe

Retrieve Email Unsubscribe Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the email unsubscribe activity.
Name String The name of the email unsubscribe activity. Not supported in bulk mode.
CreatedAt Datetime The date and time the email unsubscribe activity was created.
Type String The type of email unsubscribe activity.
AssetName String The name of the asset associated with the email unsubscribe activity.
AssetId Long The Id of the asset associated with the email unsubscribe activity.
AssetType String The type of the asset associated with the email unsubscribe activity.
CampaignName String The name of the campaign associated with the email unsubscribe activity. Not supported in bulk mode.
EmailCampaignId String The Id of the email campaign associated with the email unsubscribe activity. Not supported in bulk mode.
EmailRecipientId String The Id of the recipient of the email.
EmailAddress String The address of the email. Only supported in bulk mode.
CampaignId Long The Id of the campaign associated with the email unsubscribe activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the email unsubscribe activity. Only supported in bulk mode.
ContactId Long The Id of the contact associated with the bounceback activity.
FirstName String The FirstName of the contact associated with the email unsubscribe activity.
LastName String The LastName of the contact associated with the email unsubscribe activity.
Company String The Company of the contact associated with the email unsubscribe activity.
City String The City of the contact associated with the email unsubscribe activity.
ContactCreatedAt Datetime The date and time the contact associated with the email unsubscribe activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the email unsubscribe activity was created.
Address1 String The first line address of the contact associated with the email unsubscribe activity.
Address2 String The second line address of the contact associated with the email unsubscribe activity.
Title String The Title of the contact associated with the email unsubscribe activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_FormSubmit

Retrieve Form Submit Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the form submit activity.
Name String The name of the form submit activity. Not supported in bulk mode.
CreatedAt Datetime The date and time the form submit activity was created.
Type String The activity type of the form submit activity.
AssetName String The name of the asset associated with the form submit activity.
AssetId Long The Id of the asset associated with the form submit activity.
AssetType String The type of the asset associated with the form submit activity.
ContactId Long The Id of the contact who performed the form submit activity.
Collection String The collection of the form submit activity. Not supported in bulk mode.
FormName String The name of the form associated with the form submit activity. Not supported in bulk mode.
FormData String The data of the form associated with the form submit activity. Not supported in bulk mode.
RawData String The raw data of the form submit activity. Only supported in bulk mode.
CampaignId Long The Id of the campaign associated with the form submit activity. Only supported in bulk mode.
VisitorId Long The Id of the visitor associated with the form submit activity. Only supported in bulk mode.
VisitorExternalId String The ExternalId of the visitor associated with the form submit activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the form submit activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the form submit activity.
LastName String The LastName of the contact associated with the form submit activity.
Company String The Company of the contact associated with the form submit activity.
City String The City of the contact associated with the bounceback activity.
ContactCreatedAt Datetime The date and time the contact associated with the form submit activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the form submit activity was created.
Address1 String The first line address of the contact associated with the form submit activity.
Address2 String The second line address of the contact associated with the form submit activity.
Title String The Title of the contact associated with the form submit activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_PageView

Retrieve Page View Activities. This table is only supported in bulk mode.

Table Specific Information

Select

COUNT is supported for this table.

Columns

Name Type Description
ID [KEY] Long The unique identifier of the page view activity.
CreatedAt Datetime The date and time the page view activityactivity was created.
Type String The type of the activity associated with the page view activity.
ContactId Long The Id of the contact who performed the page view activity.
IPAddress String The IP address of the sender.
Url String The URL of the page view activity.
CampaignId Long The Id of the campaign associated with the page view activity.
ReferrerUrl String The referrer URL of the page view activity.
VisitorId Long The visitor Id of the page view activity.
VisitorExternalId String The visitor external Id of the page view activity.
WebVisitId Long The Web visit Id of the page view activity.
IsWebTrackingOptedIn Boolean Whether the visitor who performed the page view activity has opted into Web tracking.
ExternalId String The ExternalId associated with the page activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the page view activity.
LastName String The LastName of the contact associated with the page view activity.
Company String The Company of the contact associated with the page view activity.
City String The City of the contact associated with the page view activity.
ContactCreatedAt Datetime The date and time the contact associated with the page view activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the page view activity was created.
Address1 String The first line address of the contact associated with the page view activity.
Address2 String The second line address of the contact associated with the page view activity.
Title String The Title of the contact associated with the page view activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

Activity_WebVisit

Retrieve Web Visit Activities.

Table Specific Information

Select

If you are not using the Bulk API, ContactId is required to query Activity tables.

Additionally, the COUNT function is supported for this table in bulk mode.

Columns

Name Type Description
ID [KEY] Long The Id of the Web visit activity.
Name String The name of the Web visit activity. Not supported in bulk mode.
CreatedAt Datetime The date and time the Web visit activity was created.
Type String The type of Web visit activity.
AssetId Long The Id of the asset associated with the Web visit activity. Not supported in bulk mode.
AssetType String The type of the asset associated with the Web visit activity. Not supported in bulk mode.
ContactId Long The Id of the contact who performed the Web visit activity. Not supported in bulk mode.
Duration String The duration of the Web visit activity.
QueryString String The query string of the Web visit activity. Not supported in bulk mode.
QueryStringDisplay String The query string display of the Web visit activity. Not supported in bulk mode.
Thread String The thread of the Web visit activity. Not supported in bulk mode.
URL String The URL of the Web visit activity. Not supported in bulk mode.
ReferrerUrl String The Referrer URL of the Web visit activity. Only supported in bulk mode.
VisitorId Long The Id of the visitor associated with the Web visit activity. Only supported in bulk mode.
VisitorExternalId String The visitor external Id of the Web visit activity. Only supported in bulk mode.
ExternalId String The ExternalId associated with the Web visit activity. Only supported in bulk mode.
NumberOfPages String The number of pages of the Web visit activity. Only supported in bulk mode.
IpAddress String The IP address of the Web visit activity. Only supported in bulk mode.
FirstPageViewUrl String The first page view URL of the Web visit activity. Only supported in bulk mode.
FirstName String The FirstName of the contact associated with the Web visit activity.
LastName String The LastName of the contact associated with the Web visit activity.
Company String The Company of the contact associated with the Web visit activity.
City String The City of the contact associated with the Web visit activity.
ContactCreatedAt Datetime The date and time the contact associated with the Web visit activity was created.
ContactModifiedAt Datetime The date and time the contact associated with the Web visit activity was created.
Address1 String The first line address of the contact associated with the Web visit activity.
Address2 String The second line address of the contact associated with the Web visit activity.
Title String The Title of the contact associated with the Web visit activity.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ExportToken String The token returned from CreateExportDefinition. If Eloqua has not finished processing the request, the query will wait until the server has finished before returning data.
Depth String The depth of information requested from Eloqua.

CData Cloud

CampaignElement

Retrieve Campaign Elements.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the campaign element.
Name String The name of the campaign element.
Type String The type of the campaign element.
FolderId Long The folder Id of the campaign element.
FormId String The form Id of the campaign element.
EmailId String The email Id of the campaign element.
LandingPageId String The landing page Id of the campaign element.
SegmentId String The segment Id of the campaign element.
ListId String The list Id of the campaign element.
CampaignId String The campaign Id of the campaign element.
memberCount Integer The member count of the campaign element.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

CampaignField

Retrieve Campaign Fields.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the campaign field.
Name String The name of the campaign field.
DataType String The data type of the campaign field.
Description String The description of the campaign field.
DisplayType String The display type of the campaign field.
DisplayIndex String The display index of the campaign field.
FolderId Long The folder Id of the campaign field.
IsReadOnly Boolean Identifies whether the campaign field is read-only.
IsRequired Boolean Identifies whether the campaign field is required.
CreatedAt Datetime Date the campaign field was created.
CreatedBy String The Id of the user who created the campaign field.
Depth String The depth of the campaign field.

CData Cloud

CampaignFolder

Retrieve Campaign Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContactField

Retrieve Contact Fields.

Table Specific Information

The EmailAddress column is required to INSERT INTO or to update the Contact table. For example,

UPDATE [Contact] SET emailAddress = '[email protected]', firstName = 'test' WHERE ID = ?

Columns

Name Type Description
ID [KEY] Long The unique identifier for the contact field.
Name String The name of the contact field.
UpdateType String The update rule for when to update this field.
CheckedValue String The checked value of the contact field.
DataType String The data type of the contact field.
DefaultValue String The default value for the contact field.
Description String The description of the contact field.
DisplayType String The display type of the contact field.
FolderId Long The folder Id of the contact field.
InternalName String The country of the contact field.
IsReadOnly Boolean Identifies whether the contact field is read-only.
IsRequired Boolean Identifies whether the contact field is required.
IsStandard Boolean Identifies whether the contact field is standard.
OptionListId Long The Id of the option list for the contact field.
OutputFormatId Long The Id of the output format for the contact field.
ScheduledFor String The date and time scheduled for the contact field.
SourceTemplatedId Long The Id of the source template for the contact field
UncheckedValue String The unchecked value of the contact field.
Permissions String The permissions of the contact field.
CreatedAt Datetime Date the contact field was created.
CreatedBy String The Id of the user who created the contact field.
AccessedAt Datetime Date the contact field was accessed.
CurrentStatus String The current status of the contact field.
Depth String The depth of the contact field.
UpdatedAt Datetime Date the contact field was updated.
UpdatedBy String The Id of the user who last updated the contact field.

CData Cloud

ContactFilter

Retrieve Contact Filters.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the contact filter.
Name String The name of the contact filter.
Type String The type of the contact filter.
FolderId Long The folder Id of the contact filter.
Description String The description of the contact filter.
ScheduledFor String The date and time scheduled for the contact filter.
Scope String The scope of the contact filter.
Statement String The statement of the contact filter.
Permissions String The permissions of the contact filter.
CreatedAt Datetime Date the contact filter was created.
CreatedBy String The Id of the user who created the contact filter.
AccessedAt Datetime Date the contact filter field was accessed.
CurrentStatus String The current status of the contact filter.
Depth String The depth of the contact filter.
UpdatedAt Datetime Date the contact filter was updated.
UpdatedBy String The Id of the user who last updated the contact filter.

CData Cloud

ContactFilterFolder

Retrieve Contact Filter Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContactList

Create, update, delete, and query Contact Lists.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the contact list.
Name String The name of the contact list.
Count String The count of the contact list.
DataLookupId String The Id of the data lookup for the contact list.
MembershipAdditions String The number of contact membership additions in the contact list.
Scope String The contact list's scope: either local or global.
Description String The description of the contact list.
FolderId Long The Id of the folder for the contact list.
ScheduledFor Datetime The date and time scheduled for the contact list.
SourceTemplatedId Long The Id of the source template of the contact list.
Permissions String The permissions of the contact list.
CreatedAt Datetime Date the contact list was created.
CreatedBy String The Id of the user who created the contact list.
AccessedAt Datetime Date the contact list was accessed.
CurrentStatus String The current status of the contact list.
Depth String The depth of the contact list.
UpdatedAt Datetime Date the contact list was updated.
UpdatedBy String The Id of the user who created the contact list.

CData Cloud

ContactListFolder

Retrieve Contact List Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContactScoringModelFolder

Retrieve Contact Scoring Model Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContactSegmentData

Retrieve Contact Segment Data. Note: The pseudo column SegmentID must be specified to retrieve the data of this table. This SegmentID can be retrieved from the ContactSegment table's ID column.

Columns

Name Type Description
ID [KEY] Int64 The unique identifier of the content segment data.
AccountName String This field is generated dynamically and corresponds to the AccountName field in the API.
BouncebackDate String This field is generated dynamically and corresponds to the BouncebackDate field in the API.
IsBounceback Boolean This field is generated dynamically and corresponds to the IsBounceback field in the API.
IsSubscribed Boolean This field is generated dynamically and corresponds to the IsSubscribed field in the API.
SubscriptionDate Datetime This field is generated dynamically and corresponds to the SubscriptionDate field in the API.
UnsubscriptionDate Datetime This field is generated dynamically and corresponds to the UnsubscriptionDate field in the API.
CreatedAt Datetime This field is generated dynamically and corresponds to the CreatedAt field in the API.
CreatedBy String This field is generated dynamically and corresponds to the CreatedBy field in the API.
AccessedAt Datetime This field is generated dynamically and corresponds to the AccessedAt field in the API.
CurrentStatus String This field is generated dynamically and corresponds to the CurrentStatus field in the API.
Depth String This field is generated dynamically and corresponds to the Depth field in the API.
UpdatedAt Datetime This field is generated dynamically and corresponds to the UpdatedAt field in the API.
UpdatedBy String This field is generated dynamically and corresponds to the UpdatedBy field in the API.
Email Address String This field is generated dynamically and corresponds to the Email Address field in the API.
First Name String This field is generated dynamically and corresponds to the First Name field in the API.
Last Name String This field is generated dynamically and corresponds to the Last Name field in the API.
Company String This field is generated dynamically and corresponds to the Company field in the API.
Email Display Name String This field is generated dynamically and corresponds to the Email Display Name field in the API.
Address 1 String This field is generated dynamically and corresponds to the Address 1 field in the API.
Address 2 String This field is generated dynamically and corresponds to the Address 2 field in the API.
Address 3 String This field is generated dynamically and corresponds to the Address 3 field in the API.
City String This field is generated dynamically and corresponds to the City field in the API.
State or Province String This field is generated dynamically and corresponds to the State or Province field in the API.
Zip or Postal Code String This field is generated dynamically and corresponds to the Zip or Postal Code field in the API.
Country String This field is generated dynamically and corresponds to the Country field in the API.
Business Phone String This field is generated dynamically and corresponds to the Business Phone field in the API.
Mobile Phone String This field is generated dynamically and corresponds to the Mobile Phone field in the API.
Fax String This field is generated dynamically and corresponds to the Fax field in the API.
Title String This field is generated dynamically and corresponds to the Title field in the API.
Salutation String This field is generated dynamically and corresponds to the Salutation field in the API.
Salesperson String This field is generated dynamically and corresponds to the Salesperson field in the API.
SFDC Contact ID String This field is generated dynamically and corresponds to the SFDC Contact ID field in the API.
SFDC Lead ID String This field is generated dynamically and corresponds to the SFDC Lead ID field in the API.
Date Created Datetime This field is generated dynamically and corresponds to the Date Created field in the API.
Date Modified Datetime This field is generated dynamically and corresponds to the Date Modified field in the API.
Eloqua Contact ID String This field is generated dynamically and corresponds to the Eloqua Contact ID field in the API.
SFDC Account ID String This field is generated dynamically and corresponds to the SFDC Account ID field in the API.
Last Modified by CRM System Datetime This field is generated dynamically and corresponds to the Last Modified by CRM System field in the API.
Last SFDC Campaign ID String This field is generated dynamically and corresponds to the Last SFDC Campaign ID field in the API.
Last SFDC Campaign Status String This field is generated dynamically and corresponds to the Last SFDC Campaign Status field in the API.
Company Revenue String This field is generated dynamically and corresponds to the Company Revenue field in the API.
SFDC Email Opt Out String This field is generated dynamically and corresponds to the SFDC Email Opt Out field in the API.
Lead Source - Most Recent String This field is generated dynamically and corresponds to the Lead Source - Most Recent field in the API.
Lead Source - Original String This field is generated dynamically and corresponds to the Lead Source - Original field in the API.
Industry String This field is generated dynamically and corresponds to the Industry field in the API.
Annual Revenue String This field is generated dynamically and corresponds to the Annual Revenue field in the API.
Lead Status String This field is generated dynamically and corresponds to the Lead Status field in the API.
Job Role String This field is generated dynamically and corresponds to the Job Role field in the API.
Lead Score - High Value Website Content Double This field is generated dynamically and corresponds to the Lead Score - High Value Website Content field in the API.
Lead Score Date - Engagement - Most Recent Datetime This field is generated dynamically and corresponds to the Lead Score Date - Engagement - Most Recent field in the API.
Integrated Marketing and Sales Funnel Stage String This field is generated dynamically and corresponds to the Integrated Marketing and Sales Funnel Stage field in the API.
Product/Solution of Interest String This field is generated dynamically and corresponds to the Product/Solution of Interest field in the API.
Region String This field is generated dynamically and corresponds to the Region field in the API.
PURL Name (Default Hypersite) String This field is generated dynamically and corresponds to the PURL Name (Default Hypersite) field in the API.
Lead Rating - Combined String This field is generated dynamically and corresponds to the Lead Rating - Combined field in the API.
Email Address Domain String This field is generated dynamically and corresponds to the Email Address Domain field in the API.
First and Last Name String This field is generated dynamically and corresponds to the First and Last Name field in the API.
Company Size String This field is generated dynamically and corresponds to the Company Size field in the API.
Lead Score - Last High Touch Event Date Datetime This field is generated dynamically and corresponds to the Lead Score - Last High Touch Event Date field in the API.
Lead Rating - Profile (Explicit) String This field is generated dynamically and corresponds to the Lead Rating - Profile (Explicit) field in the API.
Lead Rating - Engagement (Implicit) String This field is generated dynamically and corresponds to the Lead Rating - Engagement (Implicit) field in the API.
Lead Score - Profile (Explicit) Double This field is generated dynamically and corresponds to the Lead Score - Profile (Explicit) field in the API.
Lead Score - Engagement (Implicit) Double This field is generated dynamically and corresponds to the Lead Score - Engagement (Implicit) field in the API.
Lead Score Date - Profile - Most Recent Datetime This field is generated dynamically and corresponds to the Lead Score Date - Profile - Most Recent field in the API.
Employees Double This field is generated dynamically and corresponds to the Employees field in the API.
Territory String This field is generated dynamically and corresponds to the Territory field in the API.
Lead Score String This field is generated dynamically and corresponds to the Lead Score field in the API.
PURL Name String This field is generated dynamically and corresponds to the PURL Name field in the API.
MD5 Hashed Email Address String This field is generated dynamically and corresponds to the MD5 Hashed Email Address field in the API.
SHA256 Hashed Email Address String This field is generated dynamically and corresponds to the SHA256 Hashed Email Address field in the API.
MD5 Hashed Business Phone String This field is generated dynamically and corresponds to the MD5 Hashed Business Phone field in the API.
SHA256 Hashed Business Phone String This field is generated dynamically and corresponds to the SHA256 Hashed Business Phone field in the API.
MD5 Hashed Mobile Phone String This field is generated dynamically and corresponds to the MD5 Hashed Mobile Phone field in the API.
SHA256 Hashed Mobile Phone String This field is generated dynamically and corresponds to the SHA256 Hashed Mobile Phone field in the API.
onlineInsertTest String This field is generated dynamically and corresponds to the onlineInsertTest field in the API.
Survey Initial Meeting Date & Time Datetime This field is generated dynamically and corresponds to the Survey Initial Meeting Date & Time field in the API.
TestColumn1 String This field is generated dynamically and corresponds to the TestColumn1 field in the API.
TestColumn2 String This field is generated dynamically and corresponds to the TestColumn2 field in the API.
TestColumn3 String This field is generated dynamically and corresponds to the TestColumn3 field in the API.
TestColumn4 String This field is generated dynamically and corresponds to the TestColumn4 field in the API.
TestColumn5 String This field is generated dynamically and corresponds to the TestColumn5 field in the API.

CData Cloud

ContactSegmentFolder

Retrieve Contact Segment Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContactView

Retrieve Contact Views.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the contact view.
Name String The name of the contact view.
Description String The description of the contact view.
Permissions String The permissions of the contact view.
CreatedAt Datetime Date the contact view was created.
CreatedBy String The Id of the user who created the contact view.
AccessedAt Datetime Date the contact view was accessed.
UpdatedAt Datetime Date the contact view was updated.
UpdatedBy String The Id of the user who last updated the contact view.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ContentSectionFolder

Retrieve Content Section Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Dependencies

Retrieve Dependencies.

Columns

Name Type Description
ID [KEY] Long TBD.
Name String TBD.
Permissions String The permissions of the contact list.
Depth String The depth of the field.
Type String The type of the field.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ObjectName String TDB
ObjectId String TBD

CData Cloud

DynamicContent

Retrieve Dynamic Contents.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the dynamic content.
Name String The name of the dynamic content.
Description String The description of the dynamic content.
FolderId Long The Id of the folder for the dynamic content.
ScheduledFor Datetime The date and time scheduled for the dynamic content.
SourceTemplatedId Long The Id of the source template of the dynamic content.
Permissions String The permissions of the dynamic content.
CreatedAt Datetime Date the dynamic content was created.
CreatedBy String The Id of the user who created the dynamic content.
AccessedAt Datetime Date the dynamic content was accessed.
CurrentStatus String The current status of the dynamic content.
UpdatedAt Datetime Date the dynamic content was last updated.
UpdatedBy String The Id of the user who last updated the dynamic content.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

DynamicContentFolder

Retrieve Dynamic Content Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

EmailDeployment

Retrieve email deployments.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the email deployment.
Name String The name of the email deployment.
CurrentStatus String The current status of the email deployment.
SuccessfulSendCount Int The successful send count of the email deployment.
FailedSendCount Int The failed send count of the email deployment.
ContactId String The contact ID of the email deployment.
SendFromUserId String The sent user ID of the email deployment.
EndAt Datetime Date the email deployment ended.
Permissions String The permissions of the email deployment.
Email_ID Long The unique identifier of the email.
Email_Name String The name of the email.
Email_EmailGroupId Long The Id of the email group.
Email_IsPlainTextEditable Boolean Identifies whether the email is plaintext editable.
Email_IsTracked Boolean Identifies whether the email is tracked.
Email_PlainText String The plaintext version of the email.
Email_BouncebackEmail String The bounce-back email address.
Email_ReplyToEmail String The email address in the reply-to line of the email.
Email_ReplyToName String The name in the reply-to line of the email.
Email_SenderEmail String The email address of the sender.
Email_SenderName String The name of the sender.
Email_SendPlainTextOnly Boolean Identifies whether the plaintext version should be sent.
Email_Subject String The subject of the email.
Email_Description String The description of the email.
Email_FolderId Long The Id of the folder for the email.
Email_Permissions String The permissions of the email.
Email_CreatedAt Datetime Date the email was created.
Email_CreatedBy String The Id of the user who created the email.
Email_CurrentStatus String The current status of the email.
Email_UpdatedAt Datetime Date the email was updated.
Email_UpdatedBy String The Id of the user who last updated the email.
Email_HtmlContent_Type String The type for the content of the email.
Email_HtmlContent_ContentSource String The content source for the content of the email.
Email_HtmlContent_DocType String The doc type for the content of the email.
Email_HtmlContent_HTMLBody String The HTML body for the content of the email.
Email_HtmlContent_Root String The root for the content of the email.
Email_HtmlContent_MetaTags String The meta tags for the content of the email.
Email_HtmlContent_SystemHeader String The system header for the content of the email.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

EmailFolder

Retrieve Email Folders.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

EmailFooterFolder

Retrieve Email Footer Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

EmailHeaderFolder

Retrieve Email Header Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ExternalType

Retrieve External Types.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the external type.
Name String The name of the external type.
Description String The description of the external type.
FolderId Long The Id of the folder for the external type.
ScheduledFor Datetime The date and time scheduled for the external type.
SourceTemplatedId Long The Id of the source template of the external type.
Permissions String The permissions of the external type.
CreatedAt Datetime Date the external type was created.
CreatedBy String The Id of the user who created the external type.
AccessedAt Datetime Date the external type was accessed.
CurrentStatus String The current status of the external type.
UpdatedAt Datetime Date the external type was updated.
UpdatedBy String The Id of the user who last updated the external type.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

FieldMerge

Retrieve Field Merges.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the field merge.
Name String The name of the field merge.
Description String The description of the field merge.
FolderId Long The Id of the folder for the field merge.
ScheduledFor Datetime The date and time scheduled for the field merge.
SourceTemplatedId Long The Id of the source template of the field merge.
Permissions String The permissions of the field merge.
CreatedAt Datetime Date the field merge was created.
CreatedBy String The Id of the user who created the field merge.
AccessedAt Datetime Date the field merge was accessed.
CurrentStatus String The current status of the field merge.
UpdatedAt Datetime Date the field merge was updated.
UpdatedBy String The Id of the user who last updated the field merge.
Syntax String The syntax of the field merge.
DefaultValue String The default value of the data lookup for the field merge.
ContactFieldId Long The contact field Id of the field merge.
AccountFieldId Long The account field Id of the field merge.
EventId Long The event Id of the field merge.
EventFieldId Long The event field Id of the field merge.
EventSessionFieldId Long The event session field Id of the field merge.
MergeType String The merge type of the field merge.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

FieldMergeFolder

Retrieve Field Merge Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

FormElement

Retrieve Form Elements.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the form element.
CreatedFromContactFieldId Long The contact field Id which created the form element.
Name String The name of the form element.
Type String The type of the form element.
DataType String The data type of the form element.
HTMLName String The HTML name of the form element.
Style String The style of the form element.
Instructions String The instructions of the form element.
Validations String The validations of the form element.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
FormId String TBD
Depth String The depth of information requested from Eloqua.

CData Cloud

FormFolder

Retrieve Form Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

FormProcessingStep

Retrieve Form Processing Steps.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the form processing step.
Name String The name of the form processing step.
Type String The type of the form processing step.
Condition String The condition of the form processing step.
execute String The execute of the form processing step.
Mappings String The mappings of the form processing step.
keyFieldMapping String The key field mapping of the form processing step.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
FormId String TBD
Depth String The depth of information requested from Eloqua.

CData Cloud

HyperlinkFolder

Retrieve Hyperlink Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Image

Retrieve Image.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the image.
Name String The name of the image.
Permissions String The permissions of the image.
Description String The description of the image.
FolderId Long The folder Id of the image.
CreatedAt Datetime Date the image was created.
CreatedBy String The Id of the user who created the image.
UpdatedAt Datetime Date the image was last updated.
UpdatedBy String The Id of the user who last updated the image.
FullImageUrl String The full image URL of the image.
ThumbNailUrl String The thumb nail URL of the image.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ImageFolder

Retrieve Image Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

ImportedFile

Retrieve Imported Files.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the imported file.
Name String The name of the imported file.
Type String The type of the imported file.
FolderId Long The folder Id of the imported file.
FileName String The file name of the imported file.
Link String The link of the imported file.
TrackedLink String The tracked link of the imported file.
Permissions String The permissions of the imported file.
CreatedAt Datetime Date the imported file was created.
CreatedBy String The Id of the user who created the imported file.
AccessedAt Datetime Date the imported file was accessed.
Depth String The depth of the imported file.
UpdatedAt Datetime Date the imported file was updated.
UpdatedBy String The Id of the user who last updated the imported file.

CData Cloud

ImportedFileFolder

Retrieve Imported File Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

LandingPageFolder

Retrieve Landing Page Folders.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the folder.
Name String The name of the folder.
IsSystem Boolean Identifies a system-generated folder.
Description String The description of the folder.
Permissions String The permissions of the folder.
CreatedAt Datetime Date the folder was created.
CreatedBy String The Id of the user who created the folder.
AccessedAt Datetime Date the folder was accessed.
CurrentStatus String The current status of the folder.
UpdatedAt Datetime Date the folder was last updated.
UpdatedBy String The Id of the user who last updated the folder.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

LeadScoringModel

Query Lead Scoring Models.

Columns

Name Type Description
ID [KEY] Integer The unique identifier for the landing page.
Name String The name of the landing page.
Status String The status of the lead scoring model.
Rating String The rating of the lead scoring model.
ProfileScore String The profiles core of the lead scoring model.
EngagementScore String The engagement score of the lead scoring model.
Uri String The URI of the lead scoring model.
CreatedBy String The Id of the user who created the lead scoring model.
UpdatedBy String The Id of the user who updated the lead scoring model.
CreatedAt Timestamp Date the lead scoring model was created.
UpdatedAt Timestamp Date the lead scoring model was updated.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

PageTag

Retrieve Page Tags.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the page tag.
Name String The name of the page tag.
Description String The description of the page tag.
Permissions String The permissions of the page tag.
CreatedAt Datetime Date the page tag was created.
CreatedBy String The Id of the user who created the page tag.
AccessedAt Datetime Date the page tag was accessed.
CurrentStatus String The current status of the page tag.
UpdatedAt Datetime Date the page tag was updated.
UpdatedBy String The Id of the user who last updated the page tag.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

PageTagGroup

Retrieve Page Tag Groups.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the page tag group.
Name String The name of the page tag group.
Description String The description of the page tag group.
Permissions String The permissions of the page tag group.
CreatedAt Datetime Date the page tag group was created.
CreatedBy String The Id of the user who created the page tag group.
AccessedAt Datetime Date the page tag group was accessed.
CurrentStatus String The current status of the page tag group.
UpdatedAt Datetime Date the page tag group was updated.
UpdatedBy String The Id of the user who last updated the page tag group.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Program

Retrieve Programs.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the program.
Name String The name of the program.
Description String The description of the program.
FolderId Long The Id of the folder for the program.
ScheduledFor Datetime The date and time scheduled for the program.
SourceTemplatedId Long The Id of the source template of the program.
Permissions String The permissions of the program.
CreatedAt Datetime Date the program list was created.
CreatedBy String The Id of the user who created the program.
AccessedAt Datetime Date the program was accessed.
UpdatedAt Datetime Date the program was updated.
UpdatedBy String The Id of the user who last updated the program.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Rejects

Retrieves the rejected records for the specified import sync.

Columns

Name Type Description
StatusCode String The status code of the sync.
Message String The error message of the sync.
RecordIndex Int The record index.
InvalidFields String The invalid fields.
FieldValues String The fields values.
SyncId Int The Id of the sync.

CData Cloud

Style

Retrieve Styles.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the style.
Name String The name of the style.
Description String The description of the style.
UpdatedAt Datetime Date the style was last updated.
CreatedAt Datetime Date the style was created.
Body String The body of the style.
Column1 String Column 1 of the style.
Column2 String Column 2 of the style.
Column3 String Column 3 of the style.
Footer String The footer of the style.
Header String The header of the style.
Headline String The headline of the style.
Icon String The icon of the style.
Page String The page of the style.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Syncs

Retrieves the rejected records for the specified import sync.

Columns

Name Type Description
SyncedInstanceUri String The uri of the sync instance.
SyncStartedAt Timestamp The start time of the sync.
SyncEndedAt Timestamp The end time of the sync.
Status String The status of the sync.
CreatedAt Timestamp The create time of the sync.
CreatedBy String The creator of the sync.
Uri String The uri of the sync.

CData Cloud

Template

Retrieve Templates.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the template.
Name String The name of the template.
Description String The description of the template.
FolderId Long The Id of the folder for the template.
ScheduledFor Datetime The date and time scheduled for the template.
SourceTemplateId Long The source template Id of the template.
Permissions String The permissions of the template.
CreatedAt Datetime Date the template was created.
CreatedBy String The Id of the user who created the template.
AccessedAt Datetime Date the template was accessed.
CurrentStatus String The current status of the template.
UpdatedAt Datetime Date the template was last updated.
UpdatedBy String The Id of the user who last updated the template.
AssetType String The asset type of the template.
AssetId Long The asset Id of the template.
CategoryId Long The category Id of the template.
DocumentAtionTitle String The documentation title of the template.
DocumentAtionUrl String The documentation URL of the template.
IsContentProtected Boolean Identifies whether the template is content protected.
UseThumbnail Boolean Identifies whether the template uses a thumbnail.
IconUrl String The icon URL of the template.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

TemplateCategory

Retrieve Template Categories.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the template category.
Name String The name of the template.
Description String The description of the template category.
FolderId Long The Id of the folder for the template category.
ScheduledFor Datetime The date and time scheduled for the template category.
SourceTemplateId Long The source template Id of the template category.
Permissions String The permissions of the template category.
CreatedAt Datetime Date the template category was created.
CreatedBy String The Id of the user who created the template category.
AccessedAt Datetime Date the template category was accessed.
CurrentStatus String The current status of the template category.
UpdatedAt Datetime Date the template category was updated.
UpdatedBy String The Id of the user who last updated the template category.
SiteId Long The site Id of the template category.
DefaultTemplateIconUrl String The default template icon URL of the template category.
IconUrl String The icon URL of the template category.
Publisher String The publisher of the template category.
Campaigns Int The campaigns of the template category.
ContactSegments Int The contact segments of the template category.
Forms Int The forms of the template category.
LandingPages Int The landing pages of the template category.
Emails Int The emails of the template category.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

TrackedUrl

Retrieve Tracked Urls.

Columns

Name Type Description
ID [KEY] Long The unique identifier for the tracked URL.
Name String The name of the tracked URL.
Description String The description of the tracked URL.
FolderId Long The Id of the folder for the tracked URL.
ScheduledFor Datetime The date and time scheduled for the tracked URL.
SourceTemplatedId Long The Id of the source template of the tracked URL.
Permissions String The permissions of the tracked URL.
CreatedAt Datetime Date the tracked URL was created.
CreatedBy String The Id of the user who created the tracked URL.
AccessedAt Datetime Date the tracked URL was accessed.
CurrentStatus String The current status of the tracked URL.
Depth String The depth of the tracked URL.
UpdatedAt Datetime Date the tracked URL was last updated.
UpdatedBy String The Id of the user who last updated the tracked URL.
Url String The URL of the tracked URL.

CData Cloud

User

Retrieve Users.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type Description
ID [KEY] Long The unique identifier for this user.
Name String The name of the user.
Company String The company of the user.
Capabilities String The capabilities of the user.
BetaAccess String The beta access flag for the user.
DefaultAccountViewId Long The Id of the default account view for the user.
DefaultContactViewId Long The Id of the default contact view for the user.
EmailAddress String The email address of the user.
LoggedInAt String When the user last logged in.
LoginName String The login name of the user.
Preferences String The preferences for the user.
ProductPermissions String The product permissions for the user.
TypePermissions String The type permissions for the user.
ScheduledFor Datetime The date and time scheduled for the user.
SourceTemplatedId Long The Id of the source template for the user.
Description String The description of the user.
FolderId Long The Id of the folder for the user.
Permissions String The permissions of the user.
CreatedAt Datetime Date the user was created.
CreatedBy String The Id of the user that created the user.
AccessedAt Datetime Date the user was accessed.
CurrentStatus String The current status of the user.
Depth String The depth of the user.
UpdatedAt Datetime Date the user was updated.
UpdatedBy String The Id of the user who last updated the user.

CData Cloud

Visitor

Retrieve Visitors.

Table Specific Information

Select

The following limitation exists for filtering on datetime columns: The "=" operator cannot be used with datetime columns in the WHERE clause. However, the "<", ">", ">=", and "<=" operators can be used to filter on datetime columns.

Additionally, the UpdatedAt column only supports filtering with the '>' operator.

Oracle Eloqua also has limited support on multiple conditions. In many tables the AND condition between filters is not supported. If AND is included the server might not return any results, nor will it return an error.

Columns

Name Type Description
VisitorId [KEY] Long The Id of the visitor profile.
CreatedAt Datetime Date the visitor profile was created.
V_IPAddress String IP address of the visitor.
V_LastVisitDateAndTime Datetime Date of last visit to an Eloqua asset for this profile.
ExternalId String Customer GUID for this visitor profile.
ContactId Long The Id of the contact associated with this profile, if any.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

VisitorProfileField

Retrieve all of the visitor profile fields.

Columns

Name Type Description
Id [KEY] Long The Id of the visitor profile field.
Type String The type of the visitor profile field.
name String The name of the visitor profile field.
DataType String The datatype of the visitor profile field.
InternalName String The internal name of the visitor profile field.
Length Long The length of the visitor profile field.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Depth String The depth of information requested from Eloqua.

CData Cloud

Stored Procedures

Stored procedures are function-like interfaces that extend the functionality of the Cloud beyond simple SELECT/INSERT/UPDATE/DELETE operations with Oracle Eloqua.

Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Oracle Eloqua, along with an indication of whether the procedure succeeded or failed.

CData Cloud - Oracle Eloqua Stored Procedures

Name Description
ClearImportDefinitions Clears all open import definitions on a given table.
CreateExportDefinition Returns the token needed to retrieve data from a bulk export request.
DeleteExportData Delete the data stored on the Eloqua server from a bulk query request.
GetExportDefinition Retrieves the current state of the bulk export process on the server.
GetSyncLogs retrieve a sync's logs.
SubscribeContacts Subscribes a list of contacts to Email Groups.
UnsubscribeContacts Unsubscribes a list of contacts to Email Groups.

CData Cloud

ClearImportDefinitions

Clears all open import definitions on a given table.

Input

Name Type Description
TableName String The table to remove the import definitions from.

CData Cloud

CreateExportDefinition

Returns the token needed to retrieve data from a bulk export request.

Input

Name Type Description
Query String The SQL query used to retrieve data from a bulk table.

Result Set Columns

Name Type Description
ExportToken String The token used to retrieve data from a bulk export request. Supply this value in the WHERE clause when SELECTing data from a bulk API table. In the form 'DefinitionUrl|SyncsUrl'.

CData Cloud

DeleteExportData

Delete the data stored on the Eloqua server from a bulk query request.

Input

Name Type Description
ExportToken String The token returned from CreateExportDefinition

Result Set Columns

Name Type Description
State String A value of 'success' indicates delete export data sucessfully. Any other state would indicate an error.

CData Cloud

GetExportDefinition

Retrieves the current state of the bulk export process on the server.

Input

Name Type Description
ExportToken String The token returned from CreateExportDefinition
GetExportDefinition String Specifies whether to return extra metadata information. Set to false to return only the State.

The default value is true.

Result Set Columns

Name Type Description
State String The current state of bulk export. A value of 'pending' or 'active' indicate Eloqua is still processing the request. A value of 'success' indicates the results are ready to be retrieved. Any other state would indicate an error.
ExportDefinitionName String The name used to identify this bulk export definition.
ExportDefinitionFields String The fields requested by this bulk export definition.
ExportDefinitionFilter String The data filter for this bulk export definition.
ExportDefinitionCreateAt String The time the bulk export definition was created.
ExportDefinitionCreateBy String The user who created the bulk export definition.
ExportDefinitionUpdateAt String The time the bulk export definition was last updated.
ExportDefinitionUpdateBy String The user who last updated the bulk export definition.

CData Cloud

GetSyncLogs

retrieve a sync's logs.

Input

Name Type Description
SyncId String Id of the sync.

Result Set Columns

Name Type Description
SyncUri String The syncUri of the sync.
Count String The index of the log message.
Severity String The severity of the sync log.
StatusCode String The statusCode of the sync log.
Message String The message of the sync log.
CreatedAt String The created time of the sync log.

CData Cloud

SubscribeContacts

Subscribes a list of contacts to Email Groups.

Input

Name Type Description
EmailGroupID String The list of Email Groups to subscribe to. The default is GlobalSubscribe.

The default value is GlobalSubscribe.

ContactIDs String The list of Contacts to subscribe to the groups.

Result Set Columns

Name Type Description
State String The current state of bulk export. A value of 'pending' or 'active' indicate Eloqua is still processing the request. A value of 'success' indicates the results are ready to be retrieved. Any other state would indicate an error.

CData Cloud

UnsubscribeContacts

Unsubscribes a list of contacts to Email Groups.

Input

Name Type Description
EmailGroupID String The list of Email Groups to subscribe to. The default is GlobalSubscribe

The default value is GlobalSubscribe.

ContactIDs String The list of Contacts to subscribe to the groups.

Result Set Columns

Name Type Description
State String The current state of bulk export. A value of 'pending' or 'active' indicate Eloqua is still processing the request. A value of 'success' indicates the results are ready to be retrieved. Any other state would indicate an error.

CData Cloud

System Tables

You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.

Schema Tables

The following tables return database metadata for Oracle Eloqua:

  • sys_catalogs: Lists the available databases.
  • sys_schemas: Lists the available schemas.
  • sys_tables: Lists the available tables and views.
  • sys_tablecolumns: Describes the columns of the available tables and views.
  • sys_procedures: Describes the available stored procedures.
  • sys_procedureparameters: Describes stored procedure parameters.
  • sys_keycolumns: Describes the primary and foreign keys.
  • sys_indexes: Describes the available indexes.

Data Source Tables

The following tables return information about how to connect to and query the data source:

  • sys_connection_props: Returns information on the available connection properties.
  • sys_sqlinfo: Describes the SELECT queries that the Cloud can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries:

  • sys_identity: Returns information about batch operations or single updates.

CData Cloud

sys_catalogs

Lists the available databases.

The following query retrieves all databases determined by the connection string:

SELECT * FROM sys_catalogs

Columns

Name Type Description
CatalogName String The database name.

CData Cloud

sys_schemas

Lists the available schemas.

The following query retrieves all available schemas:

          SELECT * FROM sys_schemas
          

Columns

Name Type Description
CatalogName String The database name.
SchemaName String The schema name.

CData Cloud

sys_tables

Lists the available tables.

The following query retrieves the available tables and views:

          SELECT * FROM sys_tables
          

Columns

Name Type Description
CatalogName String The database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view.
TableType String The table type (table or view).
Description String A description of the table or view.
IsUpdateable Boolean Whether the table can be updated.

CData Cloud

sys_tablecolumns

Describes the columns of the available tables and views.

The following query returns the columns and data types for the Contact table:

SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Contact' 

Columns

Name Type Description
CatalogName String The name of the database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view containing the column.
ColumnName String The column name.
DataTypeName String The data type name.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The storage size of the column.
DisplaySize Int32 The designated column's normal maximum width in characters.
NumericPrecision Int32 The maximum number of digits in numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The column scale or number of digits to the right of the decimal point.
IsNullable Boolean Whether the column can contain null.
Description String A brief description of the column.
Ordinal Int32 The sequence number of the column.
IsAutoIncrement String Whether the column value is assigned in fixed increments.
IsGeneratedColumn String Whether the column is generated.
IsHidden Boolean Whether the column is hidden.
IsArray Boolean Whether the column is an array.
IsReadOnly Boolean Whether the column is read-only.
IsKey Boolean Indicates whether a field returned from sys_tablecolumns is the primary key of the table.

CData Cloud

sys_procedures

Lists the available stored procedures.

The following query retrieves the available stored procedures:

          SELECT * FROM sys_procedures
          

Columns

Name Type Description
CatalogName String The database containing the stored procedure.
SchemaName String The schema containing the stored procedure.
ProcedureName String The name of the stored procedure.
Description String A description of the stored procedure.
ProcedureType String The type of the procedure, such as PROCEDURE or FUNCTION.

CData Cloud

sys_procedureparameters

Describes stored procedure parameters.

The following query returns information about all of the input parameters for the SelectEntries stored procedure:

SELECT * FROM sys_procedureparameters WHERE ProcedureName='SelectEntries' AND Direction=1 OR Direction=2

Columns

Name Type Description
CatalogName String The name of the database containing the stored procedure.
SchemaName String The name of the schema containing the stored procedure.
ProcedureName String The name of the stored procedure containing the parameter.
ColumnName String The name of the stored procedure parameter.
Direction Int32 An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters.
DataTypeName String The name of the data type.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric data.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The number of digits to the right of the decimal point in numeric data.
IsNullable Boolean Whether the parameter can contain null.
IsRequired Boolean Whether the parameter is required for execution of the procedure.
IsArray Boolean Whether the parameter is an array.
Description String The description of the parameter.
Ordinal Int32 The index of the parameter.

CData Cloud

sys_keycolumns

Describes the primary and foreign keys.

The following query retrieves the primary key for the Contact table:

         SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Contact' 
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
IsKey Boolean Whether the column is a primary key in the table referenced in the TableName field.
IsForeignKey Boolean Whether the column is a foreign key referenced in the TableName field.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.

CData Cloud

sys_foreignkeys

Describes the foreign keys.

The following query retrieves all foreign keys which refer to other tables:

         SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.
ForeignKeyType String Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key.

CData Cloud

sys_primarykeys

Describes the primary keys.

The following query retrieves the primary keys from all tables and views:

         SELECT * FROM sys_primarykeys
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
KeySeq String The sequence number of the primary key.
KeyName String The name of the primary key.

CData Cloud

sys_indexes

Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.

The following query retrieves all indexes that are not primary keys:

          SELECT * FROM sys_indexes WHERE IsPrimary='false'
          

Columns

Name Type Description
CatalogName String The name of the database containing the index.
SchemaName String The name of the schema containing the index.
TableName String The name of the table containing the index.
IndexName String The index name.
ColumnName String The name of the column associated with the index.
IsUnique Boolean True if the index is unique. False otherwise.
IsPrimary Boolean True if the index is a primary key. False otherwise.
Type Int16 An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3).
SortOrder String The sort order: A for ascending or D for descending.
OrdinalPosition Int16 The sequence number of the column in the index.

CData Cloud

sys_connection_props

Returns information on the available connection properties and those set in the connection string.

The following query retrieves all connection properties that have been set in the connection string or set through a default value:

SELECT * FROM sys_connection_props WHERE Value <> ''

Columns

Name Type Description
Name String The name of the connection property.
ShortDescription String A brief description.
Type String The data type of the connection property.
Default String The default value if one is not explicitly set.
Values String A comma-separated list of possible values. A validation error is thrown if another value is specified.
Value String The value you set or a preconfigured default.
Required Boolean Whether the property is required to connect.
Category String The category of the connection property.
IsSessionProperty String Whether the property is a session property, used to save information about the current connection.
Sensitivity String The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms.
PropertyName String A camel-cased truncated form of the connection property name.
Ordinal Int32 The index of the parameter.
CatOrdinal Int32 The index of the parameter category.
Hierarchy String Shows dependent properties associated that need to be set alongside this one.
Visible Boolean Informs whether the property is visible in the connection UI.
ETC String Various miscellaneous information about the property.

CData Cloud

sys_sqlinfo

Describes the SELECT query processing that the Cloud can offload to the data source.

See SQL Compliance for SQL syntax details.

Discovering the Data Source's SELECT Capabilities

Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.

NameDescriptionPossible Values
AGGREGATE_FUNCTIONSSupported aggregation functions.AVG, COUNT, MAX, MIN, SUM, DISTINCT
COUNTWhether COUNT function is supported.YES, NO
IDENTIFIER_QUOTE_OPEN_CHARThe opening character used to escape an identifier.[
IDENTIFIER_QUOTE_CLOSE_CHARThe closing character used to escape an identifier.]
SUPPORTED_OPERATORSA list of supported SQL operators.=, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR
GROUP_BYWhether GROUP BY is supported, and, if so, the degree of support.NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE
OJ_CAPABILITIESThe supported varieties of outer joins supported.NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS
OUTER_JOINSWhether outer joins are supported.YES, NO
SUBQUERIESWhether subqueries are supported, and, if so, the degree of support.NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED
STRING_FUNCTIONSSupported string functions.LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE
NUMERIC_FUNCTIONSSupported numeric functions.ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE
TIMEDATE_FUNCTIONSSupported date/time functions.NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT
REPLICATION_SKIP_TABLESIndicates tables skipped during replication.
REPLICATION_TIMECHECK_COLUMNSA string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication.
IDENTIFIER_PATTERNString value indicating what string is valid for an identifier.
SUPPORT_TRANSACTIONIndicates if the provider supports transactions such as commit and rollback.YES, NO
DIALECTIndicates the SQL dialect to use.
KEY_PROPERTIESIndicates the properties which identify the uniform database.
SUPPORTS_MULTIPLE_SCHEMASIndicates if multiple schemas may exist for the provider.YES, NO
SUPPORTS_MULTIPLE_CATALOGSIndicates if multiple catalogs may exist for the provider.YES, NO
DATASYNCVERSIONThe CData Data Sync version needed to access this driver.Standard, Starter, Professional, Enterprise
DATASYNCCATEGORYThe CData Data Sync category of this driver.Source, Destination, Cloud Destination
SUPPORTSENHANCEDSQLWhether enhanced SQL functionality beyond what is offered by the API is supported.TRUE, FALSE
SUPPORTS_BATCH_OPERATIONSWhether batch operations are supported.YES, NO
SQL_CAPAll supported SQL capabilities for this driver.SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX
PREFERRED_CACHE_OPTIONSA string value specifies the preferred cacheOptions.
ENABLE_EF_ADVANCED_QUERYIndicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side.YES, NO
PSEUDO_COLUMNSA string array indicating the available pseudo columns.
MERGE_ALWAYSIf the value is true, The Merge Mode is forcibly executed in Data Sync.TRUE, FALSE
REPLICATION_MIN_DATE_QUERYA select query to return the replicate start datetime.
REPLICATION_MIN_FUNCTIONAllows a provider to specify the formula name to use for executing a server side min.
REPLICATION_START_DATEAllows a provider to specify a replicate startdate.
REPLICATION_MAX_DATE_QUERYA select query to return the replicate end datetime.
REPLICATION_MAX_FUNCTIONAllows a provider to specify the formula name to use for executing a server side max.
IGNORE_INTERVALS_ON_INITIAL_REPLICATEA list of tables which will skip dividing the replicate into chunks on the initial replicate.
CHECKCACHE_USE_PARENTIDIndicates whether the CheckCache statement should be done against the parent key column.TRUE, FALSE
CREATE_SCHEMA_PROCEDURESIndicates stored procedures that can be used for generating schema files.

The following query retrieves the operators that can be used in the WHERE clause:

SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.

Columns

Name Type Description
NAME String A component of SQL syntax, or a capability that can be processed on the server.
VALUE String Detail on the supported SQL or SQL syntax.

CData Cloud

sys_identity

Returns information about attempted modifications.

The following query retrieves the Ids of the modified rows in a batch operation:

         SELECT * FROM sys_identity
          

Columns

Name Type Description
Id String The database-generated Id returned from a data modification operation.
Batch String An identifier for the batch. 1 for a single operation.
Operation String The result of the operation in the batch: INSERTED, UPDATED, or DELETED.
Message String SUCCESS or an error message if the update in the batch failed.

CData Cloud

sys_information

Describes the available system information.

The following query retrieves all columns:

SELECT * FROM sys_information

Columns

NameTypeDescription
ProductStringThe name of the product.
VersionStringThe version number of the product.
DatasourceStringThe name of the datasource the product connects to.
NodeIdStringThe unique identifier of the machine where the product is installed.
HelpURLStringThe URL to the product's help documentation.
LicenseStringThe license information for the product. (If this information is not available, the field may be left blank or marked as 'N/A'.)
LocationStringThe file path location where the product's library is stored.
EnvironmentStringThe version of the environment or rumtine the product is currently running under.
DataSyncVersionStringThe tier of CData Sync required to use this connector.
DataSyncCategoryStringThe category of CData Sync functionality (e.g., Source, Destination).

CData Cloud

Connection String Options

The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.

For more information on establishing a connection, see Establishing a Connection.

Authentication


PropertyDescription
AuthSchemeThe authentication scheme used. Accepted entries are Basic and OAuth.
CompanyThe company of the Eloqua account. This field is used to authenticate the user.
ReportingSubjectThe subject area for the reporting API. Currently, only the CampaignAnalysis is supported.
UserSpecifies the user ID of the authenticating Oracle Eloqua user account.
PasswordSpecifies the password of the authenticating user account.

OAuth


PropertyDescription
OAuthClientIdSpecifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.
OAuthClientSecretSpecifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.

SSL


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.

Logging


PropertyDescription
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.

Schema


PropertyDescription
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
SchemaThe type of schema to use.

Miscellaneous


PropertyDescription
BulkPollingIntervalThe time interval between requests that check the availability of the bulk query response. The default value is 200 ms.
BulkQueryTimeoutThe timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes.
DataRetentionDurationThe length of time (in hours) that bulk data is stored on the server. Valid values are from 1 hour to 2 weeks. The default value is 24 hours.
DisplayColumnNameSpecifies the display name for columns when using the Oracle Eloqua Bulk API. The possible settings are empty string, 'internal', and 'statement'.
MapDataCardsCaseSensitiveMatchWhether or not to use case sensitive match in data card mapping.
MapDataCardsRelationshipComma-separated list of the relationships between the Custom Object tables and the Entity tables.
MaxRowsSpecifies the maximum rows returned for queries without aggregation or GROUP BY.
PagesizeSpecifies the maximum number of results to return from Oracle Eloqua, per page. This setting overrides the default page size set by the datasource, which is optimized for most use cases.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.
RetryCountThe maximum number of times to retry a Bulk API request that fails due to an HTTP 500 status code (Internal Server Error).
RetryIntervalThe time interval between attempts to retry a Bulk API request that failed with an HTTP 500 status code (Internal Server Error).
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.
UseBulkAPIWhether or not the bulk API is used for retrieving data.
UseSimpleNamesBoolean determining if simple names should be used for tables and columns.
CData Cloud

Authentication

This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.


PropertyDescription
AuthSchemeThe authentication scheme used. Accepted entries are Basic and OAuth.
CompanyThe company of the Eloqua account. This field is used to authenticate the user.
ReportingSubjectThe subject area for the reporting API. Currently, only the CampaignAnalysis is supported.
UserSpecifies the user ID of the authenticating Oracle Eloqua user account.
PasswordSpecifies the password of the authenticating user account.
CData Cloud

AuthScheme

The authentication scheme used. Accepted entries are Basic and OAuth.

Possible Values

Basic, OAuth

Data Type

string

Default Value

"Basic"

Remarks

The Cloud supports the following authentication mechanisms. See the Getting Started chapter for authentication guides.

  • Basic: Set this to authenticate with a Oracle Eloqua company, user, password.
  • OAuth: Set this to use oauth authentication. Set OAuthClientId, OAuthClientSecret to the Oracle Eloqua OAuth credentials. Additionally, set InitiateOAuth to GETANDREFRESH or REFRESH.

CData Cloud

Company

The company of the Eloqua account. This field is used to authenticate the user.

Data Type

string

Default Value

""

Remarks

This field is used to provide authentication for the user to the Eloqua servers.

CData Cloud

ReportingSubject

The subject area for the reporting API. Currently, only the CampaignAnalysis is supported.

Possible Values

CampaignAnalysis

Data Type

string

Default Value

"CampaignAnalysis"

Remarks

The subject area for the reporting API. Currently, only the CampaignAnalysis is supported.

CData Cloud

User

Specifies the user ID of the authenticating Oracle Eloqua user account.

Data Type

string

Default Value

""

Remarks

The authenticating server requires both User and Password to validate the user's identity.

CData Cloud

Password

Specifies the password of the authenticating user account.

Data Type

string

Default Value

""

Remarks

The authenticating server requires both User and Password to validate the user's identity.

CData Cloud

OAuth

This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.


PropertyDescription
OAuthClientIdSpecifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.
OAuthClientSecretSpecifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.
CData Cloud

OAuthClientId

Specifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.

Data Type

string

Default Value

""

Remarks

OAuthClientId is one of a handful of connection parameters that need to be set before users can authenticate via OAuth. For details, see Establishing a Connection.

CData Cloud

OAuthClientSecret

Specifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.

Data Type

string

Default Value

""

Remarks

OAuthClientSecret is one of a handful of connection parameters that need to be set before users can authenticate via OAuth. For details, see Establishing a Connection.

CData Cloud

SSL

This section provides a complete list of the SSL properties you can configure in the connection string for this provider.


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.
CData Cloud

SSLServerCert

Specifies the certificate to be accepted from the server when connecting using TLS/SSL.

Data Type

string

Default Value

""

Remarks

If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE-----
A path to a local file containing the certificate C:\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space or colon separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space or colon separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

If not specified, any certificate trusted by the machine is accepted.

Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.

CData Cloud

Logging

This section provides a complete list of the Logging properties you can configure in the connection string for this provider.


PropertyDescription
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
CData Cloud

Verbosity

Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.

Data Type

string

Default Value

"1"

Remarks

This property defines the level of detail the Cloud includes in the log file. Higher verbosity levels increase the detail of the logged information, but may also result in larger log files and slower performance due to the additional data being captured.

The default verbosity level is 1, which is recommended for regular operation. Higher verbosity levels are primarily intended for debugging purposes. For more information on each level, refer to Logging.

When combined with the LogModules property, Verbosity can refine logging to specific categories of information.

CData Cloud

Schema

This section provides a complete list of the Schema properties you can configure in the connection string for this provider.


PropertyDescription
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
SchemaThe type of schema to use.
CData Cloud

BrowsableSchemas

Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .

Data Type

string

Default Value

""

Remarks

Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.

CData Cloud

Schema

The type of schema to use.

Possible Values

OracleEloqua, Reporting

Data Type

string

Default Value

"OracleEloqua"

Remarks

The schemas available are OracleEloqua and Reporting.

CData Cloud

Miscellaneous

This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.


PropertyDescription
BulkPollingIntervalThe time interval between requests that check the availability of the bulk query response. The default value is 200 ms.
BulkQueryTimeoutThe timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes.
DataRetentionDurationThe length of time (in hours) that bulk data is stored on the server. Valid values are from 1 hour to 2 weeks. The default value is 24 hours.
DisplayColumnNameSpecifies the display name for columns when using the Oracle Eloqua Bulk API. The possible settings are empty string, 'internal', and 'statement'.
MapDataCardsCaseSensitiveMatchWhether or not to use case sensitive match in data card mapping.
MapDataCardsRelationshipComma-separated list of the relationships between the Custom Object tables and the Entity tables.
MaxRowsSpecifies the maximum rows returned for queries without aggregation or GROUP BY.
PagesizeSpecifies the maximum number of results to return from Oracle Eloqua, per page. This setting overrides the default page size set by the datasource, which is optimized for most use cases.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.
RetryCountThe maximum number of times to retry a Bulk API request that fails due to an HTTP 500 status code (Internal Server Error).
RetryIntervalThe time interval between attempts to retry a Bulk API request that failed with an HTTP 500 status code (Internal Server Error).
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.
UseBulkAPIWhether or not the bulk API is used for retrieving data.
UseSimpleNamesBoolean determining if simple names should be used for tables and columns.
CData Cloud

BulkPollingInterval

The time interval between requests that check the availability of the bulk query response. The default value is 200 ms.

Data Type

string

Default Value

"200"

Remarks

The time interval between requests that check the availability of the bulk query response. When UseBulkAPI is set, the Cloud requests Eloqua to prepare a response to the query. It then waits for the response to be ready by periodically polling the server to check status. This property controls the frequency of polling.

CData Cloud

BulkQueryTimeout

The timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes.

Data Type

string

Default Value

"25"

Remarks

The timeout in minutes for which the Cloud will wait for a bulk query response. The default value is 25 minutes. When UseBulkAPI is set, the Cloud requests Eloqua to prepare a response to the query. It then waits for the response to be ready by periodically polling the server to check status. This property controls the total time the Cloud will wait for a response.

Note that this property is very different from Timeout. The Timeout is an inactivity timeout that controls the time to wait for any response. This property controls the total length of time to wait for a bulk query to execute. ;

CData Cloud

DataRetentionDuration

The length of time (in hours) that bulk data is stored on the server. Valid values are from 1 hour to 2 weeks. The default value is 24 hours.

Data Type

string

Default Value

"24"

Remarks

The length of time (in hours) that bulk data is stored on the server. Valid values are from 1 hour to 2 weeks. The default value is 24 hours.

CData Cloud

DisplayColumnName

Specifies the display name for columns when using the Oracle Eloqua Bulk API. The possible settings are empty string, 'internal', and 'statement'.

Data Type

string

Default Value

""

Remarks

The response data Oracle Eloqua Bulk API Fields contains three kinds of displayName: "name","statement",and "internalName" for the same field.

The display name type chosen is simply a matter of visual preference.

As an example, suppose you have the following JSON response for an EmailAddress item.


{
    "items":[
        {
            "name":"Email Address",
            "internalName":"C_EmailAddress",
            "dataType":"emailAddress",
            "hasReadOnlyConstraint":false,
            "hasNotNullConstraint":false,
            "hasUniquenessConstraint":true,
            "statement":"{{Contact.Field(C_EmailAddress)}}",
            "uri":"/contacts/fields/100001",
            "createdAt":"1900-01-01T05:00:00.0000000Z",
            "updatedAt":"1900-01-01T05:00:00.0000000Z"
        },
       ......
    ]
}
The column name listed upon metadata discovery from the Cloud will be one of the following.
  • Empty String: The default value is empty string. The means the "name" of the field will be regarded as the display column name: EmailAddress.
  • internal: This means the "internalName" of the field will be regarded as the display column name: C_EmailAddress.
  • statement: It means the "statement" of the field will be regarded as the display column name: {{Contact.Field(C_EmailAddress)}}.

CData Cloud

MapDataCardsCaseSensitiveMatch

Whether or not to use case sensitive match in data card mapping.

Data Type

bool

Default Value

false

Remarks

Whether or not to use case sensitive match in data card mapping. Only has an effect if MapDataCardsRelationship is set.

CData Cloud

MapDataCardsRelationship

Comma-separated list of the relationships between the Custom Object tables and the Entity tables.

Data Type

string

Default Value

""

Remarks

Comma-separated list of the relationships between the Custom Object tables and the Entity tables. The format of these relationships is '<custom_object>.<source_field>=<entity_type>.<entity_field>'. For example: Custom_MyCustomObject.Email_Address=Contact.C_EmailAddress

CData Cloud

MaxRows

Specifies the maximum rows returned for queries without aggregation or GROUP BY.

Data Type

int

Default Value

-1

Remarks

This property sets an upper limit on the number of rows the Cloud returns for queries that do not include aggregation or GROUP BY clauses. This limit ensures that queries do not return excessively large result sets by default.

When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting. If MaxRows is set to "-1", no row limit is enforced unless a LIMIT clause is explicitly included in the query.

This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.

CData Cloud

Pagesize

Specifies the maximum number of results to return from Oracle Eloqua, per page. This setting overrides the default page size set by the datasource, which is optimized for most use cases.

Data Type

int

Default Value

500

Remarks

You may want to adjust the default pagesize to optimize results for a particular object or service endpoint you are querying. Be aware that increasing the page size may improve performance, but it could also result in higher memory consumption per page.

CData Cloud

PseudoColumns

Specifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.

Data Type

string

Default Value

""

Remarks

This property allows you to define which pseudocolumns the Cloud exposes as table columns.

To specify individual pseudocolumns, use the following format: "Table1=Column1;Table1=Column2;Table2=Column3"

To include all pseudocolumns for all tables use: "*=*"

CData Cloud

RetryCount

The maximum number of times to retry a Bulk API request that fails due to an HTTP 500 status code (Internal Server Error).

Data Type

string

Default Value

"5"

Remarks

When UseBulkAPI is set to "Auto" or "True", the Cloud will attempt to retry any requests that fail due to an HTTP 500 status code (Internal Server Error). This property defintes maximum number of time the Cloud will retry a Bulk API request that failed. By default the Cloud will retry the request 5 times.

CData Cloud

RetryInterval

The time interval between attempts to retry a Bulk API request that failed with an HTTP 500 status code (Internal Server Error).

Data Type

string

Default Value

"200"

Remarks

When UseBulkAPI is set to "Auto" or "True", the Cloud will attempt to retry any requests that fail due to an HTTP 500 status code (Internal Server Error). This property defines the time interval between attempts to retry a Bulk API request that failed. The default value is 200 ms.

CData Cloud

Timeout

Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.

Data Type

int

Default Value

60

Remarks

This property controls the maximum time, in seconds, that the Cloud waits for an operation to complete before canceling it. If the timeout period expires before the operation finishes, the Cloud cancels the operation and throws an exception.

The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.

Setting this property to 0 disables the timeout, allowing operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server. Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.

CData Cloud

UseBulkAPI

Whether or not the bulk API is used for retrieving data.

Possible Values

Auto, False, True

Data Type

string

Default Value

"Auto"

Remarks

Whether or not the bulk API is used for retrieving data. When UseBulkAPI is set to "True", the Cloud will always attempt to use the bulk API. However, there are several restrictions to accessible tables and columns. See Data Model for more information.

When set to "False", the Cloud will use the REST API for all requests. When set to "Auto", the Cloud will use whichever API is most appropriate for the request. For example, consider the following query:

SELECT * FROM Activity_EmailOpen
In this case, the Cloud will use the Bulk API (because the ContactId is not specified), whereas the following query will use the REST API:
SELECT * FROM Activity_EmailOpen ContactId='...'

Using the Bulk API starts with the Cloud sending a request to Eloqua to prepare a response to the query. It then waits for the response to be ready by periodically polling the server to check status. BulkPollingInterval and BulkQueryTimeout control the frequency and duration of polling respectively.

CData Cloud

UseSimpleNames

Boolean determining if simple names should be used for tables and columns.

Data Type

bool

Default Value

false

Remarks

Oracle Eloqua tables and columns can use special characters in names that are normally not allowed in standard databases. UseSimpleNames makes the Cloud easier to use with traditional database tools.

Setting UseSimpleNames to true will simplify the names of tables and columns returned. It will enforce a naming scheme such that only alphanumeric characters and the underscore are valid for the displayed table and column names. Any nonalphanumeric characters will be converted to an underscore.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175