CData Python Connector for Marketo

Build 26.0.9655

CData Python Connector for Marketo

Overview

The CData Python Connector for Marketo allows developers to write Python scripts with connectivity to Marketo. The connector wraps the complexity of accessing Marketo data in an interface commonly used by Python connectors to common database systems.

Key Features

  • WHL installation packages that enable installation with "pip install".
  • Supported for Python 3.10 or newer on Windows, Linux, and macOS.
  • Write and execute SQL queries to fetch and update data in Marketo.
  • Custom dialect class that enables SQLAlchemy 1.3 and 1.4 to use this connector.

Getting Started

See Getting Started to install the connector to your Python distribution and to create a basic connection to Marketo.

Using the Python Connector/Using from Tools

See Using the Connector for examples of executing basic SELECT, INSERT, UPDATE, DELETE, and EXECUTE queries with the module's provided classes.

See Using from Tools to connect Marketo data to tools such as Pandas or Petl.

SQLAlchemy ORM

SQLAlchemy can be leveraged to model the tables in Marketo with mapped classes. See From SQLAlchemy for instructions for configuring the Python connector with SQLAlchemy.

Pandas

Pandas' DataFrames can be used alongside the connector to generate analytical graphics. See From Pandas for a guide.

Schema Discovery

See Schema Discovery to query the provided system tables, which allows users to discover the available tables, views, and stored procedure, alongside additional information about their columns or parameters.

Advanced Features

Advanced Features details additional features supported by the connector, such as defining user defined views, ssl configuration, remoting, caching, firewall/proxy settings, and advanced logging.

SQL Compliance

See SQL Compliance for a syntax reference and code examples outlining the supported SQL.

Data Model

See Data Model for the available database objects. This section also provides more detailed information on querying specific Marketo entities.

Connection String Options

The Connection properties describe the various options that can be used to establish a connection.

CData Python Connector for Marketo

Getting Started

Connecting to Marketo

For information on the available WHL files for supported environments, and how to install the appropriate file for your Python distribution, see Package Installation.

For information on the module to import, and how to configure the necessary connection properties in a connection string, see Establishing a Connection.

Other available connection properties can be used to configure other aspects of the connector capabilities.

Python Version Support

The CData Python Connector for Marketo can be installed and used in Python 3.10 or newer.

Marketo Version Support

The connector enables SQL92 access to the entities available through version 1 of the REST API.

See Also

  • Using the Connector: Establish connections and query Marketo through Python code.
  • From SQLAlchemy: Use SQLAlchemy to establish a connection with dialect URL, and interact with Marketo data using mapped classes and Sessions.

CData Python Connector for Marketo

Package Installation

Dependencies

The Python connectors require that Python 3.10 or newer be installed.

Installation

The CData Python Connector for Marketo is available as a WHL file for Windows, Linux, and Mac. Each connector is built using the Python 3.10 Stable ABI (indicated by the abi3 tag in the filename), so a single wheel supports any Python 3.10 or newer installation — there is no need to match your exact Python minor version. Use the "pip install" command with the appropriate WHL file for your platform.

Windows:

pip install cdata_marketo_connector-26.0.9655-cp310-abi3-win_amd64.whl

Linux:

pip install cdata_marketo_connector-26.0.9655-cp310-abi3-linux_x86_64.whl

macOS:

pip install cdata_marketo_connector-26.0.9655-cp310-abi3-macosx_12_0_arm64.whl

The macOS wheel supports arm64 (Apple Silicon) architectures only on macOS 12 and newer.

Regardless of the environment, certain distributions might require that the "pip3 install" command be used instead, to differentiate from a Python 2 distribution that might exist already. After installation, confirm whether the connector is successfully installed by running the "pip list" command. If "cdata_marketo_connector" is present in the list output by the command, then the installation was successful.

Upgrading

When upgrading, "pip install" does not automatically clean up old JRE files. To avoid leftover files that could cause JVM errors, uninstall the previous version before installing the new one.

Licensing

After the installation is complete, a separate step is needed to activate a license for the connector. Among the CData assets in the distribution's site packages, there is an install-license tool that activates this license. From within the distribution's site-packages folder, after navigating to the "cdata/installlic_marketo" folder, simply use a command like the below to activate the license. Omitting the <key> argument activates a trial license:

  • Windows:
    ./install-license.exe <key>
  • Linux / Mac:
    ./install-license.sh <key>

Sometimes, file access issues may cause pip to install the connector in a fallback file path that is not the python distribution's main or primary site-packages location. This can make it difficult to find where the connector was installed, and from there, the license activator. In that event, this python script below will print out the full file path of the connector's native file. This file will be stored in the mentioned cdata folder, from which the installlic_marketo folder is trivial to find:

import os
import cdata.marketo
path = os.path.abspath(cdata.marketo.__file__)
print(path)

Uninstallation

If the connector needs to be uninstalled for any reason, do so by running the pip uninstall command, as in the example below:

pip uninstall cdata-marketo-connector

CData Python Connector for Marketo

Establishing a Connection

The objects available within our connector are accessible from the "cdata.marketo" module. To use the module's objects directly:

  1. Import the module as follows:
    import cdata.marketo as mod
  2. To establish a connection string, call the connect() method from the connector object using an appropriate connection string, such as:
    mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

Connecting to Marketo

The following connection options are required when connecting to Marketo.

  • URL: The URL of the REST API Service. You can locate this in Admin -> Integration -> Web Services -> REST API. Example values: https://123-abc-456.mktorest.com/ or https://123-abc-456.mktorest.com/rest.
  • OAuthClientId: The OAuth Client ID associated with your custom service.
  • OAuthClientSecret: The OAuth Client Secret associated with your custom service.
For additional connection options, see Connection String Options.

Obtaining OAuth Credentials

Before obtaining OAuth credentials you need to create a custom service if you do not already have one. To do so follow the instructions provided in Creating a Custom Service.

To obtain OAuth credentials for a custom service:

  1. Go to the Admin tab.
  2. Click on the LaunchPoint option.
  3. Select the service and click on View Details.
  4. Marketo displays a window that shows the authentication credentials. Use "Client Id" as the value for OAuthClientId and "Client Secret" for OAuthClientSecret.

CData Python Connector for Marketo

Configuring JNI

Java Native Interface (JNI) is a standard programming interface for writing Java native methods and embedding the Java virtual machine into native applications.

The connector leverages the JNI for improved performance on Mac and Linux.

Configure the Config INI File

The Linux and Mac editions of the Marketo python connector are configured with an ini file. This file is used to set several parameters, including JNI behavior. This file is to be located in:

{path_to_distribution_site-packages}/cdata/config.ini

Ensure that any configuration properties you set in the ini file fall under the following section name (adjust the 311 number if you are using an different python version from 3.11):

  • For Linux:
    [marketo.cpython-311-x86_64-linux-gnu.so]
  • For Mac:
    [marketo.cpython-311-darwin.so]

Configure the JNI connector's behavior by editing the properties in the connector's config.ini file. The connector can be configured as follows:

  • LOGFILE: Set this the same way as the CDATA_LOGFILE envrionment variable below.
  • JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CLASS_PATH: Use a colon-separated list to configure the paths to the third-party jar libraries.

Configure Environment Variables

Additionally, set the following environment variables:

  • CDATA_JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CDATA_JVM_OPTIONS: Place JVM options here.
  • CDATA_LOGFILE: Set this in the following scheme: <SCHEME>://<TAG>[|<LEVEL>]

    • SCHEME: The options are STDOUT, FILE.
      • STDOUT: Both the native wrapper and odbc core log into stdout. The Logfile and Verbosity properties can override the behavior of ODBC core.
      • FILE: The native wrapper logs into <FILENAME> while the odbc core logs into <FILENAME>.driver.log. The Logfile and Verbosity properties can override the behavior of ODBC core.
    • TAG
      • For STDOUT, set this to 1. For FILE, set this to the filename.
    • LEVEL
      • Set to one of: FATAL | ERROR | WARNING | INFO | DEBUG

The following are some examples of this syntax:

  • STDOUT://1|DEBUG
  • FILE:///tmp/my_py.log|DEBUG

Custom Logger

The Python connector supports a custom logging mechanism for redirecting log output to any destination, such as a cloud storage service or logging framework. Use setCustomLoggerFactory() to register a factory function that creates a logger instance for each connection.

The factory function receives the context string from the Logfile connection property (the portion after CUSTOM://) and must return an object with a writeLog(verbosity, message) method.

To enable custom logging:

  1. Call setCustomLoggerFactory() with your factory function before opening connections.
  2. Set Logfile to CUSTOM:// followed by a context string to identify the connection.
  3. Set Verbosity to the desired log level.

The following example demonstrates a custom logger factory that creates a separate logger instance per connection:

import cdata.marketo as mod
import time

class MyLogger:
    def __init__(self, loggerId):
        self.loggerId = loggerId
    def writeLog(self, verbosity, message):
        print("[MyLogger " + self.loggerId + "] " + message)

def createLogger(context):
    return MyLogger(context[len("MyLoggerId="):])

mod.setCustomLoggerFactory(createLogger)

conn1 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=1;Verbosity=2;")
# do something with conn1
time.sleep(1)  # Wait for logs to flush from conn1

conn2 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=2;Verbosity=2;")
# do something with conn2
time.sleep(1)  # Wait for logs to flush from conn2

CData Python Connector for Marketo

Creating a Custom Service

Creating a Custom Service

A Custom Service is required to obtain OAuth credentials.

This procedure involves creating a new role with REST API privileges, assigning that role to an existing or new user, and then creating a new service. Note that only users with Admin privileges can create a Custom Service and that the term "service" refers to the entity created to provide OAuth credentials for API access.

Step 1: Create a New Role for API Access

  1. Navigate to the Marketo application's Admin area.
  2. Navigate to the Security section.
  3. Click Users & Roles.
  4. Select the Roles tab.
  5. Click New Role.
  6. Specify a Role Name and select Role permissions. Specify Access API permissions that are specific to the REST API.

Step 2: Assign or Create a New User for API Access

  1. Select the Users tab.
  2. To assign the role to a user, click Invite New User.
  3. Enter the new user information and assign them the role you just created with REST API access.
  4. To denote the user as an API Only user, select the API Only option.

Step 3: Create the New Service

  1. Navigate to Admin > Integration and click the LaunchPoint option.
  2. Click New Service.
  3. Specify the Service Type as Custom.
  4. Enter a display name and description for the service.
  5. Assign the user you just created to the service.

Marketo creates a new REST API service designed for connecting and authenticating to Marketo. This also generates the OAuth-based authentication credentials required for validating user access to the REST API. After creating the Custom Service, refer back to the Obtaining OAuth Credentials section to retrieve the OAuth Client ID and Client Secret needed for authentication.

CData Python Connector for Marketo

Changelog

General Changes

DateVersionSourceCategoryTypeDescription
2026-05-2726.0.9643GeneralConnectionRemoved
  • Removed the deprecated ReplaceInvalidTypesWithNull connection property. Use the ReplaceInvalidValuesWithNull property instead.
2026-05-2226.0.9638PythonRemoved
  • Remove support for Intel x64 architecture on macOS
2026-05-0726.0.9623GeneralData ModelAdded
  • Added the ColumnCapabilities column to the sys_tablecolumns system table. This column is a bit mask denoting the column's write capabilities.
2026-05-0726.0.9623PythonChanged
  • Updated embedded JRE to jre-17.0.19+10 (Linux x64 / MacOs x64).
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-03-0525.0.9560MarketoConnectionAdded
  • Added the BulkQueryTimeout connection property, which specifies the maximum time (in minutes) the provider waits for a bulk query response before timing out. Bulk query timeouts were previously managed by the Timeout property. Existing Timeout configurations no longer affect bulk queries.
2026-01-1325.0.9509GeneralAdded
  • Added support for the REGEXP_REPLACE() string function.
2025-12-2125.0.9486PythonAdded
  • Added support for custom loggers in Python connectors on Linux and macOS.
2025-12-0525.0.9470GeneralAdded
  • Added support for the INSERT INTO SELECT statement, with driver-side execution for providers that do not support the operation natively.
2025-10-3025.0.9434PythonChanged
  • Updated embedded JRE to jre-17.0.17+10 (Linux x64 / MacOs x64).
2025-10-0625.0.9410GeneralAdded
  • Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
2025-09-1225.0.9386GeneralAdded
  • Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
2025-09-1025.0.9384GeneralChanged
  • All columns in statically defined Views are now reported as read-only.
2025-09-0325.0.9377GeneralChanged
  • Corrected the behavior when IN criteria with NULL values are used in the projection part. It now returns NULL instead of 0. For example, "NULL IN (1,2)" returns "NULL".
2025-09-0125.0.9375GeneralAdded
  • Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
2025-08-2125.0.9364GeneralChanged
  • Report behavior change:
    • Fixed inconsistent string value comparisons in non-table queries.
    • For example, "SELECT 'A' = 'a'" previously returned false, but it now returns true.
2025-08-1325.0.9356GeneralChanged
  • Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
2025-07-2825.0.9340MarketoAdded
  • Added the LeadChangeDateTime pseudocolumn to replace filtering on UpdatedAt. LeadChangeDateTime is now marked as an incremental time check column.
2025-07-0725.0.9319PythonRemoved
  • Removed the 32-bit version of Windows Python.
2025-07-0225.0.9314PythonRemoved
  • Removed support for Python 3.9.
2025-06-2525.0.9307GeneralRemoved
  • Removed the "ADLS Gen 1" value from the ConnectionType property.
2025-06-2525.0.9307PythonAdded
  • Added support for Python 3.13 in Windows, Linux, and Mac editions.
2025-06-2525.0.9307PythonRemoved
  • Removed support for Python 3.8 as it is no longer supported.
2025-06-2025.0.9302GeneralAdded
  • Created the following functions:
    • TEXT_ENCODE: encodes a string into a different charset (UTF8 → UTF7 and returns a binary array as the result).
    • TEXT_DECODE: takes a binary array and decodes it back into a string when provided the charset.
    • BASE64_ENCODE: takes a binary array and encodes it as a base64 string (varchar).
    • BASE64_DECODE: takes a base 64-encoded string and decodes it into a binary array.
2025-06-1825.0.9300GeneralChanged
  • The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-05-1225.0.9263PythonChanged
  • Updated embedded JRE to jre-17.0.15+6 (Linux x64 / MacOS x64) and jre-17.0.15+6 (MacOS aarch64).
2025-02-1524.0.9177GeneralAdded
  • Added support for converting unsigned integer types to the nearest signed data type that has enough precision to hold the unsigned value.This is done for JDBC only because it does not have support for unsigned data types.
2024-12-1124.0.9111MarketoChanged
  • The 2024 version of the Marketo driver was completely re-designed inorder to continue providing optimal coverage of Marketo entities. A number of tables, views, and columns have been renamed or re-organized to conform to CData standards while providing support for CData's normal feature set. Upgrading to CData's 2024 Marketo driver from prior versions is likely to cause breaking changes, and testing this upgrade with a non-production environment is recommended. Please contact CData's Support team for a full list of changes.

CData Python Connector for Marketo

Using the Connector

This section provides a walk-through for writing Marketo data access code in Python script.

For more information on the available data source entities and how to query them with SQL, see Data Model. For the SQL syntax, see SQL Compliance.

Connecting from Code

For information on how to deploy the connector and configure the connection to Marketo, see Package Installation and Establishing a Connection.

For information on how to connect with the marketo.connector module and its related classes, see Connecting.

Executing SQL

The connection's cursor object is used to directly execute SQL queries. For information on how to execute SELECT statements and process the returned result sets, see Querying Data. For information on to modify the data in Marketo with INSERT, UPDATE, and DELETE statements, see Modifying Data .

Executing Stored Procedures

You can call stored procedures by using the EXECUTE statement. For further information, see Calling Stored Procedures.

Batch Processing

For information about how to modify several rows of Marketo data at once using parameterized INSERT, UPDATE, and DELETE statements, see Batch Processing.

CData Python Connector for Marketo

Connecting

Connecting with the cdata.marketo Module:

The connector's module is used directly to establish a connection with the data source. It does this by using a connection string as its argument. For example:
import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

Once the connection is created, you can use it to execute subsequent SQL queries.

CData Python Connector for Marketo

Querying Data

After connecting as described in Connecting, you can use the open connection to execute SQL statements.

Executing Queries

To execute SQL statements that return data, use the execute() method. Once a query is executed, the result set is fetched from the cursor. This result set can then be iterated over to process the records individually.

For example:

cur = conn.execute("SELECT Id, Email FROM Leads")
rs = cur.fetchall()
for row in rs:
	print(row)

Parameterized Queries

Various Python collections, such as arrays and tuples, can act as additional arguments for the execute() method. This enables you to parameterize the queries executed and help to prevent SQL Injection.

For example:

cmd = "SELECT Id, Email FROM Leads WHERE Email = ?"
params = ["sample@email.com"]
cur = conn.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Marketo

Modifying Data

The connection is also used to issue INSERT, UPDATE, and DELETE commands to the data source. Parameters can be used with these statements if desired.

Note that the connector does not support transactions. As with normal write operations, all SQL statements executed by this connector affect the data source immediately. Call the connection's commit() method following the execution.

Insert

The following example adds a new record to the table:
cmd = "INSERT INTO Leads (Id, Email) VALUES (?, ?)"
params = ["Jon Doe", "John"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies an existing record in the table:
cmd = "UPDATE Leads SET Email = ? WHERE Id = ?"
params = ["John", "c2ef66a5-a545-413b-9312-79a53caadbc4"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes an existing record from the table:

cmd = "DELETE FROM Leads WHERE Id = ?"
params = ["c2ef66a5-a545-413b-9312-79a53caadbc4"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

CData Python Connector for Marketo

Calling Stored Procedures

You can execute stored procedures using either the execute() or callproc() method of the connection.

Calling Stored Procedures Using Execute()

When you call stored procedures by issuing EXECUTE commands, the stored procedure arguments are parameterized. For example:
cmd = "EXECUTE GetEmailFullContent Id = ?"
params = ["23685"]
conn.execute(cmd, params)

Calling Stored Procedures Using Callproc()

When you call stored procedured by issuing the callproc() method, the stored procedure arguments are a procedure name and a list of parameters. For example:
cur = conn.cursor()
params = ["23685"]
cur.callproc("GetEmailFullContent", params)

CData Python Connector for Marketo

Batch Processing

This Python connector also supports writing to the data source via batch processing, using the cursor object's executemany() method. This requires both a SQL statement string and a data frame of values that act as a series of parameters for executing the SQL statement.

Note that the connector does not support transactions. As with normal write operations, all SQL statements executed by this connector affect the data source immediately. Call the connection's commit() method following the execution.

Insert

The following example adds new records to the table:
cur = conn.cursor()
cmd = "INSERT INTO Leads (Id, Email) VALUES (?, ?)"
params = [["Jon Doe", "John"], ["Jon Doe", "John"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies existing records in the table:
cur = conn.cursor()
cmd = "UPDATE Leads SET Email = ? WHERE Id = ?"
params = [["John", "c2ef66a5-a545-413b-9312-79a53caadbc4"], ["John", "c2ef66a5-a545-413b-9312-79a53caadbc4"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes existing records from the table:
cur = conn.cursor()
cmd = "DELETE FROM Leads WHERE Id = ?"
params = [["c2ef66a5-a545-413b-9312-79a53caadbc4"], ["c2ef66a5-a545-413b-9312-79a53caadbc4"]]
cur.executemany(cmd, params)
print("Records affected: ", cur.rowcount)

CData Python Connector for Marketo

Using from Tools

The connector is integrated with other tools and packages within Python.

Python Integration Guides

The following sections show how to create and use connections with the connector in common packages in Python:

Complete List of Marketo Integration Quickstarts

For information on connecting from other applications, see Marketo integration guides.

CData Python Connector for Marketo

From SQLAlchemy

The CData Python Connector for Marketo includes a Dialect class that enables integration with SQLAlchemy. Bear in mind that several aspects of connector functionality are not currently supported in SQLAlchemy 2.0 or above. If necessary, downgrade SQLAlchemy to version 1.4 or 1.3 before using this connector.

The following sections detail various aspects of this integration:

Connecting From SQLAlchemy

To construct a URL with which SQLAlchemy loads and uses the appropriate connector automatically, see Connecting

Reflecting Metadata With SQLAlchemy

To learn how to model Marketo tables with mapped classes, see Reflecting Metadata.

Querying Data From SQLAlchemy

To learn how to use mapped classes to query the associated tables, see Querying Data.

Modifying Data From SQLAlchemy

The connector provides INSERT/UPDATE/DELETE functionality in SQLAlchemy. To learn how to call the session's execute() method to affect the data in the data source, see Modifying Data.

CData Python Connector for Marketo

Connecting

Connecting With a Dialect URL

Establishing a connection using SQLAlchemy requires a specific URL format.
from sqlalchemy import create_engine
engine = create_engine("marketo:///?URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

For SQLAlchemy 2.0, the dialect name is marketo_2. To establish a connection, use the following URL format:

from sqlalchemy import create_engine
engine = create_engine("marketo_2:///?URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

CData Python Connector for Marketo

Reflecting Metadata

SQLAlchemy can act as an Object-relational Map (ORM). This enables you to treat records of a database table as instantiable records. To leverage this functionality, you must reflect the underlying metadata in one of the following ways.

Note: The following examples employ SQLAlchemy 1.4.

Modeling Data Using a Mapping Class

Use "sqlalchemy.ext.declarative.declarative_base" to declare a mapping class for the table you wish to model in the ORM. A known table in the data model is modeled either partially or completely, as shown in the following example:
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class Leads(Base):
	__tablename__ = "Leads"
	Id = Column(String, primary_key=True)
	Id = Column(String)
	Email = Column(String)

Automatically Reflecting Metadata

Rather than mapping tables manually, SQLAlchemy can discover the metadata for one or more tables automatically. To accomplish this across the entire data model, use automap_base:
from sqlalchemy import MetaData
from sqlalchemy.ext.automap import automap_base
meta = MetaData()
abase = automap_base(metadata=meta)
abase.prepare(autoload_with=engine)
Leads = abase.classes.Leads

You can also reflect a single table with an inspector. When reflecting this way, providing a list of specific columns to map is optional:

from sqlalchemy import MetaData, Table
from sqlalchemy import inspect
meta = MetaData()
insp = inspect(engine)
Leads_table = Table("Leads", meta)
insp.reflect_table(Leads_table, ["Id","Email"])

CData Python Connector for Marketo

Querying Data

After you use the steps in Connecting to connect, and use one of the methods in Reflecting Metadata to reflect some of the metadata, you can use a session object to query data.

Querying Data Using the Query Method

If the mapping class has been prepared, use it with a session object to query the data source. After binding the engine to the session, provide the mapping class to the session's query method.

For example:

engine = create_engine("marketo:///?URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
factory = sessionmaker(bind=engine)
session = factory()
for instance in session.query(Leads).filter_by(Email="sample@email.com"):
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("Email: ", instance.Email)
	print("---------")

Querying Data Using the Execute Method

The session object can also run the query with the execute() method alongside the appropriate Table object. Assuming you have an active session, the following is just as viable:
Leads_table = Leads.metadata.tables["Leads"]
for instance in session.execute(Leads_table.select().where(Leads_table.c.Email == "sample@email.com")):
	print("Id: ", instance.Id)
	print("FullName: ", instance.Name)
	print("City: ", instance.BillingCity)
	print("---------")

CData Python Connector for Marketo

Executing JOINs

Implicit Joining

If mapped classes of related Marketo objects have a singular foreign key relationship, the classes are implicitly joined. After importing the necessary objects, a relationship is established between your two mapped classes, as in the example below:
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, String, Integer, DateTime, ForeignKey
from sqlalchemy.orm import sessionmaker, relationship

Base = declarative_base()
class Contact(Base):
	__tablename__ = "Contact"
	Id = Column(Integer, primary_key=True)
	Name = Column(String)
	Email = Column(String)
	BirthDate = Column(DateTime)
	AccountId = Column(String, ForeignKey("Account.Id"))
	Account_Link = relationship("Account", back_populates="Contact_Link")

class Account(Base):
	__tablename__ = "Account"
	Id = Column(String, primary_key=True)
	Name = Column(String)
	BillingCity = Column(String)
	NumberOfEmployees = Column(Integer)
	Contact_Link = relationship("Contact", order_by=Contact.Id, back_populates="Account_Link")

Once the relationship is established, the tables are queried simultaneously using the session's query() method. For example:

rs = session.query(Account, Contact).filter(Account.Id == Contact.AccountId)
for Ac, Ct in rs:
  print("AccountId: ", Ac.Id)
  print("AccountName: ", Ac.Name)
  print("ContactId: ", Ct.Id)
  print("ContactName: ", Ct.Name)

Other Join Forms

In situations where mapped classes have either no foreign keys or multiple foreign keys, you may need different forms of the JOIN query to accommodate them. Using the earlier classes as examples, the following JOIN queries are possible as well:
  • Explicit condition (necessary if there are no foreign keys in your mapped classes):
    rs = session.query(Account, Contact).join(Contact, Account.Id == Contact.AccountId)
    for Ac, Ct in rs:
  • Left-to-right relationship:
    rs = session.query(Account, Contact).join(Account.Contact_Link)
    for Ac, Ct in rs:
  • Left-to-right relationship with explicit target:
    rs = session.query(Account, Contact).join(Contact, Account.Contact_Link)
    for Ac, Ct in rs:
  • String form of a left-to-right relationship:
    rs = session.query(Account, Contact).join("Contact_Link")
    for Ac, Ct in rs:

CData Python Connector for Marketo

Other SQL Clauses

SQLAlchemy ORM also exposes support for other clauses in SQL, such as ORDER BY, GROUP BY, LIMIT, and OFFSET. All of these are supported by this connector:

ORDER BY

The following example sorts by a specified column using the session object's query() method:
rs = session.query(Leads).order_by(Leads.AnnualRevenue)
for instance in rs:
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("Email: ", instance.Email)
	print("---------")

You can also use the session object's execute() method perform an ORDER BY. For example:

rs = session.execute(Leads_table.select().order_by(Leads_table.c.AnnualRevenue))
for instance in rs:

GROUP BY

The following example uses the session object's query() method to group records with a specified column:
rs = session.query(func.count(Leads.Id).label("CustomCount"), Leads.Id).group_by(Leads.Id)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to perform a GROUP BY:

rs = session.execute(Leads_table.select().with_only_columns([func.count(Leads_table.c.Id).label("CustomCount"), Leads_table.c.Id]).group_by(Leads_table.c.Id))
for instance in rs:

LIMIT and OFFSET

The following example uses the session object's query() method to skip the first 100 records and fetch the following 25:
rs = session.query(Leads).limit(25).offset(100)
for instance in rs:
	print("Id: ", instance.Id)
	print("Id: ", instance.Id)
	print("Email: ", instance.Email)
	print("---------")

You can also use the session object's execute() method to set a LIMIT or OFFSET:

rs = session.execute(Leads_table.select().limit(25).offset(100))
for instance in rs:

CData Python Connector for Marketo

Aggregate Functions

Certain aggregate functions can also be used within SQLAlchemy by using the func module.

To import this module, execute:

from sqlalchemy.sql import func

Once func is imported, the following aggregate functions are available:

COUNT

The following example counts the number of records in a set of groups using the session object's query() method.
rs = session.query(func.count(Leads.Id).label("CustomCount"), Leads.Id).group_by(Leads.Id)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("Id: ", instance.Id)
	print("---------")

You can also execute COUNT using the session object's execute() method:

rs = session.execute(Leads_table.select().with_only_columns([func.count(Leads_table.c.Id).label("CustomCount"), Leads_table.c.Id])group_by(Leads_table.c.Id))
for instance in rs:

SUM

This example calculates the cumulative amount of a numeric column in a set of groups.

rs = session.query(func.sum(Leads.AnnualRevenue).label("CustomSum"), Leads.Id).group_by(Leads.Id)
for instance in rs:
	print("Sum: ", instance.CustomSum)
	print("Id: ", instance.Id)
	print("---------")

You can also invoke SUM using the session object's execute() method.

rs = session.execute(Leads_table.select().with_only_columns([func.sum(Leads_table.c.AnnualRevenue).label("CustomSum"), Leads_table.c.Id]).group_by(Leads_table.c.Id))
for instance in rs:

AVG

This example uses the session object's query() method to calculate the average amount of a numeric column in a set of groups:
rs = session.query(func.avg(Leads.AnnualRevenue).label("CustomAvg"), Leads.Id).group_by(Leads.Id)
for instance in rs:
	print("Avg: ", instance.CustomAvg)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to invoke AVG:

rs = session.execute(Leads_table.select().with_only_columns([func.avg(Leads_table.c.AnnualRevenue).label("CustomAvg"), Leads_table.c.Id]).group_by(Leads_table.c.Id))
for instance in rs:

MAX and MIN

This example finds the maximum value and minimum value of a numeric column in a set of groups.
rs = session.query(func.max(Leads.AnnualRevenue).label("CustomMax"), func.min(Leads.AnnualRevenue).label("CustomMin"), Leads.Id).group_by(Leads.Id)
for instance in rs:
	print("Max: ", instance.CustomMax)
	print("Min: ", instance.CustomMin)
	print("Id: ", instance.Id)
	print("---------")

You can also use the session object's execute() method to invoke MAX and MIN:

rs = session.execute(Leads_table.select().with_only_columns([func.max(Leads_table.c.AnnualRevenue).label("CustomMax"), func.min(Leads_table.c.AnnualRevenue).label("CustomMin"), Leads_table.c.Id]).group_by(Leads_table.c.Id))
for instance in rs:

CData Python Connector for Marketo

Modifying Data

Commands can be executed individually by the session with a call to "execute()".

Obtaining the Table Object

The query supplied to this method is constructed using the associated Table object of a mapped class. This Table object is obtained from the mapped class's metadata field, as below:

Leads_table = Leads.metadata.tables["Leads"]

Once the table object is obtained, the write operations are executed in the following ways. The queries are executed immediately without the need for a call to "commit()":

Insert

The following example adds a new record to the table:

session.execute(Leads_table.insert(), {"Id": "Jon Doe", "Email": "John"})

Update

The following example modifies an existing record in the table:

session.execute(Leads_table.update().where(Leads_table.c.Id == "c2ef66a5-a545-413b-9312-79a53caadbc4").values(Id="Jon Doe", Email="John"))

Delete

The following example removes an existing record from the table:

session.execute(Leads_table.delete().where(Leads_table.c.Id == "c2ef66a5-a545-413b-9312-79a53caadbc4"))

CData Python Connector for Marketo

From Pandas

When combined with the connector, Pandas can be used to generate data frames that contain your Marketo data. Once created, a data frame can be passed to various other Python packages.

Connecting

Pandas relies on an SQLAlchemy engine to execute queries. Before you can use Pandas you must import it:
import pandas as pd
from sqlalchemy import create_engine
engine = create_engine("marketo:///?URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

Querying Data

In Pandas, SELECT queries are provided in a call to the read_sql() method, alongside a relevant connection object. Pandas executes the query on that connection, and returns the results in the form of a data frame, which can be used for a variety of purposes.
df = pd.read_sql("""
	SELECT
	   Id,
	   Email,
     $exNumericCol;
	FROM Leads;""", engine)
print(df)

Modifying Data

To insert new records into a table, create a new data frame, and define its fields accordingly. When that is done, call to_sql() on the data frame to perform the INSERT operation with the connector, as shown in the example below. You must set the "if _exists" argument to "append" to prevent Pandas from attempting building the table from scratch. To prevent Pandas from writing the data frame index as a column, set index=False.
df = pd.DataFrame({"Id": ["Jon Doe"], "Email": ["John"]})
df.to_sql("Leads", con=engine, if_exists="append", index=False)

CData Python Connector for Marketo

From Matplotlib

Matplotlib contains a number of tools that can graphically model Marketo data after being fed a data frame From Pandas.

Using PyPlot

Before any Matplotlib tool, such as pyplot, can be used, it must be imported:
from matplotlib import pyplot as plt

Once a Pandas data frame is obtained, it can be used to create a plot visualizing Marketo data. For example, the following plot generates and displays a bar graph relating Id and AnnualRevenue values:

df.plot(kind="bar", x="Id", y=["AnnualRevenue"])
plt.show()

CData Python Connector for Marketo

From Petl

The connector can be used to create ETL applications and pipelines for CSV data in Python using Petl.

Install Required Modules

Install the Petl modules using the pip utility.
pip install petl

Connecting

After you import the modules, including the CData Python Connector for Marketo, you can use the connector's connect function to create a connection using a valid Marketo connection string. If you prefer not to use a direct connection, you can use a SQLAlchemy engine.
import petl as etl
import cdata.marketo as mod
cnxn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")

Extract, Transform, and Load the Marketo Data

Create a SQL query string and store the query results in a DataFrame.
sql = "SELECT	Id, Email FROM Leads "
table1 = etl.fromdb(cnxn,sql)

Loading Data

With the query results stored in a DataFrame, you can load your data into any supported Petl destination. The following example loads the data into a CSV file.
etl.tocsv(table1,'output.csv')

Modifying Data

Insert new rows into Marketo tables using Petl's appenddb function.
table1 = [['Id','Email'],['Jon Doe','John']]
etl.appenddb(table1,cnxn,'Leads')

CData Python Connector for Marketo

Schema Discovery

The extension supports schema discovery by using SQL queries to available System Tables.

Using SQL

The following sections describe the discovery of metadata through several System Tables:

CData Python Connector for Marketo

Tables and Views

The connector possesses system tables that are used to discover the tables and views available in the data model. Of these system tables, "sys_tables" and "sys_views" are used to fetch information about the available tables and views respectively:

Tables


import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tables"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Views


import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_views"
cur.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Marketo

Columns

The available columns for any given table are fetched from a system table called "sys_tablecolumns". A specific table name is provided in the WHERE criteria to restrict the table from which the column information is fetched:

import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tablecolumns WHERE TableName = 'Leads'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Marketo

Procedures

Procedures

A system table called "sys_procedures" is queried to obtain the available stored procedures that are executed:
import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedures"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Parameters

The input parameters of any stored procedure are similarly obtained from the "sys_procedureparameters" system table:
import cdata.marketo as mod
conn = mod.connect("URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'GetEmailFullContent'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Marketo

Advanced Features

This section details a selection of advanced features of the Marketo connector.

User Defined Views

The connector supports the use of user defined views, virtual tables whose contents are decided by a pre-configured user defined query. These views are useful when you cannot directly control queries being issued to the drivers. For an overview of creating and configuring custom views, see User Defined Views .

SSL Configuration

Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats;. For further information, see the SSLServerCert property under "Connection String Options" .

Firewall and Proxy

Configure the connector for compliance with Firewall and Proxy, including Windows proxies and HTTP proxies. You can also set up tunnel connections.

Caching Data

Caching Data enables faster access to data and reduces the number of API calls, improving performance. The connector supports a simple caching model where multiple connections can also share the cache over time. When configuring the cache connection, you can specify automatic or explicit data caching.

Query Processing

The connector offloads as much of the SELECT statement processing as possible to Marketo and then processes the rest of the query in memory (client-side).

For further information, see Query Processing.

Logging

For an overview of configuration settings that can be used to refine CData logging, see Logging. Only two connection properties are required for basic logging, but there are numerous features that support more refined logging, which enables you to use the LogModules connection property to specify subsets of information to be logged.

Exception Handling

For an overview of how exceptions are reported and the components of an exception, see Exception Handling.

CData Python Connector for Marketo

User Defined Views

The CData Python Connector for Marketo supports the use of user defined views: user-defined virtual tables whose contents are decided by a preconfigured query. User defined views are useful in situations where you cannot directly control the query being issued to the driver; for example, when using the driver from a tool.

Use a user defined view to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.

There are two ways to create user defined views:

  • Create a JSON-formatted configuration file defining the views you want.
  • DDL statements.

Defining Views Using a Configuration File

User defined views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This user defined view configuration file is formatted so that each root element defines the name of a view, and includes a child element, called query, which contains the custom SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM Leads WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}
Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\\Users\\yourusername\\Desktop\\tmp\\UserDefinedViews.json"

Defining Views Using DDL Statements

The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.

Create a View

To create a new view using DDL statements, provide the view name and query as follows:

CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;

If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews connection property.

Alter a View

To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:

ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';

The view is then updated in the JSON configuration file.

Drop a View

To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.

DROP LOCAL VIEW [MyViewName]

This removes the view from the JSON configuration file. It can no longer be queried.

Schema for User Defined Views

In order to avoid a view's name clashing with an actual entity in the data model, user defined views are exposed in the UserViews schema by default. To change the name of the schema used for UserViews, reset the UserViewsSchemaName property.

Working with User Defined Views

For example, a SQL statement with a user defined view called UserViews.RCustomers only lists customers in Raleigh:
SELECT * FROM Customers WHERE City = 'Raleigh';
An example of a query to the driver:
SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';
Resulting in the effective query to the source:
SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';
That is a very simple example of a query to a user defined view that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.

CData Python Connector for Marketo

SSL Configuration

Customizing the SSL Configuration

By default, the connector 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 Python Connector for Marketo

Firewall and Proxy

Connecting Through a Firewall or Proxy

HTTP Proxies

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to connect to other proxies, set ProxyAutoDetect to False and read further.

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 connector 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:

CData Python Connector for Marketo

Caching Data

Caching Data

Caching data provides several benefits, including faster access to data and reducing the number of API calls, which improve performance. The connector supports a simple caching model where multiple connections can also share the cache over time. You can enable and configure caching features by setting the necessary connection properties.

Contents

The sections in this chapter detail the connector's caching functionality and link to the corresponding connection properties, as well as SQL statements.

Configuring the Cache Connection

Configuring the Cache Connection describes the properties that you can set when configuring the cache database.

Caching Metadata

Caching Metadata describes the CacheMetadata property. This property determines whether or not to cache the table metadata to a file store.

Automatically Caching Data

Automatically Caching Data describes how the connector automatically refreshes the cache when the AutoCache property is set.

Explicitly Caching Data

Explicitly Caching Data describes how you can decide what data is stored in the cache and when it is updated.

Data Type Mapping

Data Type Mapping shows the mappings between the data types configured in the schema and the data types in the database.

CData Python Connector for Marketo

Configuring the Cache Connection

Configuring the Caching Database

This section describes the properties for caching data to the persistent store of your choice.

CacheLocation

The CacheLocation property species the path to a file-system-based database. When caching is enabled, a file-system-based database is used by default. If CacheLocation is not specified, this database is stored at the path in Location. If neither of these connection properties are specified, the connector uses a platform-dependent default location.

CacheConnection

The CacheConnection property specifies a database driver and the connection string to the caching database.

CacheDriver and CacheProvider

Both the CacheDriver and CacheProvider properties are supported. Each specifies a database driver and the connection string to the caching database. CacheDriver is designed for Linux and MacOS; CacheProvider is Windows-based.

CData Python Connector for Marketo

Automatically Caching Data

Automatically caching data is useful when you do not want to rebuild the cache for each query. When you query data for the first time, the connector automatically initializes and builds a cache in the background. When AutoCache = true, the connector uses the cache for subsequent query executions, resulting in faster response times.

Configuring Automatic Caching

Caching the Leads Table

The following example caches the Leads table in the file specified by the CacheLocation property of the connection string.

SELECT Id, Email FROM Leads WHERE Email = 'sample@email.com'

Common Use Case

A common use for automatically caching data is to improve driver performance when making repeated requests to a live data source, such as building a report or creating a visualization. With auto caching enabled, repeated requests to the same data may be executed in a short period of time, but within an allowable tolerance (CacheTolerance) of what is considered "live" data.

CData Python Connector for Marketo

Explicitly Caching Data

With explicit caching (AutoCache = false), you decide exactly what data is cached and when to query the cache instead of the live data. Explicit caching gives you full control over the cache contents by using CACHE Statements. This section describes some strategies to use the caching features offered by the connector.

Creating the Cache

To load data in the cache, issue the following statement.

CACHE SELECT * FROM tableName WHERE ...

Once the statement is issued, any matching data in tableName is loaded into the corresponding table.

Updating the Cache

This section describes two ways to update the cache.

Updating with the SELECT Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. However, this statement does not delete extra rows that are already in the cache. This statement only merges the new rows or updates the existing rows.

CACHE SELECT * FROM Leads WHERE Email = 'sample@email.com'

Updating with the TRUNCATE Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. This statement can also delete rows in the cache table that are not present in the live data source.

  CACHE WITH TRUNCATE SELECT * FROM Leads WHERE Email = 'sample@email.com'
  

Query the Data in Online or Offline Mode

This section describes how to query the data in online or offline mode.

Online: Select Cached Tables

You can use the tableName#CACHE syntax to explicitly execute queries to the cache while still online, as shown in the following example.

SELECT * FROM Leads#CACHE

Offline: Select Cached Tables

With Offline = true, SELECT statements always execute against the local cache database, regardless of whether you explicitly specify the cached table or not. Modification of the cache is disabled in Offline mode to prevent accidentally updating only the cached data. Executing a DELETE/UPDATE/INSERT statement while in Offline mode results in an exception.

The following example selects from the local cache but not the live data source because Offline = true.

SELECT * FROM Leads WHERE Email='sample@email.com' ORDER BY Email ASC

Delete Data from the Cache

You can delete data from the cache by building a direct connection to the database. Note that the connector does not support manually deleting data from the cache.

Common Use Case

A common use for caching is to have an application always query the cached data and only update the cache at set intervals, such as once every day or every two hours. There are two ways in which this can be implemented:

  • AutoCache = false and Offline = false. All queries issued by the application explicitly reference the tableName#CACHE table. When the cache needs to be updated, the application executes a tableName#CACHE ... statement to bring the cached data up to date.
  • Offline = true. Caching is transparent to the application. All queries are executed against the table as normal, so most application code does not need to be aware that caching is done. To update the cached data, simply create a separate connection with Offline = false and execute a tableName#CACHE ... statement.

CData Python Connector for Marketo

Data Type Mapping

The connector maps types from the data source to the corresponding data type available in the chosen cache database. The following table shows the mappings between the data types configured in the schema and the data types in the database. Some schema types have synonyms which are all listed in the Schema column.

Data Type Mapping

Note: String columns can map to different data types depending on their length.

Schema .NET JDBC SQL Server Derby MySQL Oracle SQLite Access
int, integer, int32 Int32 int int INTEGER INT NUMBER integer LONG
smallint, short, int16 Int16 short smallint SMALLINT SMALLINT NUMBER integer SHORT
double, float, real Double double float DOUBLE DOUBLE NUMBER double DOUBLE
date DateTime java.sql.Date date DATE DATE DATE date DATETIME
datetime, timestamp DateTime java.sql.Date datetime TIMESTAMP DATETIME TIMESTAMP datetime DATETIME
time, timespan TimeSpan java.sql.Time time TIME TIME TIMESTAMP datetime DATETIME
string, varchar String java.lang.String If length > 4000: nvarchar(max), Otherwise: nvarchar(length)If length > 32672: LONG VARCHAR, Otherwise VARCHAR(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)If length > 4000: CLOB, Otherwise: VARCHAR2(length)nvarchar(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)
long, int64, bigint Int64 long bigint BIGINT BIGINT NUMBER bigint LONG
boolean, bool Boolean boolean tinyint SMALLINT BIT NUMBER tinyint BIT
decimal, numeric Decimal java.math.BigDecimal decimal DECIMAL DECIMAL DECIMAL decimal CURRENCY
uuid Guid java.util.UUID nvarchar(length) VARCHAR(length)VARCHAR(length) VARCHAR2(length)nvarchar(length) VARCHAR(length)
binary, varbinary, longvarbinary byte[] byte[] binary(1000) or varbinary(max) after SQL Server 2000, image otherwise BLOB LONGBLOB BLOB BLOB LONGBINARY

CData Python Connector for Marketo

Query Processing

Query Processing

CData has a client-side SQL engine built into the connector library. This enables support for the full capabilities that SQL-92 offers, including filters, aggregations, functions, etc.

For sources that do not support SQL-92, the connector offloads as much of SQL statement processing as possible to Marketo and then processes the rest of the query in memory (client-side). This results in optimal performance.

For data sources with limited query capabilities, the connector handles transformations of the SQL query to make it simpler for the connector. The goal is to make smart decisions based on the query capabilities of the data source to push down as much of the computation as possible. The Marketo Query Evaluation component examines SQL queries and returns information indicating what parts of the query the connector is not capable of executing natively.

The Marketo Query Slicer component is used in more specific cases to separate a single query into multiple independent queries. The client-side Query Engine makes decisions about simplifying queries, breaking queries into multiple queries, and pushing down or computing aggregations on the client-side while minimizing the size of the result set.

There's a significant trade-off in evaluating queries, even partially, client-side. There are always queries that are impossible to execute efficiently in this model, and some can be particularly expensive to compute in this manner. CData always pushes down as much of the query as is feasible for the data source to generate the most efficient query possible and provide the most flexible query capabilities.

More Information

For a full discussion of how CData handles query processing, see CData Architecture: Query Execution.

CData Python Connector for Marketo

Logging

Logging

Capturing connector logging can be very helpful when diagnosing error messages or other unexpected behavior.

Basic Logging

To begin capturing connector logging, set these properties:

  • Logfile: A filepath that designates the name and location of the log file.
  • Verbosity: A numerical value (1-5) that determines the amount of detail in the log. See the page in the Connection Properties section for an explanation of the five levels.
  • MaxLogFileSize: When the limit is hit, a new log is created in the same folder with the date and time appended to the end. The default limit is 100 MB. Values lower than 100 kB will use 100 kB as the value instead.
  • MaxLogFileCount: A string specifying the maximum file count of log files. When the limit is hit, a new log is created in the same folder with the date and time appended to the end and the oldest log file will be deleted. Minimum supported value is 2. A value of 0 or a negative value indicates no limit on the count.

Once these properties are set, the connector populates the log file as it carries out various tasks, such as when authentication is performed or queries are executed. If the specified file doesn't already exist, it is created.

Log Verbosity

The verbosity level determines the amount of detail that the connector reports to the Logfile. Supported Verbosity levels range from 1 to 5.

The following list describes each level:

1Setting Verbosity to 1 logs the query, the number of rows returned by it, the start of execution and the time taken, and any errors.
2Setting Verbosity to 2 logs everything included in Verbosity 1, cache queries, and additional information about the request.
3Setting Verbosity to 3 also logs HTTP headers, as well as the body of the request and the response.
4Setting Verbosity to 4 also logs transport-level communication with the data source. This includes SSL negotiation.
5Setting Verbosity to 5 also logs communication with the data source and additional details that may be helpful in troubleshooting problems. This includes interface commands.

For normal operations, Verbosity should not be set to greater than 1. At higher verbosities you can log substantial amounts of data, which can delay execution times.

To refine the logged content further by showing/hiding specific categories of information, see LogModules.

Sensitive Data

Verbosity levels of 3 and higher may capture information that you do not want shared outside of your organization. The following lists information of concern for each level:

  • Verbosity 3: The full body of the request and the response, which includes all the data returned by the connector
  • Verbosity 4: SSL certificates
  • Verbosity 5: Any extra transfer data not included at Verbosity 3, such as non human-readable binary transfer data

Note: Although we mask sensitive values, such as passwords, in the connection string and any request in the log, it is always best practice to review the logs for any sensitive information before sharing outside your organization.

Advanced Logging

You may want to refine the exact information that is recorded to the log file. This can be accomplished using the LogModules property. This property allows you to filter the logging using a semicolon-separated list of logging modules.

Example property value:

LogModules=INFO;EXEC;SSL;SQL;META;

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Marketo

Exception Handling

Exception Handling

Exceptions can be surfaced from either the API or the CData Python Connector for Marketo. Each exception will have an error code, an error message, and a SQL state.

Error Codes

The error code classifies the type of error.

0 NONE Used for unclassified errors and internally handled errors. This code also covers data source-specific errors that do not fit in any specific category.
65537 TCP_UNKNOWN_HOST Unable to resolve a hostname (DNS failure).
65538 TCP_CONNECTION_REFUSED Could not connect to the remote port.
65539 TCP_AUTH_FAILED Login failed when using a binary authentication protocol. Use this for auth errors when the protocol is not HTTP (LDAP, SASL, Kerberos, ...).
65540 TCP_TIMEOUT Did not receive a response after sending a request to the server.
65541 TCP_PROTOCOL For wire protocol drivers. Either the server sent a bad packet that we are unable to process, or we cannot construct a packet to send.
131073 TLS_SERVER_UNTRUSTED Could not verify SSL server certificate.
131074 TLS_CLIENT_UNTRUSTED Server did not accept the client certificate we sent.
196609 OAUTH_DECRYPT_FAILED OAuthEncryptKey did not decrypt the OAuthSettings file.
196610 OAUTH_MISSING_CLIENT_INFO OAuthClientId / OAuthClientSecret / OAuthJWTCert is missing.
196611 OAUTH_MISSING_PROP General OAuth property missing. OAUTH_MISSING_CLIENT_INFO is used for missing client ID/secret and JWT cert.
196612 OAUTH_NO_ACCESS_TOKEN Unable to retrieve access token. Only use this when getting a token in GetOAuthAccessToken / RefreshOAuthAccessToken.
196613 OAUTH_TOKEN_EXPIRED The access token expired. Normally used with a RefreshOAuth/OAuthException behavior.
196614 OAUTH_INVALID_PROP OAuth property has an invalid value. OAUTH_MISSING_CLIENT_INFO / OAUTH_MISSING_PROP is used if the value is not set.
262145 HTTP_REQUEST_TIMEOUT Did not receive a response from the HTTP server.
262146 HTTP_CLIENT_ERROR Generic HTTP 4xx error. Only use for 4xx errors not covered by other codes.
262147 HTTP_AUTH_FAILED HTTP 401 error.
262148 HTTP_LIMIT_EXCEEDED HTTP 429 error.
262149 HTTP_SERVER_ERROR HTTP 5xx error.
262150 HTTP_NOT_FOUND_ERROR HTTP 404 error.
327681 CORE_TIMEOUT General timeout. Not related to a specific network request.
327682 CORE_OP_NOT_ALLOWED Operation blocked by provider permissions.
327683 CORE_CONNECTION_CONFIG Connection configuration is not valid.
327684 CORE_SERIALIZE Failed to encode data into a specific format (XML, JSON, CSV, ...).
327685 CORE_DESERIALIZE Failed to decode data from a specific format (XML, JSON, CSV, ...).
393217 SQL_SYNTAX_ERROR Unable to parse a SQL query.
393218 SQL_MISSING_COLUMNS Query did not include required columns.
393219 SQL_MISSING_PARAMS Stored procedure call did not include required parameters.
393220 SQL_QUERY_NOT_SUPPORTED A part of the query is not allowed in the current context.
458753 SSH_SERVER_UNTRUSTED Could not verify SSH server.
524289 STORAGE_LIST_EXCEPTION Issue listing storage resources.
524290 STORAGE_RESOURCE_NOT_FOUND Issue finding storage resources.
524291 STORAGE_ROOT_RESOURCE_NOT_FOUND The root resource (bucket/share/drive) was not found; cannot create it in flat file drivers.
524292 STORAGE_RESOURCE_NOT_A_DIRECTORY Storage resource is not a directory.
524293 STORAGE_RESOURCE_NOT_A_FILE Storage resource is not a file.
524294 STORAGE_PERMISSIONS_DENIED Storage permissions denied.

SQL State

The SQL state is used when throwing generic provider errors to the wrapper and indicates the success or failure of a call.

Some of the common SQL states are listed below:

07007 REQUIRED_CLAUSE Class Code 07: Dynamic SQL Error.
08001 OPEN_CONNECTION Class Code 08: Connection Exception. The connection was unable to be established to the application server or other server.
08004 REJECT_CONNECTION The application server rejected establishment of the connection.
42501 PRIVILEGE_IDENTIFIED_OBJECT Class Code 42: Syntax Error or Access Rule Violation. The authorization ID does not have the privilege to perform the specified operation on the identified object.
42506 AUTH_FAILED Owner authorization failure occurred.
42601 SQL_SYNTAX A character, token, or clause is invalid or missing.

Error Message

The error message provides more detailed reasoning about why the error occurred. It provides an explanation of the issue, and may include steps on how to resolve it.

CData Python Connector for Marketo

SQL Compliance

The CData Python Connector for Marketo supports several operations on data, including querying, deleting, modifying, and inserting.

SELECT Statements

See SELECT Statements for a syntax reference and examples.

See Data Model for information on the capabilities of the Marketo API.

INSERT Statements

See INSERT Statements for a syntax reference and examples.

UPDATE Statements

The primary key Id is required to update a record. See UPDATE Statements for a syntax reference and examples.

UPSERT Statements

An UPSERT updates a record if it exists and inserts the record if it does not. See UPSERT Statements for a syntax reference and examples.

DELETE Statements

The primary key Id is required to delete a record. See DELETE Statements for a syntax reference and examples.

GETDELETED Statements

GETDELETED statements return the Ids of deleted records. See GETDELETED Statements for a syntax reference and examples.

CACHE Statements

CACHE statements allow granular control over the connector's caching functionality. For a syntax reference and examples, see CACHE Statements.

For more information on the caching feature, see Caching Data.

EXECUTE Statements

Use EXECUTE or EXEC statements to execute stored procedures. See EXECUTE Statements for a syntax reference and examples.

Names and Quoting

  • Table and column names are considered identifier names; as such, they are restricted to the following characters: [A-Z, a-z, 0-9, _:@].
  • To use a table or column name with characters not listed above, the name must be quoted using square brackets ([name]) in any SQL statement.
  • Parameter names can optionally start with the @ symbol (e.g., @p1 or @CustomerName) and cannot be quoted.
  • Strings must be quoted using single quotes (e.g., 'John Doe').

CData Python Connector for Marketo

SQL Functions

The connector provides functions that are similar to those that are available with most standard databases. These functions are implemented in the CData provider engine and thus are available across all data sources with the same consistent API. Three categories of functions are available: string, date, and math.

The connector interprets all SQL function inputs as either strings or column identifiers, so you need to escape all literals as strings, with single quotes. For example, contrast the SQL Server syntax and connector syntax for the DATENAME function:

  • SQL Server:
    SELECT DATENAME(yy,GETDATE())
  • connector:
    SELECT DATENAME('yy',GETDATE())

String Functions

These functions perform string manipulations and return a string value. See STRING Functions for more details.

Date Functions

These functions perform date and date time manipulations. See DATE Functions for more details.

Math Functions

These functions provide mathematical operations. See MATH Functions for more details.

CData Python Connector for Marketo

STRING Functions

ASCII(character_expression)

Returns the ASCII code value of the left-most character of the character expression.

  • character_expression: The character expression.

                      SELECT ASCII('0');
                      --  Result: 48
                    

BASE64_ENCODE(input_binary)

Returns the Base64-encoded string form of a binary input.

  • input_binary: The binary value to encode.

                        SELECT BASE64_ENCODE(BinaryData);
                    -- Result: 'QmFzZTY0RW5jb2RlZA=='
                    

BASE64_DECODE(input_string)

Returns the binary result of decoding a Base64-encoded string.

  • input_string: The Base64-encoded string.

                        SELECT BASE64_DECODE('QmFzZTY0RW5jb2RlZA==');
                    -- Result: (binary output)
                    

CHAR(integer_expression)

Converts the integer ASCII code to the corresponding character.

  • integer_expression: The integer from 0 through 255.

                      SELECT CHAR(48);
                      -- Result: '0'
                    

CHARINDEX(expressionToFind ,expressionToSearch [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT CHARINDEX('456', '0123456');
                      -- Result: 4

                      SELECT CHARINDEX('456', '0123456', 5);
                      -- Result: -1
                    

CHAR_LENGTH(character_expression),

Returns the number of UTF-8 characters present in the expression.

  • character_expression: The set of characters to be evaluated for length.

				 SELECT CHAR_LENGTH('sample text') FROM Account LIMIT 1
				 -- Result: 11			
				

CONCAT(string_value1, string_value2, ..., string_valueN)

Returns the string that is the concatenation of two or more string values.

  • string_value1: The first string to be concatenated.
  • string_value2: The second string to be concatenated.
  • string_valueN: (optional) Any additional strings to be concatenated.

                      SELECT CONCAT('Hello, ', 'world!');
                      -- Result: 'Hello, world!'
                    

CONTAINS(expressionToSearch, expressionToFind)

Returns 1 if expressionToFind is found within expressionToSearch; otherwise, 0.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.

                      SELECT CONTAINS('0123456', '456');
                      -- Result: 1

                      SELECT CONTAINS('0123456', 'Not a number');
                      -- Result: 0
                    

ENDSWITH(character_expression, character_suffix)

Returns 1 if character_expression ends with character_suffix; otherwise, 0.

  • character_expression: The character expression.
  • character_suffix: The character suffix to search for.

                      SELECT ENDSWITH('0123456', '456');
                      -- Result: 1

                      SELECT ENDSWITH('0123456', '012');
                      -- Result: 0
                    

FILESIZE(uri)

Returns the number of bytes present in the file at the specified file path.

  • uri: The path of the file from which to read the size.

				SELECT FILESIZE('C:/Users/User1/Desktop/myfile.txt');
				-- Result: 23684
				

FORMAT(value [, parseFormat], format )

Returns the value formatted with the specified format.

  • value: The string to format.
  • format: The string specifying the output syntax of the date or numeric format.
  • parseFormat: The string specifying the input syntax of the date value. Not applicable to numeric types.

                      SELECT FORMAT(12.34, '#');
                      -- Result: 12

                      SELECT FORMAT(12.34, '#.###');
                      -- Result: 12.34

                      SELECT FORMAT(1234, '0.000E0');
                      -- Result: 1.234E3
                      
                      SELECT FORMAT('2019/01/01', 'yyyy-MM-dd');
                      -- Result: 2019-01-01
                      
                      SELECT FORMAT('20190101', 'yyyyMMdd', 'yyyy-MM-dd');
                      -- Result: '2019-01-01'
                    

HASHBYTES(algorithm, value)

Returns the hash of the input value as a byte array using the given algorithm. The supported algorithms are MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, and SHA3_512.

  • algorithm: The algorithm to use for hashing. Must be one of MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, or SHA3_512.
  • value: The value to hash. Must be either a string or byte array.

                      SELECT HASHBYTES('MD5', 'Test');
                      -- Result (byte array): 0x0CBC6611F5540BD0809A388DC95A615B
                    

INDEXOF(expressionToSearch, expressionToFind [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT INDEXOF('0123456', '456');
                      -- Result: 4

                      SELECT INDEXOF('0123456', '456', 5);
                      -- Result: -1
                    

ISALPHABETIC(character_expression)

Returns 1 if the character expression consists only of alphabetic characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHABETIC('Hello');
                      -- Result: 1

                      SELECT ISALPHABETIC('Hello123');
                      -- Result: 0

                      SELECT ISALPHABETIC('Hello!');
                      -- Result: 0
                    

ISALPHANUMERIC(character_expression)

Returns 1 if the character expression consists only of alphabetic and numeric characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHANUMERIC('Hello123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('Hello.123');
                      -- Result: 0
                    

ISNUMERIC(character_expression)

Returns 1 if the character expression consists only of numeric digits and up to one decimal point; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISNUMERIC('123');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45.67');
                      -- Result: 0

                      SELECT ISNUMERIC('12a3');
                      -- Result: 0
                    

JSON_EXTRACT(json, jsonpath)

Selects any value in a JSON array or object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to extract.
  • jsonpath: The XPath used to select the nodes. The JSONPath must be a string constant. The values of the nodes selected will be returned in a token-separated list.

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test');
                      -- Result: '{"data":1}'

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test.data');
                      -- Result: 1

                      SELECT JSON_EXTRACT('{"test": {"data": [1, 2, 3]}}', '$.test.data[1]');
                      -- Result: 2
                    

LEFT ( character_expression , integer_expression )

Returns the specified number of characters counting from the left of the specified string.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters will be returned counting from the left of character_expression.

                      SELECT LEFT('1234567890', 3);
                      -- Result: '123'
                    

LEN(string_expression)

Returns the number of characters of the specified string expression.

  • string_expression: The string expression.

                      SELECT LEN('12345');
                      -- Result: 5
                    

LOCATE(substring,string)

Returns an integer representing how many characters into the string the substring appears.

  • substring: The substring to find inside larger string.
  • string: The larger string that is searched for the substring.
  • start locations: An optional integer that sets the character position (offset) from which to start searching.

				SELECT LOCATE('sample','XXXXXsampleXXXXX');
				-- Result: 6

                SELECT LOCATE('sample', 'XXXXXsampleXXXXX', 7)
                -- Result: 0
				

LOWER ( character_expression )

Returns the character expression with the uppercase character data converted to lowercase.

  • character_expression: The character expression.

                      SELECT LOWER('MIXED case');
                      -- Result: 'mixed case'
                    

LTRIM(character_expression)

Returns the character expression with leading blanks removed.

  • character_expression: The character expression.

                      SELECT LTRIM('     trimmed');
                      -- Result: 'trimmed'
                    

MASK(string_expression, mask_character [, start_index [, end_index ]])

Replaces the characters between start_index and end_index with the mask_character within the string.

  • string_expression: The string expression to be searched.
  • mask_character: The character to mask with.
  • start_index: The optional number of characters to leave unmasked at beginning of string. Defaults to 0.
  • end_index: The optional number of characters to leave unmasked at end of string. Defaults to 0.

                        SELECT MASK('1234567890','*',);
                        -- Result: '**********'
                        SELECT MASK('1234567890','*', 4);
                        -- Result: '1234******'
                        SELECT MASK('1234567890','*', 4, 2);
                        -- Result: '1234****90'  
                    

NCHAR(integer_expression)

Returns the Unicode character with the specified integer code as defined by the Unicode standard.

  • integer_expression: The integer from 0 through 65535 (0 through xFFFF).

OCTET_LENGTH(character_expression),

Returns the number of bytes present in the expression.

  • character_expression: The set of characters to be be evaluated.

				 SELECT OCTET_LENGTH('text') FROM Account LIMIT 1
				 -- Result: 4
				

PATINDEX(pattern, expression)

Returns the starting position of the first occurrence of the pattern in the expression. Returns 0 if the pattern is not found.

  • pattern: The character expression that contains the sequence to be found. The wild-card character % can be used only at the start or end of the expression.
  • expression: The expression, typically a column, to search for the pattern.

                      SELECT PATINDEX('123%', '1234567890');
                      -- Result: 1

                      SELECT PATINDEX('%890', '1234567890');
                      -- Result: 8

                      SELECT PATINDEX('%456%', '1234567890');
                      -- Result: 4
                    

POSITION(expressionToFind IN expressionToSearch)

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.

                      SELECT POSITION('456' IN '123456');
                      -- Result: 4

                      SELECT POSITION('x' IN '123456');
                      -- Result: 0
                    

QUOTENAME(character_string [, quote_character])

Returns a valid SQL Server-delimited identifier by adding the necessary delimiters to the specified Unicode string.

  • character_string: The string of Unicode character data. The string is limited to 128 characters. Inputs greater than 128 characters return null.
  • quote_character: An optional single character to be used as the delimiter. These include:
    • a single quotation mark (')
    • a left or right bracket ([])
    • a double quotation mark (")
    • a left or right parenthesis ( () )
    • a greater or less than sign (><)
    • a left or right brace ({})
    • a backtick (`)

    If quote_character is not specified brackets are used. If an unacceptable character is supplied, it returns NULL.


                      SELECT QUOTENAME('table_name');
                      -- Result: '[table_name]'

                      SELECT QUOTENAME('table_name', '"');
                      -- Result: '"table_name"'

                      SELECT QUOTENAME('table_name', '[');
                      -- Result: '[table_name]'
                    

REGEXP_REPLACE(expr, pattern [, replacement [, position [, occurrence [, match_type]]]])

Replaces occurrences of a regular expression pattern in the input string with a specified value and returns the resulting string.

  • expr: The string expression to be searched.
  • pattern: The regular expression pattern to match.
  • replacement: (optional) The string to replace each matched occurrence of pattern with. Supports backreferences \1 through \9 and escape sequences \n, \r, \t, and \\. By default, this argument is an empty string, meaning matched portions are removed from the output string.
  • position: (optional) The 1-based starting position used when searching for regular expression matches in expr. The default is 1. All characters prior to the starting position are included in the output string unaltered. Skipped characters are ignored when calculating regular expression matches, even if they match pattern.
  • occurrence: (optional) Specifies whether all occurrences of pattern,, or only a specific occurrence of pattern are replaced. The default is 0, which means all occurrences of pattern are replaced with replacement. Set to 1 to only replace the first instance of the pattern; 2 to replace the second; etc.
  • match_type: (optional) Modifiers used to customize matching behavior. Supported values are: 'c' (case-sensitive, default), 'i' (case-insensitive), 'm' (multiline), 'n' (dot matches newline), 'x' (extended mode). These can be freely combined by including the letters back to back. For example, 'im' applies the functionality of both 'i' and 'm'. The regular expression syntax used is that of the Extended mode ('x') ignores whitespace and allows inline comments. If the pattern needs to match a literal space, it must be explicitly escaped.

                      SELECT REGEXP_REPLACE('abc123def456', '\d+', 'NUM');
                      -- Result: 'abcNUMdefNUM'

                      SELECT REGEXP_REPLACE('Hello\nHELLO\nhello', '^hello', 'X', 1, 0, 'im');
                      -- Result: 'X\nX\nX'
                    

REPLACE(string_expression, string_pattern, string_replacement)

Replaces all occurrences of a string with another string.

  • string_expression: The string expression to be searched. This can be a character or binary data type.
  • string_pattern: The substring to be found. Cannot be an empty string.
  • string_replacement: The replacement string.

                      SELECT REPLACE('1234567890', '456', '|');
                      -- Result: '123|7890'

                      SELECT REPLACE('123123123', '123', '.');
                      -- Result: '...'

                      SELECT REPLACE('1234567890', 'a', 'b');
                      -- Result: '1234567890'
                    

REPLICATE ( string_expression ,integer_expression )

Repeats the string value the specified number of times.

  • string_expression: The string to replicate.
  • integer_expression: The repeat count.

                      SELECT REPLACE('x', 5);
                      -- Result: 'xxxxx'
                    

REVERSE ( string_expression )

Returns the reverse order of the string expression.

  • string_expression: The string.

                      SELECT REVERSE('1234567890');
                      -- Result: '0987654321'
                    

RIGHT ( character_expression , integer_expression )

Returns the right part of the string with the specified number of characters.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters of the character expression will be returned.

                      SELECT RIGHT('1234567890', 3);
                      -- Result: '890'
                    

RTRIM(character_expression)

Returns the character expression after it removes trailing blanks.

  • character_expression: The character expression.

                      SELECT RTRIM('trimmed     ');
                      -- Result: 'trimmed'
                    

SOUNDEX(character_expression)

Returns the four-character Soundex code, based on how the string sounds when spoken.

  • character_expression: The alphanumeric expression of character data.

                      SELECT SOUNDEX('smith');
                      -- Result: 'S530'
                    

SPACE(repeatcount)

Returns the string that consists of repeated spaces.

  • repeatcount: The number of spaces.

                      SELECT SPACE(5);
                      -- Result: '     '
                    

SPLIT(string, delimiter, offset)

Returns a section of the string between to delimiters.

  • string: The string to split.
  • delimiter: The character to split the string with.
  • offset: The number of the split to return. Positive numbers are treated as offsets from the left, and negative numbers are treated as offsets from the right.

                      SELECT SPLIT('a/b/c/d', '/', 1);
                      -- Result: 'a'
                      SELECT SPLIT('a/b/c/d', '/', -2);
                      -- Result: 'c'
                    

STARTSWITH(character_expression, character_prefix)

Returns 1 if character_expression starts with character_prefix; otherwise, 0.

  • character_expression: The character expression.
  • character_prefix: The character prefix to search for.

                      SELECT STARTSWITH('0123456', '012');
                      -- Result: 1

                      SELECT STARTSWITH('0123456', '456');
                      -- Result: 0
                    

STR ( float_expression [ , integer_length [ , integer_decimal ] ] )

Returns the character data converted from the numeric data. For example, STR(123.45, 6, 1) returns 123.5.

  • float_expression: The float expression.
  • length: The optional total length to return. This includes decimal point, sign, digits, and spaces. The default is 10.
  • decimal: The optional number of places to the right of the decimal point. The decimal must be less than or equal to 16.

                      SELECT STR('123.456');
                      -- Result: '123'

                      SELECT STR('123.456', 2);
                      -- Result: '**'

                      SELECT STR('123.456', 10, 2);
                      -- Result: '123.46'
                    

STUFF(character_expression , integer_start , integer_length , replaceWith_expression)

Inserts a string into another string. It deletes the specified length of characters in the first string at the start position and then inserts the second string into the first string at the start position.

  • character_expression: The string expression.
  • start: The integer value that specifies the location to start deletion and insertion. If start or length is negative, null is returned. If start is longer than the string to be modified, character_expression, null is returned.
  • length: The integer that specifies the number of characters to delete. If length is longer than character_expression, deletion occurs up to the last character in replaceWith_expression.
  • replaceWith_expression: The expression of character data that will replace length characters of character_expression beginning at the start value.

                      SELECT STUFF('1234567890', 3, 2, 'xx');
                      -- Result: '12xx567890'
                    

SUBSTRING(string_value FROM start FOR length)

Returns the part of the string with the specified length; starts at the specified index.

  • string_value: The character string.
  • start: The positive integer that specifies the start index of characters to return.
  • length: Optional. The positive integer that specifies how many characters will be returned.

                      SELECT SUBSTRING('1234567890' FROM 3 FOR 2);
                      -- Result: '34'

                      SELECT SUBSTRING('1234567890' FROM 3);
                      -- Result: '34567890'
                    
You can also drop the FROM and FOR clauses:
                    SELECT SUBSTRING('1234567890', 3, 2)
                    --Result: '34'
                    SELECT SUBSTRING('1234567890', 3)
                    --Result: '34567890'
                    

TEXT_ENCODE(input_string, charset)

Returns binary output by encoding a string using the specified character set.

  • input_string: The plain text string.
  • charset: The character set to use, such as 'UTF-8', 'ISO-8859-1'.

                    SELECT TEXT_ENCODE('Café', 'UTF-8');
                    -- Result: (binary output)
                    

TEXT_DECODE(input_binary, charset)

Returns a string decoded from binary data using the specified character set.

  • input_binary: The binary value to decode.
  • charset: The character set used for decoding.

                    SELECT TEXT_DECODE(BinaryData, 'UTF-8');
                    -- Result: 'Café'
                    

TOSTRING(string_value1)

Converts the value of this instance to its equivalent string representation.

  • string_value1: The string to be converted.

                      SELECT TOSTRING(123);
                      -- Result: '123'

                      SELECT TOSTRING(123.456);
                      -- Result: '123.456'

                      SELECT TOSTRING(null);
                      -- Result: ''
                    

TRIM(trimspec trimchar FROM string_value)

Returns the character expression with leading and/or trailing blanks removed.

  • trimspec: Optional. If included must be one of the keywords BOTH, LEADING or TRAILING.
  • trimchar: Optional. If included should be a one-character string value.
  • string_value: The string value to trim.

                      SELECT TRIM('     trimmed     ');
                      -- Result: 'trimmed'

                      SELECT TRIM(LEADING FROM '     trimmed     ');
                      -- Result: 'trimmed     '

                      SELECT TRIM('-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(BOTH '-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(TRAILING '-' FROM '-----trimmed-----');
                      -- Result: '-----trimmed'
                    

UNICODE(ncharacter_expression)

Returns the integer value defined by the Unicode standard of the first character of the input expression.

  • ncharacter_expression: The Unicode character expression.

UPPER ( character_expression )

Returns the character expression with lowercase character data converted to uppercase.

  • character_expression: The character expression.

                      SELECT UPPER('MIXED case');
                      -- Result: 'MIXED CASE'
                    

XML_EXTRACT(xml, xpath [, separator])

Extracts an XML document using the specified XPath to flatten the XML. A comma is used to separate the outputs by default, but this can be changed by specifying the third parameter.

  • xml: The XML document to extract.
  • xpath: The XPath used to select the nodes. The nodes selected will be returned in a token-separated list.
  • separator: The optional token used to separate the items in the flattened response. If this is not specified, the separator will be a comma.

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch');
                      -- Result: 'a,e,i,o,u'

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch', ';');
                      -- Result: 'a;e;i;o;u'
                    

CData Python Connector for Marketo

MATH Functions

ABS ( numeric_expression )

Returns the absolute (positive) value of the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT ABS(15);
                      -- Result: 15

                      SELECT ABS(-15);
                      -- Result: 15
                    

ACOS ( float_expression )

Returns the arc cosine, the angle in radians whose cosine is the specified float expression.

  • float_expression: The float expression that specifies the cosine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ACOS(0.5);
                      -- Result: 1.0471975511966
                    

ASIN ( float_expression )

Returns the arc sine, the angle in radians whose sine is the specified float expression.

  • float_expression: The float expression that specifies the sine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ASIN(0.5);
                      -- Result: 0.523598775598299
                    

ATAN ( float_expression )

Returns the arc tangent, the angle in radians whose tangent is the specified float expression.

  • float_expression: The float expression that specifies the tangent of the angle to be returned.

                      SELECT ATAN(10);
                      -- Result: 1.47112767430373
                    

ATN2 ( float_expression1 , float_expression2 )

Returns the angle in radians between the positive x-axis and the ray from the origin to the point (y, x) where x and y are the values of the two specified float expressions.

  • float_expression1: The float expression that is the y-coordinate.
  • float_expression2: The float expression that is the x-coordinate.

                      SELECT ATN2(1, 1);
                      -- Result: 0.785398163397448
                    

CEILING ( numeric_expression ) or CEIL( numeric_expression )

Returns the smallest integer greater than or equal to the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT CEILING(1.3);
                      -- Result: 2

                      SELECT CEILING(1.5);
                      -- Result: 2

                      SELECT CEILING(1.7);
                      -- Result: 2
                    

COS ( float_expression )

Returns the trigonometric cosine of the specified angle in radians in the specified expression.

  • float_expression: The float expression of the specified angle in radians.

                      SELECT COS(1);
                      -- Result: 0.54030230586814
                    

COT ( float_expression )

Returns the trigonometric cotangent of the angle in radians specified by float_expression.

  • float_expression: The float expression of the angle in radians.

                      SELECT COT(1);
                      -- Result: 0.642092615934331
                    

DEGREES ( numeric_expression )

Returns the angle in degrees for the angle specified in radians.

  • numeric_expression: The angle in radians, an expression of an indeterminate numeric data type except for the bit data type.

                      SELECT DEGREES(3.1415926);
                      -- Result: 179.999996929531
                    

EXP ( float_expression )

Returns the exponential value of the specified float expression. For example, EXP(LOG(20)) is 20.

  • float_expression: The float expression.

                      SELECT EXP(2);
                      -- Result: 7.38905609893065
                    

EXPR ( expression )

Evaluates the expression.

  • expression: The expression. Operators allowed are +, -, *, /, ==, !=, >, <, >=, and <=.

                      SELECT EXPR('1 + 2 * 3');
                      -- Result: 7

                      SELECT EXPR('1 + 2 * 3 == 7');
                      -- Result: true
                    

FLOOR ( numeric_expression )

Returns the largest integer less than or equal to the numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT FLOOR(1.3);
                      -- Result: 1

                      SELECT FLOOR(1.5);
                      -- Result: 1

                      SELECT FLOOR(1.7);
                      -- Result: 1
                    

GREATEST(int1,int2,....)

Returns the greatest of the supplied integers.

				SELECT GREATEST(3,5,8,10,1)
				-- Result: 10			
				

HEX(value)

Returns a the equivalent hex for the input value.

  • value: A string or numerical value to be converted into hex.

				SELECT HEX(866849198);
				-- Result: 33AB11AE
				
				SELECT HEX('Sample Text');
				-- Result: 53616D706C652054657874
				

JSON_AVG(json, jsonpath)

Computes the average value of a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_AVG('[1,2,3,4,5]', '$[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4.5
                    

JSON_COUNT(json, jsonpath)

Returns the number of elements in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_COUNT('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 2
                    

JSON_MAX(json, jsonpath)

Gets the maximum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MAX('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[..3]');
                      -- Result: 4
                    

JSON_MIN(json, jsonpath)

Gets the minimum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MIN('[1,2,3,4,5]', '$[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4
                    

JSON_SUM(json, jsonpath)

Computes the summary value in JSON according to the JSONPath expression. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_SUM('[1,2,3,4,5]', '$[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 9
                    

LEAST(int1,int2,....)

Returns the least of the supplied integers.

				SELECT LEAST(3,5,8,10,1)
				-- Result: 1			
				

LOG ( float_expression [, base ] )

Returns the natural logarithm of the specified float expression.

  • float_expression: The float expression.
  • base: The optional integer argument that sets the base for the logarithm.

                      SELECT LOG(7.3890560);
                      -- Result: 1.99999998661119
                    

LOG10 ( float_expression )

Returns the base-10 logarithm of the specified float expression.

  • float_expression: The expression of type float.

                      SELECT LOG10(10000);
                      -- Result: 4
                    

MOD(dividend,divisor)

Returns the integer value associated with the remainder when dividing the dividend by the divisor.

  • dividend: The number to take the modulus of.
  • divisor: The number to divide the dividend by when determining the modulus.

				SELECT MOD(10,3);
				-- Result: 1
				

NEGATE(real_number)

Returns the opposite to the real number input.

  • real_number: The real number to find the opposite of.

				SELECT NEGATE(10);
				-- Result: -10
				
				SELECT NEGATE(-12.4)
				--Result: 12.4
				

PI ( )

Returns the constant value of pi.

                  SELECT PI()
                  -- Result: 3.14159265358979 
                

POWER ( float_expression , y )

Returns the value of the specified expression raised to the specified power.

  • float_expression: The float expression.
  • y: The power to raise float_expression to.

                      SELECT POWER(2, 10);
                      -- Result: 1024

                      SELECT POWER(2, -2);
                      -- Result: 0.25
                    

RADIANS ( float_expression )

Returns the angle in radians of the angle in degrees.

  • float_expression: The degrees of the angle as a float expression.

                      SELECT RADIANS(180);
                      -- Result: 3.14159265358979
                    

RAND ( [ integer_seed ] )

Returns a pseudorandom float value from 0 through 1, exclusive.

  • seed: The optional integer expression that specifies the seed value. If seed is not specified, a seed value at random will be assigned.

                      SELECT RAND();
                      -- This result may be different, since the seed is randomized
                      -- Result: 0.873159630165044

                      SELECT RAND(1);
                      -- This result will always be the same, since the seed is constant
                      -- Result: 0.248668584157093
                    

ROUND ( numeric_expression [ ,integer_length] [ ,function ] )

Returns the numeric value rounded to the specified length or precision.

  • numeric_expression: The expression of a numeric data type.
  • length: The optional precision to round the numeric expression to. When this is omitted, the default behavior will be to round to the nearest whole number.
  • function: The optional type of operation to perform. When the function parameter is omitted or has a value of 0 (default), numeric_expression is rounded. When a value other than 0 is specified, numeric_expression is truncated.

                      SELECT ROUND(1.3, 0);
                      -- Result: 1

                      SELECT ROUND(1.55, 1);
                      -- Result: 1.6

                      SELECT ROUND(1.7, 0, 0);
                      -- Result: 2

                      SELECT ROUND(1.7, 0, 1);
                      -- Result: 1
                      
                      SELECT ROUND (1.24);
                      -- Result: 1.0
                    

SIGN ( numeric_expression )

Returns the positive sign (1), 0, or negative sign (-1) of the specified expression.

  • numeric_expression: The expression of an indeterminate data type except for the bit data type.

                      SELECT SIGN(0);
                      -- Result: 0

                      SELECT SIGN(10);
                      -- Result: 1

                      SELECT SIGN(-10);
                      -- Result: -1
                    

SIN ( float_expression )

Returns the trigonometric sine of the angle in radians.

  • float_expression: The float expression specifying the angle in radians.

                     SELECT SIN(1);
                     -- Result: 0.841470984807897
                    

SQRT ( float_expression )

Returns the square root of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQRT(100);
                      -- Result: 10
                    

SQUARE ( float_expression )

Returns the square of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQUARE(10);
                      -- Result: 100

                      SELECT SQUARE(-10);
                      -- Result: 100
                    

TAN ( float_expression )

Returns the tangent of the input expression.

  • float_expression: The expression of type float.

                      SELECT TAN(1);
                      -- Result: 1.5574077246549
                    

TRUNC(decimal_number,precision)

Returns the supplied decimal number truncated to have the supplied decimal precision.

  • decimal_number: The decimal value to truncate.
  • precision: The number of decimal places to truncate the decimal number to.

				SELECT TRUNC(10.3423,2);
				-- Result: 10.34
				

_ROW_NUMBER_()

Returns a row index as an additional column.

				SELECT ColumnName, _ROW_NUMBER_() FROM TableName
				-- Result: ColumnData, 0
				ColumnData2, 1
				ColumnData3, 2
				

CData Python Connector for Marketo

DATE Functions

CURRENT_DATE()

Returns the current date value.

                  SELECT CURRENT_DATE();
                  -- Result: 2018-02-01
                

CURRENT_TIMESTAMP()

Returns the current time stamp of the database system as a datetime value. This value is equal to GETDATE and SYSDATETIME, and is always in the local timezone.

                  SELECT CURRENT_TIMESTAMP();
                  -- Result: 2018-02-01 03:04:05
                

DATEADD (datepart , integer_number , date [, dateformat])

Returns the datetime value that results from adding the specified number (a signed integer) to the specified date part of the date.

  • datepart: The part of the date to add the specified number to. The valid values and abbreviations are
    • year (yy, yyyy)
    • quarter (qq, q)
    • month (mm, m)
    • week (wk, ww)
    • weekday (dw)
    • dayofyear (dy, y)
    • day (dd, d)
    • hour (hh)
    • minute (mi, n)
    • second (ss, s)
    • millisecond (ms)
  • number: The number to be added.
  • date: The expression of the datetime data type.
  • dateformat: The optional output date format.

                  SELECT DATEADD('d', 5, '2018-02-01');
                  -- Result: 2018-02-06

                  SELECT DATEADD('hh', 5, '2018-02-01 00:00:00');
                  -- Result: 2018-02-01 05:00:00
                

DATEDIFF ( datepart , startdate , enddate )

Returns the difference (a signed integer) of the specified time interval between the specified start date and end date.

  • datepart: The part of the date that is the time interval of the difference between the start date and end date. The valid values and abbreviations are:
    • Year (year, yyyy, yy)
    • Quarter (quarter, qq, q)
    • Month (month, mm, m)
    • Week (week, wk, ww)
    • Weekday (weekday, dw)
    • Dayofyear (dayofyear, dy, y)
    • Day (day, dd, d)
    • Hour (hour, hh)
    • Minute (minute, mi, n)
    • Second (second, ss, s)
    • Millisecond (millisecond, ms)
  • startdate: The datetime expression of the start date.
  • enddate: The datetime expression of the end date.

                  SELECT DATEDIFF('d', '2018-02-01', '2018-02-10');
                  -- Result: 9

                  SELECT DATEDIFF('hh', '2018-02-01 00:00:00', '2018-02-01 12:00:00');
                  -- Result: 12
                

DATE_FORMAT(date,format)

Returns the date or timestamp in the format specified. This function mirrors the MySQL DATE_FORMAT function.

  • date: A date or timestamp string.
  • format: The specifier string of the desired output format. The list of supported format specifiers comes from the MySQL DATE_FORMAT function (see link to MySQL documentation above).

					SELECT DATE_FORMAT('9/4/2021 3:11:53 AM','%h')
					-- Result: 03
				  

DATEFROMPARTS(integer_year, integer_month, integer_day)

Returns the datetime value for the specified year, month, and day.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.

                    SELECT DATEFROMPARTS(2018, 2, 1);
                    -- Result: 2018-02-01
                  

DATENAME(datepart , date)

Returns the character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), and nanosecond (ns).
  • date: The datetime expression.

                     SELECT DATENAME('yy', '2018-02-01');
                     -- Result: '2018'

                     SELECT DATENAME('dw', '2018-02-01');
                     -- Result: 'Thursday'
                   

DATEPART(datepart, date [,integer_datefirst])

Returns a character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), nanosecond (ns), ISODOW, ISO_WEEK (isoweek, isowk,isoww), and ISOYEAR.
  • date: The datetime string.
  • datefirst: The optional integer representing the first day of the week. The default is 7, Sunday.

                    SELECT DATEPART('yy', '2018-02-01');
                    -- Result: 2018

                    SELECT DATEPART('dw', '2018-02-01');
                    -- Result: 5
                  

DATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_milliseconds)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • milliseconds: The integer expression specifying the milliseconds.

                    SELECT DATETIMEFROMPARTS(2018, 2, 1, 1, 2, 3, 456);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATETIME2FROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision: The integer expression specifying the precision of the fraction.

				    SELECT DATETIME2FROMPARTS(2018, 2, 1, 1, 2, 3, 456, 3);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATE_TRUNC(date, datepart)

Truncates the date to the precision of the given date part. Modeled after the Oracle TRUNC function.

  • date: The datetime string that specifies the date.
  • datepart: Refer to the Oracle documentation for valid datepart syntax.

				    SELECT DATE_TRUNC('05-04-2005', 'YY');
                    -- Result: '1/1/2005'
					
                    SELECT DATE_TRUNC('05-04-2005', 'MM');
                    -- Result: '5/1/2005'                    
                  

DATE_TRUNC2(datepart, date, [weekday])

Truncates the date to the precision of the given date part. Modeled after the PostgreSQL date_trunc function.

  • datepart: One of 'millennium', 'century', 'decade', 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute' or 'second'.
  • date: The datetime string that specifies the date.
  • weekday: The optional day of the week to use as the first day for 'week'. One of 'sunday', 'monday', etc.

                    SELECT DATE_TRUNC2('year', '2020-02-04');
                    -- Result: '2020-01-01'

                    SELECT DATE_TRUNC2('week', '2020-02-04', 'monday');
                    -- Result: '2020-02-02', which is the previous Monday
                  

DAY(date)

Returns the integer that specifies the day component of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAY('2018-02-01');
                    -- Result: 1
                  

DAYNAME(date)

Returns the name of the day of the week of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAYNAME('8/18/2021');
                    -- Result: Wednesday
                  

DAYOFMONTH(date)

Returns the day of the month of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFMONTH('04/15/2000');
				  -- Result: 15
				  

DAYOFWEEK(date)

Returns the day of the week of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFWEEK('04/15/2000');
				  -- Result: 7
				  

DAYOFYEAR(date)

Returns the day of the year of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFYEAR('04/15/2000');
				  -- Result: 106
				  

EOMONTH(date [, integer_month_to_add ]) or LAST_DAY(date)

Returns the last day of the month that contains the specified date with an optional offset.

  • date: The datetime expression specifying the date for which to return the last day of the month.
  • integer_month_to_add: The optional integer expression specifying the number of months to add to the date before calculating the end of the month.

                  SELECT EOMONTH('2018-02-01');
                  -- Result: 2018-02-28
                  
                  SELECT LAST_DAY('2018-02-01');
                  -- Result: 2018-02-28

                  SELECT EOMONTH('2018-02-01', 2);
                  -- Result: 2018-04-30
                

EXTRACT(date_part FROM date_column_name)

Returns the last day of the month that contains the specified date with an optional offset.

  • date_part: One of the following date components: YEAR, MONTH, DAY, HOUR, MINUTE, SECOND.
  • date_column_name: The name of a date column in a table.

                  SELECT EXTRACT(YEAR FROM DateColumn)
                  -- Result: 2021
                

FDWEEK(date)

Returns the first day of the week of the given date part.
  • date: The datetime string that specifies the date.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the week.

				  SELECT FDWEEK('02-08-2018');
				  -- Result: 2/4/2018

          SELECT FDWEEK('02-08-2018', 1)
          --Result: 02/11/2018
				  

FDMONTH(date)

Returns the first day of the month of the given date part.
  • date: The datetime string that specifies the date.
  • month to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the month.

				  SELECT FDMONTH('02-08-2018');
				  -- Result: 2/1/2018

          SELECT FDMONTH('02-08-2018', 1) 
          --Result: 03/01/2018
				  

FDQUARTER(date)

Returns the first day of the quarter of the given date part.
  • date: The datetime string that specifies the date.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the quarter.

				  SELECT FDQUARTER('05-08-2018');
				  -- Result: 4/1/2018

          SELECT FDQUARTER('05-08-2018',1)
          --Result: 07/01/2018
				  

FILEMODIFIEDTIME(uri)

Returns the time stamp associated with the Date Modified of the relevant file.

  • uri: An absolute path pointing to a file on the local file system.

				 SELECT FILEMODIFIEDTIME('C:/Documents/myfile.txt');
				 -- Result: 6/25/2019 10:06:58 AM
				 

FROM_DAYS(datevalue)

Returns a date derived from the number of days after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL FROM_DAYS function.

  • datevalue: A integer value representing the number of days since 1582-10-15.

				SELECT FROM_DAYS(736000);
				-- Result: 2/6/2015
				

FROM_UNIXTIME(time, issecond)

Returns a representation of the unix_timestamp argument as a value in YYYY-MM-DD HH:MM:SS expressed in the current time zone.

  • time: The time stamp value from epoch time. Milliseconds are accepted.
  • issecond: Indicates the time stamp value is milliseconds to epoch time.

                      SELECT FROM_UNIXTIME(1540495231, 1);
                      -- Result: 2018-10-25 19:20:31

                      SELECT FROM_UNIXTIME(1540495357385, 0);
                      -- Result: 2018-10-25 19:22:37
                    

GETDATE()

Returns the current time stamp of the database system as a datetime value. This value is equal to CURRENT_TIMESTAMP and SYSDATETIME, and is always in the local timezone.

                  SELECT GETDATE();
                  -- Result: 2018-02-01 03:04:05
                

GETUTCDATE()

Returns the current time stamp of the database system formatted as a UTC datetime value. This value is equal to SYSUTCDATETIME.

In addition, GETUTCDATE can take an optional second parameter, a date and time that are converted to UTC.

                  SELECT GETUTCDATE();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05

                  SELECT GETUTCDATE('2020/08/31 13:56:00')
                  --Result: '2020-08-31 17:56:00'
                

HOUR(date)

Returns the hour component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT HOUR('02-02-2020 11:30:00');
				-- Result: 11
				

ISDATE(date, [date_format])

Returns 1 if the value is a valid date, time, or datetime value; otherwise, 0.

  • date: The datetime string.
  • date_format: The optional datetime format.

                      SELECT ISDATE('2018-02-01', 'yyyy-MM-dd');
                      -- Result: 1

                      SELECT ISDATE('Not a date');
                      -- Result: 0
                    

LAST_WEEK()

Returns a time stamp equivalent to exactly one week before the current date.

				SELECT LAST_WEEK();	//Assume the date is 3/17/2020	
			 -- Result: 3/10/2020 00:00:00
				

LAST_MONTH()

Returns a time stamp equivalent to exactly one month before the current date.

	
				SELECT LAST_MONTH(); //Assume the date is 3/17/2020
				-- Result: 2/17/2020 00:00:00
				

LAST_YEAR()

Returns a time stamp equivalent to exactly one year before the current date.

				SELECT LAST_YEAR();	//Assume the date is 3/17/2020	
				-- Result: 3/10/2019 00:00:00
				

LDWEEK(date)

Returns the last day of the provided week.

  • date: The datetime string.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the week.

				SELECT LDWEEK('02-02-2020');
				-- Result: 2/8/2020
				

LDMONTH(date)

Returns the last day of the provided month.

  • date: The datetime string.
  • months to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the month.

				SELECT LDMONTH('02-02-2020');
				-- Result: 2/29/2020

        SELECT LDMONTH('02-08-2020', 1)
        --Result: 03/31/2020
				

LDQUARTER(date)

Returns the last day of the provided quarter.

  • date: The datetime string.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the quarter.

				SELECT LDQUARTER('02-02-2020');
				-- Result: 3/31/2020

        SELECT LDQUARTER('02-02-2020',1)
        --Result: 06/30/2020
				

MAKEDATE(year, days)

Returns a date value from a year and a number of days.

  • year: The year
  • days: The number of days into the year. Value must be greater than 0.

          SELECT MAKEDATE(2020, 1);
          -- Result: 2020-01-01
        

MINUTE(date)

Returns the minute component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MINUTE('02-02-2020 11:15:00');
				-- Result: 15
				

MONTH(date)

Returns the month component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MONTH('02-02-2020');
				-- Result: 2
				

QUARTER(date)

Returns the quarter associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT QUARTER('02-02-2020');
				-- Result: 1
				

SECOND(date)

Returns the second component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT SECOND('02-02-2020 11:15:23');
				-- Result: 23
				

SMALLDATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute)

Returns the datetime value for the specified date and time.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.

                      SELECT SMALLDATETIMEFROMPARTS(2018, 2, 1, 1, 2);
                      -- Result: 2018-02-01 01:02:00
                    

STRTODATE(string,format)

Parses the provided string value and returns the corresponding datetime.

  • string: The string value to be converted to datetime format.
  • format: A format string which describes how to interpret the first string input. A few special formats are available as well, including UNIX, UNIXMILIS, TICKS, and FILETICKS.

				SELECT STRTODATE('03*04*2020','dd*MM*yyyy');
				-- Result: 4/3/2020
				

SYSDATETIME()

Returns the current time stamp as a datetime value of the database system. It is equal to GETDATE and CURRENT_TIMESTAMP, and is always in the local timezone.

                  SELECT SYSDATETIME();
                  -- Result: 2018-02-01 03:04:05
                

SYSUTCDATETIME()

Returns the current system date and time as a UTC datetime value. It is equal to GETUTCDATE.

                  SELECT SYSUTCDATETIME();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05
                

TIMEFROMPARTS(integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the time value for the specified time and with the specified precision.

  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision : The integer expression specifying the precision of the fraction.

                      SELECT TIMEFROMPARTS(1, 2, 3, 456, 3);
                      -- Result: 01:02:03.456
                    

TO_DAYS(date)

Returns the number of days since 0000-00-01. This will only return a value for dates on or after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL TO_DAYS function.

  • date: The datetime string that specifies the date.

				SELECT TO_DAYS('02-06-2015');
				-- Result: 736000
				

WEEK(date)

Returns the week (of the year) associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT WEEK('02-17-2020 11:15:23');
				-- Result: 8
				

YEAR(date)

Returns the integer that specifies the year of the specified date.

  • date: The datetime string.

                      SELECT YEAR('2018-02-01');
                      -- Result: 2018
                    

CData Python Connector for Marketo

Date Literal Functions

The following date literal functions can be used to filter date fields using relative intervals. Note that while the <, >, and = operators are supported for these functions, <= and >= are not.

L_TODAY()

The current day.

  SELECT * FROM MyTable WHERE MyDateField = L_TODAY()

L_YESTERDAY()

The previous day.

  SELECT * FROM MyTable WHERE MyDateField = L_YESTERDAY()

L_TOMORROW()

The following day.

  SELECT * FROM MyTable WHERE MyDateField = L_TOMORROW()

L_LAST_WEEK()

Every day in the preceding week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_WEEK()

L_THIS_WEEK()

Every day in the current week.

  SELECT * FROM MyTable WHERE MyDateField = L_THIS_WEEK()

L_NEXT_WEEK()

Every day in the following week.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_WEEK()
Also available:
  • L_LAST/L_THIS/L_NEXT MONTH
  • L_LAST/L_THIS/L_NEXT QUARTER
  • L_LAST/L_THIS/L_NEXT YEAR

L_LAST_N_DAYS(n)

The previous n days, excluding the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_DAYS(3)

L_NEXT_N_DAYS(n)

The following n days, including the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_DAYS(3)
Also available:
  • L_LAST/L_NEXT_90_DAYS

L_LAST_N_WEEKS(n)

Every day in every week, starting n weeks before current week, and ending in the previous week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_WEEKS(3)

L_NEXT_N_WEEKS(n)

Every day in every week, starting the following week, and ending n weeks in the future.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_WEEKS(3)
Also available:
  • L_LAST/L_NEXT_N_MONTHS(n)
  • L_LAST/L_NEXT_N_QUARTERS(n)
  • L_LAST/L_NEXT_N_YEARS(n)

CData Python Connector for Marketo

SELECT Statements

A SELECT statement can consist of the following basic clauses.

  • SELECT
  • INTO
  • FROM
  • JOIN
  • WHERE
  • GROUP BY
  • HAVING
  • UNION
  • ORDER BY
  • LIMIT

SELECT Syntax

The following syntax diagram outlines the syntax supported by the SQL engine of the connector:

SELECT {
  [ TOP <numeric_literal> | DISTINCT ]
  { 
    * 
    | { 
        <expression> [ [ AS ] <column_reference> ] 
        | { <table_name> | <correlation_name> } .* 
      } [ , ... ] 
  }
  { 
    FROM <table_reference> [ [ AS ] <identifier> ] 
  } [ , ... ]
  [ [  
      INNER | { { LEFT | RIGHT | FULL } [ OUTER ] } 
    ] JOIN <table_reference> [ ON <search_condition> ] [ [ AS ] <identifier> ] 
  ] [ ... ] 
  [ WHERE <search_condition> ]
  [ GROUP BY <column_reference> [ , ... ]
  [ HAVING <search_condition> ]
  [ UNION [ ALL ] <select_statement> ]
  [ 
    ORDER BY 
    <column_reference> [ ASC | DESC ] [ NULLS FIRST | NULLS LAST ]
  ]
  [ 
    LIMIT <expression>
    [ 
      { OFFSET | , }
      <expression> 
    ]
  ] 
} | SCOPE_IDENTITY() 

<expression> ::=
  | <column_reference>
  | @ <parameter> 
  | ?
  | COUNT( * | { [ DISTINCT ] <expression> } )
  | { AVG | MAX | MIN | SUM | COUNT } ( <expression> ) 
  | NULLIF ( <expression> , <expression> ) 
  | COALESCE ( <expression> , ... ) 
  | CASE <expression>
      WHEN { <expression> | <search_condition> } THEN { <expression> | NULL } [ ... ]
    [ ELSE { <expression> | NULL } ]
    END 
  | {RANK() | DENSE_RANK()} OVER ([PARTITION BY <column_reference>] {ORDER BY <column_reference>})
  | <literal>
  | <sql_function> 

<search_condition> ::= 
  {
    <expression> { = | > | < | >= | <= | <> | != | LIKE | NOT LIKE | IN | NOT IN | IS NULL | IS NOT NULL | AND | OR | CONTAINS | BETWEEN | IS DISTINCT FROM | IS NOT DISTINCT FROM } [ <expression> ]
  } [ { AND | OR } ... ] 

Examples

  1. Return all columns:
    SELECT * FROM Leads
  2. Rename a column:
    SELECT [Email] AS MY_Email FROM Leads
  3. Cast a column's data as a different data type:
    SELECT CAST(AnnualRevenue AS VARCHAR) AS Str_AnnualRevenue FROM Leads
  4. Search data:
    SELECT * FROM Leads WHERE Email = 'sample@email.com'
  5. Return the number of items matching the query criteria:
    SELECT COUNT(*) AS MyCount FROM Leads 
  6. Return the number of unique items matching the query criteria:
    SELECT COUNT(DISTINCT Email) FROM Leads 
  7. Return the unique items matching the query criteria:
    SELECT DISTINCT Email FROM Leads 
  8. Sort a result set in ascending order:
    SELECT Id, Email FROM Leads  ORDER BY Email ASC
  9. Restrict a result set to the specified number of rows:
    SELECT Id, Email FROM Leads LIMIT 10 
  10. Parameterize a query to pass in inputs at execution time. This enables you to create prepared statements and mitigate SQL injection attacks.
    SELECT * FROM Leads WHERE Email = @param
See Explicitly Caching Data for information on using the SELECT statement in offline mode.

Pseudo Columns

Some input-only fields are available in SELECT statements. These fields, called pseudo columns, do not appear as regular columns in the results, yet may be specified as part of the WHERE clause. You can use pseudo columns to access additional features from Marketo.

    SELECT * FROM Leads WHERE CampaignName = 'OldestUpdatedAt'
    

Aggregate Functions

For SELECT examples using aggregate functions, see Aggregate Functions.

JOIN Queries

See JOIN Queries for SELECT query examples using JOINs.

Date Literal Functions

Date Literal Functions contains SELECT examples with date literal functions.

Window Functions

See Window Functions for SELECT examples containing window functions.

Table-Valued Functions

See Table-Valued Functions for SELECT examples with table-valued functions.

CData Python Connector for Marketo

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM Leads WHERE Email = 'sample@email.com'

COUNT(DISTINCT)

Returns the number of distinct, non-null field values matching the query criteria.

SELECT COUNT(DISTINCT Id) AS DistinctValues FROM Leads WHERE Email = 'sample@email.com'

AVG

Returns the average of the column values.

SELECT Email, AVG(AnnualRevenue) FROM Leads WHERE Email = 'sample@email.com'  GROUP BY Email

MIN

Returns the minimum column value.

SELECT MIN(AnnualRevenue), Email FROM Leads WHERE Email = 'sample@email.com' GROUP BY Email

MAX

Returns the maximum column value.

SELECT Email, MAX(AnnualRevenue) FROM Leads WHERE Email = 'sample@email.com' GROUP BY Email

SUM

Returns the total sum of the column values.

SELECT SUM(AnnualRevenue) FROM Leads WHERE Email = 'sample@email.com'

CData Python Connector for Marketo

JOIN Queries

The CData Python Connector for Marketo supports standard SQL joins like the following examples.

Inner Join

An inner join selects only rows from both tables that match the join condition:

SELECT l.FirstName, l.LastName, a.Link_Value, a.UserAgent FROM Leads l INNER JOIN Activities_ClickLink a ON l.Id = a.LeadId

Left Join

A left join selects all rows in the FROM table and only matching rows in the JOIN table:

SELECT l.FirstName, l.LastName, a.Link_Value, a.UserAgent FROM Leads l LEFT JOIN Activities_ClickLink a ON l.Id = a.LeadId

CData Python Connector for Marketo

Window Functions

Window functions allow you to create computed fields from a group of rows (a window) that return a result for each row, as opposed to one computed result for a set of rows, as is the case with aggregate functions. The connector supports the following window function syntax.

Note: Window function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with window functions may not be optimal.

Window Function Clauses

OVER

The OVER clause defines the window over which window functions are performed.

SELECT A, B, <window function> OVER (<window frame>) FROM TableName

The <window function> refers to any supported window function clause, and the <window frame> refers to one or more clauses that specify the logic by which the window is defined.

PARTITION BY

The PARTITION BY clause subdivides a window into sub-windows called partitions. For each unique value in the column specified in the PARTITION BY clause, every record with that value collectively forms an individual partition.

SELECT A, B, <window function> OVER (PARTITION BY A ORDER BY B) From Leads

The <window function> refers to any supported window function clause.

Window Functions

The connector supports math, ranking, and analytic window functions.

Math

These window functions perform mathematical operations on the records within the window.

COUNT()

Calculates the number of records in each partition. The calculated column is of the data type "int".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT() OVER (PARTITION BY Role) FROM Employees

COUNT_BIG()

Calculates the number of records in each partition. The calculated column is of the data type "bigint".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT_BIG() OVER (PARTITION BY Role) FROM Employees

MIN(numeric_column)

Calculates the minimum value of a numerical column per partition.

In each partition, every record will display the minimum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MIN(Earnings) OVER (PARTITION BY Role) FROM Employees

MAX(numeric_column)

Calculates the maximum value of a numerical column per partition.

In each partition, every record will display the maximum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MAX(Earnings) OVER (PARTITION BY Role) FROM Employees

SUM(numeric_column)

Calculates the sum of a numerical column per partition.

In each partition, every record will display the sum of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, SUM(Earnings) OVER (PARTITION BY Role) FROM Employees

AVG(numeric_column)

Calculates the average value of a numerical column per partition.

In each partition, every record will display the average value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, AVG(Earnings) OVER (PARTITION BY Role) FROM Employees

MEDIAN(numeric_column)

Calculates the median value of a numerical column per partition.

In each partition, every record will display the median value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MEDIAN(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEV(numeric_column)

Calculates the standard deviation of a numerical column per partition.

In each partition, every record will display the standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEV(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEVP(numeric_column)

Calculates the population standard deviation of a numerical column per partition.

In each partition, every record will display the population standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEVP(Earnings) OVER (PARTITION BY Role) FROM Employees

VAR(numeric_column)

Calculates the statistical standard variance of a numerical column per partition.

In each partition, every record will display the statistical standard variance of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VAR(Earnings) OVER (PARTITION BY Role) FROM Employees

VARP(numeric_column)

Calculates the variance population of a numerical column per partition.

In each partition, every record will display the variance population of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VARP(Earnings) OVER (PARTITION BY Role) FROM Employees

Ranking

These window functions rank records that fall within the window and its partitions.

RANK()

Assigns a rank number to each record in a window based on the value of the column specified in the required ORDER BY clause.

If two or more records have an equal value in the in ranked column, they all receive the same rank number and the rank count increments internally, skipping ahead one rank number for each record with a duplicate value in the ORDER BY column.

SELECT Id, Email, RANK() OVER (ORDER BY Email) AS Rank FROM Leads

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT Id, Email, RANK() OVER (PARTITION BY Id ORDER BY Email) AS Rank FROM Leads

DENSE_RANK()

Operates like the RANK() function, but it doesn't increment the internal rank counter for each record with a duplicate value in the ranked column.

This means that, while records with identical values in the ORDER BY column still share a rank number, the function never skips a rank number.

SELECT Id, Email, DENSE_RANK() OVER (PARTITION BY Id ORDER BY Email) AS Rank FROM Leads

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT Id, Email, DENSE_RANK() OVER (PARTITION BY Id ORDER BY Email) AS Rank FROM Leads

ROW_NUMBER()

Calculates a row number for each record. An ORDER BY clause in the OVER clause is required.

SELECT Name, Role, Earnings, ROW_NUMBER() OVER (ORDER BY Role) FROM Employees
If you define multiple partitions with PARTITION BY, a new set of row numbers are calculated for each partition.
SELECT Name, Role, Earnings, ROW_NUMBER() OVER (PARTITION BY Role ORDER BY Earnings) FROM Employees

NTILE()

Distributes rows of an ordered partition into a specified number of approximately equal groups, or buckets. It assigns each group a bucket number starting from one. For each row in a group, the NTILE() function assigns a bucket number representing the group to which the row belongs.

The syntax of NTILE() is:

NTILE(buckets) OVER (
    [PARTITION BY partition_expression, ... ]
    ORDER BY sort_expression [ASC | DESC], ...
)
The following are paramaters that NTILE() supports:

  • buckets: The number of buckets into which the rows are divided. The buckets can be an expression or subquery that evaluates to a positive integer. It cannot be a window function.
  • PARTITION BY: distributes rows of a result set into partitions to which the NTILE() function is applied.
  • ORDER BY is clause that specifies the logical order of rows in each partition to which the NTILE() is applied.

If the number of rows is not divisible by the buckets, the NTILE() function returns groups of two sizes with the difference by one. The larger groups always precede the smaller group in the order set by ORDER BY in the OVER() clause.

If the total of rows is divisible by the number of buckets, the function divides the rows evenly among buckets. The following statement creates a new table named ntile_demo that stores 10 integers:

CREATE TABLE sales.ntile_demo (
	v INT NOT NULL
);
	
INSERT INTO sales.ntile_demo(v) 
VALUES(1),(2),(3),(4),(5),(6),(7),(8),(9),(10);	
	
SELECT * FROM sales.ntile_demo;
This statement uses the NTILE() function to divide ten rows into three groups:
SELECT 
	v, 
	NTILE (3) OVER (
		ORDER BY v
	) buckets
FROM 
	sales.ntile_demo;

Analytical

These window functions perform analytical operations on the records within the window.

PERCENT_RANK()

Calculates the relative rank SQL Percentile of each row. It returns values greater than zero, but the maximum value is one. It does not count any NULL values. This function is nondeterministic.

The syntax of PERCENT_RANK() is:

PERCENT_RANK() OVER (
      [PARTITION BY partition_expression, ... ]
      ORDER BY sort_expression [ASC | DESC], ...
  )
  
This syntax uses the following parameters.

  • PARTITION BY: By default, SQL Server treats the whole data set as a single set. You can specify the PARTITION BY clause to divide data into multiple sets. The Percent_Rank function performs the analytical calculations on each set. This parameter is optional.
  • ORDER BY: Sorts the data in either ascending or descending order. This parameter is required.

CData Python Connector for Marketo

Table-Valued Functions

Table-valued functions are functions that return a table (rowset).

Note: Table-valued function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with these functions may not be optimal.

Table-Valued Function Clauses

CROSS APPLY

The CROSS APPLY operator is used to perform a subquery on each row of a table or resultset produced by a preceding table expression.

<table_expression_1> CROSS APPLY <table_expression_2>

The second table expression can reference results from the first table expression to create derived columns or an altered recordset via a table-valued function.

Each resulting record is an instance of the record it's splitting, with all the same column values, except for the column(s) containing the value split by the function.

WITH

The WITH clause is used alongside certain table-valued functions to match against constructs within the structure being split (keys, element names, attribute names, etc.) and/or to specify metadata for the columns generated from the function.
SELECT A.ColumnName, X.DerivedColumnName FROM TableName A CROSS APPLY <table-valued function> WITH (DerivedColumnName varchar(255)) AS X

Table-Valued Functions

STRING_SPLIT(input_text,delimiter)

Takes each record in the recordset of the preceding table expression, splits the column containing delimiters (input_text) into substrings separated by the delimiter, and returns one record per substring.

  • input_text: A column whose value you want to parse.
  • delimiter: The character used to split the value of the column specified in input_text.

Suppose there is a column called "SplitColumn" with the following content:

One-Two-Three
To unpack this value across multiple records:
SELECT A.ID, X.Value FROM [TableWithDelimitedStringField] A CROSS APPLY STRING_SPLIT(A.SplitColumn,'-') WITH (Value VARCHAR(255)) AS X

-- Results:
-----------
|ID|Value|
|1|One|
|1|Two|
|1|Three|

JSONTABLE(json_content,[jsonpath])

For each record in the recordset of the preceding table expression, returns one record for each instance of a key in a JSON array (json_content) that matches the key(s) specified in the WITH clause, at the scope specified by the "jsonpath" input.

  • json_content: A JSON "table" (array of objects). The contents can nest, but this must be a single JSON array, not any other JSON structure, at the root level.
    • The values of every instance of the key(s) provided in the WITH clause are retrievable only for substructures which are immediate children of the root-level JSON array.
  • jsonpath: An optional JSONPath query defining the scope, within the json_content array, that you want to pull content from. The JSON key(s) identified in the WITH clause must exist at the scope defined in this parameter. This defaults to the JSON root ($).

Consider a sample table with a single record, including an ID column and column with JSON content called "JSONColumn" with the following content:

[
	{
		"name": "Samuel",
		"email": "sam@gmail.com",
		"extrainfo": {
			"city": "Seattle"
		}
	},
	{
		"name": "Katherine",
		"email": "kat@gmail.com",
	},
	{
		"name": "George",
		"email": "george23@gmail.com",
	},
	{
		"name": "Carlos",
		"email": "carlos32@gmail.com",
	}
]

To extract all values for a certain key, specify the scope in the JSONTABLE function and provide the desired key(s) in the WITH clause.

SELECT A.ID, X.name FROM [TableWithJSONField] A CROSS APPLY JSONTABLE(A.JSONColumn) WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1 |Samuel|
|1 |Katherine|
|1 |George|
|1 |Carlos|

XMLTABLE(xml_content,[xpath,child_type])

For each record in the resultset of the preceding table expression, returns one record for each of the elements and/or attributes in an XML structure (xml_content) that match the tag name(s) and/or attribute name(s) specified in the WITH clause, at the scope specified in the "xpath" input.

  • xml_content: A column containing an XML structure.
  • xpath: An optional XPath that specifies the scope within the XML structure at which the connector extracts content matching the tag/attribute name(s) specified in the WITH clause.
    • When extracting the content of sub-elements, the connector can retrieve all content from tags at the root level, (depth 0) immediate children of the root (depth 1), and children of those children (depth 2).
    • When extracting element attribute content, the connector can retrieve all content from tags containing the specified attribute at the root level (depth 0) and from immediate children of root-level elements (depth 1).
  • child_type: An optional parameter that specifies the part(s) of the parent element (specified in the xpath input) that the column(s) provided in the WITH clause are checked against to identify content.
    • You can supply the following values:
      • 0: The column(s) in the WITH clause are checked for matches against the parent element's attribute names and sub-element tag names.
      • 1: The column(s) in the WITH clause are checked for matches against the parent element's attribute names.
      • 2: The column(s) in the WITH clause are checked for matches against the parent element's sub-element tag names.
    • When not supplied, this defaults to 0.

Extracting Sub-Element Values

Consider a sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:
<shoppingList>
    <item>
        <name>Apples</name>
        <quantity>3</quantity>
        <unit>Kg</unit>
    </item>
    <item>
        <name>Bread</name>
        <quantity>2</quantity>
        <unit>Loaf</unit>
		<extrainfo>
			<Type>Whole-Grain</Type>
		</extrainfo>
    </item>
    <item>
        <name>Milk</name>
        <quantity>1</quantity>
        <unit>Carton</unit>
    </item>
    <item>
        <name>Eggs</name>
        <quantity>12</quantity>
        <unit></unit>
    </item>
</shoppingList>

To extract sub-element content, specify the scope in the XMLTABLE function and provide the desired element name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 1.

SELECT A.ID, X.name FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/item') WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1|Apples|
|1|Bread|
|1|Milk|
|1|Eggs|

Extracting Values Using Element Tag Attributes

Suppose you have this sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:

<restaurant>
  <dish type="appetizer">
    <name lang="en">Caprese Salad</name>
    <chef>Chef Giovanni</chef>
    <price currency="USD">9.99</price>
  </dish>
  <dish type="main-course">
    <name lang="fr">Boeuf Bourguignon</name>
    <chef>Chef Marie</chef>
    <price currency="EUR">19.99</price>
  </dish>
  <dish type="dessert">
    <name lang="es">Tres Leches Cake</name>
    <chef>Chef Alejandro</chef>
    <price currency="MXN">89.99</price>
  </dish>
</restaurant>

To extract attribute content, specify the scope in the XMLTABLE function and provide the desired attribute name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 2.

SELECT A.ID, X.type FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/dish') WITH (type VARCHAR(255)) AS X

-- Results: 
|ID|type|
---------
|1|appetizer|
|1|main-course|
|1|dessert|

CSVTABLE(csv_content,[delimiter])

For each record in the resultset of the preceding table expression, reads from a column that contains a CSV table (csv_content) and for each record in that CSV table, returns one record containing the value of the CSV column(s) specified in the WITH clause.

  • csv_content: A column containing a CSV table.
  • delimiter: An optional custom delimiter (instead of a comma) which splits the CSV content contained in the csv_content input.

Consider a sample table with a single record, including an ID column and a column containing CSV table called "CSVContent" with the following content:

Name;Category;Price
Apple;Fruit;0.99
Spaghetti;Pasta;5.49
Chicken Breast;Meat;8.99
Broccoli;Vegetable;2.49

To select every value in the "Name" column and account for the custom delimiter (;):

SELECT A.ID, X.Name FROM [TableWithCSVField] A CROSS APPLY CSVTABLE(A.CSVContent,';') WITH (Name VARCHAR(255)) AS X

-- Results:
|ID|Name|
-----------
|1|Apple|
|1|Spaghetti|
|1|Chicken Breast|
|1|Broccoli|

CData Python Connector for Marketo

INSERT Statements

To create new records, use INSERT statements.

INSERT Syntax

The INSERT statement specifies the columns to be inserted and the new column values. You can specify the column values in a comma-separated list in the VALUES clause, as shown in the following example:

INSERT INTO <table_name> 
( <column_reference> [ , ... ] )
VALUES 
( { <expression> | NULL } [ , ... ] ) 
  

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
The following is an example query:
INSERT INTO Leads (Email) VALUES ('John')

CData Python Connector for Marketo

UPDATE Statements

To modify existing records, use UPDATE statements.

Update Syntax

The UPDATE statement takes as input a comma-separated list of columns and new column values as name-value pairs in the SET clause, as shown in the following example:

UPDATE <table_name> SET <select_statement> | {<column_reference> = <expression> [ , ... ]} WHERE { Id = <expression>  } [ { AND | OR } ... ] 

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

UPDATE Leads SET Email='John' WHERE Id = @myId

CData Python Connector for Marketo

UPSERT Statements

An UPSERT statement updates an existing record or creates a new record if an existing record is not identified.

UPSERT Syntax

The UPSERT syntax is the same as for INSERT. Marketo uses the input provided in the VALUES clause to determine whether the record already exists. If the record does not exist, all columns required to insert the record must be specified. See Data Model for any table-specific information.

UPSERT INTO <table_name> 
( <column_reference> [ , ... ] )
VALUES 
( { <expression> | NULL } [ , ... ] ) 
  

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

UPSERT INTO Leads (Email) VALUES ('John')

CData Python Connector for Marketo

DELETE Statements

To delete information from a table, use DELETE statements.

DELETE Syntax

The DELETE statement requires the table name in the FROM clause and the row's primary key in the WHERE clause, as shown in the following example:

<delete_statement> ::= DELETE FROM <table_name> WHERE { Id = <expression> } [ { AND | OR } ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

DELETE FROM Leads WHERE Id = @myId

CData Python Connector for Marketo

CACHE Statements

When caching is enabled, CACHE statements provide complete control over the data that is cached and the table to which it is cached. The CACHE statement executes the SELECT statement specified and caches its results to a table with the same name in the cache database or to table specified in <cached_table_name>. The connector updates or inserts rows to the cache depending on whether or not they already exist in the cache, so the primary key, which is used to identify existing rows, must be included in the selected columns.

See Caching Data for more information on different caching strategies.

CACHE Statement Syntax

The cache statement may include the following options that alter its behavior:

CACHE [ <cached_table_name> ] [ WITH TRUNCATE | AUTOCOMMIT | SCHEMA ONLY | DROP EXISTING | ALTER SCHEMA ] <select_statement> 

WITH TRUNCATE

If this option is set, the connector removes existing rows in the cache table before adding the selected rows. Use this option if you want to refresh the entire cache table but keep its existing schema.

AUTOCOMMIT

If this option is set, the connector commits each row individually. Use this option if you want to ignore the rows that could not be cached due to some reason. By default, the entire result set is cached as a single transaction.

DROP EXISTING

If this option is set, the connector drops the existing cache table before caching the new results. Use this option if you want to refresh the entire cache table, including its schema.

SCHEMA ONLY

If this option is set, the connector creates the cache table based on the SELECT statement without executing the query.

ALTER SCHEMA

If this option is set, the connector alters the schema of the existing table in the cache if it does not match the schema of the SELECT statement. This option results in new columns or dropped columns, if the schema of the SELECT statement does not match the cached table.

Common Queries

Use the following cache statement to cache all rows of a table:

CACHE SELECT * FROM Leads

Use the following cache statement to cache all rows of a table into the cache table CachedLeads:

CACHE CachedLeads SELECT * FROM Leads

Use the following cache statement for incremental caching. The DateModified column may not exist in all tables. The cache statement shows how incremental caching would work if there were such a column. Also, notice that, in this case, the WITH TRUNCATE and DROP EXISTING options are specifically omitted, which would have deleted all existing rows.

CACHE CachedLeads SELECT * FROM Leads WHERE DateModified > '2013-04-04'

Use the following cache statements to create a table with all available columns that will then cache only a few of them. The sequence of statements cache only Id and Email even though the cache table CachedLeads has all the columns in Leads.

CACHE CachedLeads SCHEMA ONLY SELECT * FROM Leads
CACHE CachedLeads SELECT Id, Email FROM Leads

CData Python Connector for Marketo

EXECUTE Statements

To execute stored procedures, you can use EXECUTE or EXEC statements.

EXEC and EXECUTE assign stored procedure inputs, referenced by name, to values or parameter names.

Stored Procedure Syntax

To execute a stored procedure as an SQL statement, use the following syntax:

 
{ EXECUTE | EXEC } <stored_proc_name> 
{
  [ @ ] <input_name> = <expression>
} [ , ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

Example Statements

Reference stored procedure inputs by name:

EXECUTE my_proc @second = 2, @first = 1, @third = 3;

Execute a parameterized stored procedure statement:

EXECUTE my_proc second = @p1, first = @p2, third = @p3; 

CData Python Connector for Marketo

PIVOT and UNPIVOT

PIVOT and UNPIVOT can be used to change a table-valued expression into another table.

PIVOT

PIVOT rotates a table-value expression by turning unique values from one column into multiple columns in the output. PIVOT can run aggregations where required on any column value.
PIVOT Synax

 
"SELECT 'AverageCost' AS Cost_Sorted_By_Production_Days, [0], [1], [2], [3], [4]
FROM
(
SELECT DaysToManufacture, StandardCost
FROM Production.Product
) AS SourceTable
PIVOT
(
AVG(StandardCost)
FOR DaysToManufacture IN ([0], [1], [2], [3], [4])
) AS PivotTable;"

UNPIVOT

UNPIVOT carries out nearly the opposite to PIVOT by rotating columns of a table-valued expressions into column values.
UNPIVOT Sytax

 
"SELECT VendorID, Employee, Orders
FROM
(SELECT VendorID, Emp1, Emp2, Emp3, Emp4, Emp5
FROM pvt) p
UNPIVOT
(Orders FOR Employee IN
(Emp1, Emp2, Emp3, Emp4, Emp5)
)AS unpvt;"

For further information on PIVOT and UNPIVOT, see FROM clause plus JOIN, APPLY, PIVOT (Transact-SQL)

CData Python Connector for Marketo

INSERT INTO SELECT Statements

Use INSERT INTO SELECT queries to select a list of records from one table and insert those same records into another table as a group. Inserting batches of records in this way may result in improved query performance compared to using many individual INSERT INTO queries.

The table whose records are selected for insertion into another table can be either a real table or a user-defined temporary table.

Inserting Records from Real Tables

To insert a group of records from one real, non-temporary, source table into another destination table, you can use an INSERT INTO SELECT query. This type of query is formatted similarly to a standard INSERT INTO query, except the VALUES clause is substituted with a SELECT query targeting the source table. All records matched by the embedded SELECT query are inserted into the destination table.

If the source table and destination tables have different column names, you must map columns from the source table to the corresponding columns in the destination table you want to insert them into. Perform this mapping by specifying the destination table columns in the same order as the source table columns you want to match them with. For example:

INSERT INTO DestinationTable (A,B,C,D) SELECT Q,R,S,T FROM SourceTable

In this example, the first source column (Q) is inserted into the first destination column (A), the second source column (R) is inserted into the second destination column (B), and so on.

If the source table and destination table both have the same column list with the same names, you can use a streamlined query.

INSERT INTO DestinationTableWithSameColumns SELECT * FROM SourceTable

In this example, there is no need to specify a list of columns for either the source or destination table, because their metadata already matches.

Inserting Records from Temporary Tables

You can manually define and populate temporary tables to hold a list of records for later bulk insertion.

Populate the Temporary Table

To create a temporary table, you must give it a name ending in "#TEMP" and execute an INSERT INTO query using that name, as if that table already existed in the database. After executing the first INSERT INTO, the temporary table exists and can receive subsequent INSERTs. For example:

INSERT INTO Leads#TEMP (Email, MyCustomField__c) VALUES ('New Leads', '9000');
INSERT INTO Leads#TEMP (Email, MyCustomField__c) VALUES ('New Leads 2', '9001');
INSERT INTO Leads#TEMP (Email, MyCustomField__c) VALUES ('New Leads 3', '9002');

This creates a temporary table called Leads#TEMP with two columns and three rows of data. Since type cannot be determined on the temporary table itself, all values are considered strings and later converted to the proper type when they are inserted together into the real (non-temporary) table of interest.

Insert Temporary Table Contents into Real Tables

Once your temporary table is populated, execute an INSERT INTO SELECT query targeting the real (non-temporary) table you want to insert the temporary table's records into. This is formatted similarly to a standard INSERT INTO query, except the VALUES clause is substituted with a SELECT query targeting the matching columns in the temporary table. For example:

INSERT INTO Leads (Email, MyCustomField__c) SELECT Email, MyCustomField__c FROM Leads#TEMP
In this example, the full contents of Leads#TEMP are inserted into the Leads.

Results

The LastResultInfo#TEMP temporary table contains details about the most recently executed query that uses the contents of a temporary table in an embedded SELECT clause, as is the case for INSERT INTO SELECT queries that use a temporary table as the source of records. This table is cleared and repopulated each time such a query is executed. LastResultInfo#TEMP includes information such as whether the query in question succeeded, and how many rows were affected by the query.

Temporary Table Lifespan

Temporary tables only last as long as the connection remains open. When the connection to Marketo is closed, all temporary tables are cleared, including the LastResultInfo#TEMP table.

CData Python Connector for Marketo

UPDATE SELECT Statements

To perform multiple updates in a single request to Marketo,first use the INSERT INTO syntax to insert a temporary table of data into Marketo. This works by first populating a temporary table with the data you are going to submit to Marketo. Once you have all of the data you want to update, use UPDATE SELECT FROM to pass the temporary table data into the table in Marketo.

Populate the Temporary Table

The temporary table you are populating is dynamic and is created at run time the first time you insert to it. Temporary tables are denoted by a # appearing in their name. When using a temporary table to update, the temporary table must be named in the format [TableName]#TEMP, where TableName is the name of the table you are inserting to. For example:

INSERT INTO Leads#TEMP (Id, Name, MyCustomField__c) VALUES ('AX1000001', 'New Leads', '9000');
INSERT INTO Leads#TEMP (Id, Name, MyCustomField__c) VALUES ('AX1000002', 'New Leads 2', '9001');
INSERT INTO Leads#TEMP (Id, Name, MyCustomField__c) VALUES ('AX1000003', 'New Leads 3', '9002');

This creates a temporary table called Leads#TEMP with three columns and three rows of data. Since type cannot be determined on the temporary table itself, all values are stored in memory as strings. The values are later converted to the proper type when they are submitted to the Leads table.

Update the Actual Table

Once your temporary table is populated, it is now time to update the actual table in Marketo. You can do this by performing an UPDATE to the actual table and selecting the input data from the temporary table. For example:

UPDATE Leads (Id, Email, MyCustomField__c) SELECT Id, Email, MyCustomField__c FROM Leads#TEMP
In this example, the full contents of the Leads#TEMP table are passed into the Leads table. This results in fewer requests being submitted to Marketo since multiple updates may be submitted with each request, which is much better for performance if you have many records to update.

Results

The results of the query are stored in the LastResultInfo#TEMP temporary table. This table is cleared and repopulated the next time data is modified by passing in a temporary table. Please be aware that the LastResultInfo#TEMP table has no predefined schema. You need to check its metadata at run time before reading data.

Temporary Table Life Span

Temporary tables only last as long as the connection remains open. When the connection to Marketo is closed, all temporary tables are cleared, including the LastResultInfo#TEMP table.

CData Python Connector for Marketo

DELETE SELECT Statements

To perform multiple deletes in a single request to Marketo, first use the INSERT INTO syntax to create an in-memory temporary table of data to be deleted. Once you have all of the data you want to delete added to temporary table, use DELETE FROM syntax to delete data from the live table in Marketo. This functionality is also available via the standard Batch Processing API available in JDBC.

Populate the Temporary Table

The temporary table you are populating is dynamic and is created at run time the first time you insert to it. Temporary tables are denoted by a # appearing in their name. When using a temporary table to delete, the temporary table must be named in the format [TableName]#TEMP, where TableName is the name of the table you are inserting to. For example:

INSERT INTO Leads#TEMP (Id) VALUES ('AX1000001');
INSERT INTO Leads#TEMP (Id) VALUES ('AX1000002');
INSERT INTO Leads#TEMP (Id) VALUES ('AX1000003');

This creates a temporary table called Leads#TEMP with one column and three rows of data. Since type cannot be determined on the temporary table itself, all values are stored in memory as strings. They are later converted to the proper type when they are submitted to the Leads table.

Delete from the Actual Table

Once your temporary table is populated, it is now time to insert to the actual table in Marketo. You can do this by performing a DELETE from the actual table and selecting the input data from the temporary table. For example:

DELETE FROM Leads WHERE EXISTS SELECT Id FROM Leads#TEMP

In this example, the full contents of the Leads#TEMP table are passed into the Leads table. This results in fewer requests being submitted to Marketo since multiple deletes may be submitted with each request, which is much better for performance if you have many records to delete.

Results

The results of the query are stored in the LastResultInfo#TEMP temporary table. This table is cleared and repopulated the next time data is modified by passing in a temporary table. Please be aware that the LastResultInfo#TEMP table has no predefined schema. You need to check its metadata at run time before reading data.

Temporary Table Life Span

Temporary tables only last as long as the connection remains opened. When the connection to Marketo is closed, all temporary tables are cleared, including the LastResultInfo#TEMP table.

CData Python Connector for Marketo

Data Model

The CData Python Connector for Marketo models Marketo entities in relational Tables, Views, and Stored Procedures.

Note: The data model may differ when using the bulk API.

Tables

Tables describes the available tables. The CustomObjects, CustomActivities, Leads, StatiListLeads, Companies, NamedAccounts, Opportunities, Opportunityroles, SalesPersons and ProgramMembers tables are dynamic tables. The data model illustrates a sample of what your Marketo data model might look like. The actual data model is obtained dynamically based on your Marketo instance.

Views

Views describes the available read-only data, such as Activities_NewLead, WeeklyUsageStatistics and more.

Stored Procedures

Stored Procedures are function-like interfaces to Marketo. They can be used to create, update, modify, and retrieve information that cannot be modeled as tables or views. Some procedures are used to download/upload files and interact with the Bulk API.

CData Python Connector for Marketo

Tables

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

CData Python Connector for Marketo Tables

Name Description
Activities_Custom Sample custom activity.
Companies Query Companies in Marketo.
CustomObjects Query custom objects for a Marketo organization.
Emails Query emails for a Marketo organization.
EmailTemplates Query email templates for a Marketo organization.
Folders Create, update, delete, and query Folders for a Marketo organization.
Forms Create, update, delete and query Forms for a Marketo organization.
LandingPageContentSection Create, update, delete, and query Content Sections of Landing Pages for a Marketo organization.
LandingPages Create, update, delete and query Landing Pages for a Marketo organization.
LandingPageTemplates Create, update, delete and query Landing Page Templates for a Marketo organization.
Leads Query Leads of a Marketo organization.
NamedAccounts Query Named Accounts for a Marketo organization.
Opportunities Query Opportunities in Marketo.
OpportunityRoles Query Opportunity Roles in Marketo.
ProgramMembers Query Program Members in Marketo.
Programs Create, update, delete, and query Programs for a Marketo organization.
SalesPersons Query Sales Persons in Marketo.
SmartCampaigns Query Smart Campaigns for a Marketo organization.
SmartLists Query Smart Lists for a Marketo organization.
Snippets Create, update, delete and query snippets for a Marketo organization.
StaticListMembership Query relations of static lists and leads in Marketo.
StaticLists Query Static Lists for a Marketo organization.
Tokens Create, delete, and query Tokens for a Marketo organization.
Users Query users for a Marketo organization.
UserWorkspaceRoles Query user roles for each workspace in Marketo.

CData Python Connector for Marketo

Activities_Custom

Sample custom activity.

Each custom activity in your Marketo organization is returned as a separate table, apart from the main "Activities" table. Each table name is prefixed with 'Activity_' followed by the name of your custom activity.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

The following queries are related to a sample custom activity 'Activities_AttendConference'. This table may not exist in your Marketo instance.

	SELECT * FROM Activities_AttendConference WHERE ListId = '1014'

Insert


	INSERT INTO Activities_AttendConference (ActivityDate, LeadId, PrimaryAttributeValue, ConferenceDate, NumberOfAttendees) VALUES ('2024-01-01T00:01:00Z', 4, 'asd', '2024-01-10', 4)

Bulk

When UseBulkAPI is set to true the ActivityDate filter can be processed server-side. Sample queries:
	SELECT * FROM Activities_AttendConference WHERE ActivityDate > '2024-01-01T00:00:00Z'
	SELECT * FROM Activities_AttendConference WHERE ActivityDate >= '2024-01-01T00:00:00Z' AND ActivityDate <= '2024-03-01T00:00:00Z'
	SELECT * FROM Activities_AttendConference WHERE ListId = '1014' AND ActivityDate > '2024-01-01T00:00:00Z'
	SELECT * FROM Activities_AttendConference WHERE ListId = '1014' AND ActivityDate >' 2024-01-01T00:00:00Z'

Columns

Name Type ReadOnly Operators Description
ActivityId [KEY] String False

Unique id of the activity.

ActivityDate Datetime False

Datetime of the activity.

LeadId Int False =,IN

Id of the lead associated to the activity.

CampaignId Int False

Id of the associated Smart Campaign, if applicable.

ListId Int False =

Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

ConferenceName String False

ConferenceNameValue String False

ConferenceDate Datetime False

NumberOfAttendees Int False

CData Python Connector for Marketo

Companies

Query Companies in Marketo.

Note: This table is only available for Marketo subscriptions which do not have a native CRM sync enabled.

Select

Note: A server-side filter must be specified to query this table. Queries with the 'OR' operator are not supported.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

	SELECT * FROM Companies WHERE [Id]=10
	SELECT * FROM Companies WHERE [Id] IN (10, 11, 22)
	SELECT * FROM Companies WHERE [ExternalCompanyId]='CData'
	SELECT * FROM Companies WHERE [ExternalCompanyId] IN ('CData', 'Marketo')
	SELECT * FROM Companies WHERE [Company]='CData'
	SELECT * FROM Companies WHERE [Company] IN ('CData', 'Marketo')
	SELECT * FROM Companies WHERE [ExternalSalesPersonId]='CDataSales'
	SELECT * FROM Companies WHERE [ExternalSalesPersonId] IN ('CDataSales', 'MarketoSales')

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO Companies (ExternalCompanyId, Company, Industry, Website) VALUES ('cdata', 'CData', 'Tech', 'cdata.com'), ('marketo', 'Marketo', 'Tech', 'marketo.com')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE Companies SET Company='test_UPDATE_Companies', MainPhone='800-555-1234', AnnualRevenue='10000000.00' WHERE ExternalCompanyId='cdata'
	UPDATE Companies SET Company='CData', MainPhone='800-555-1234', AnnualRevenue='10000000.00' WHERE WHERE Id IN (2523781, 2523782, 2523783, 2523784)

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

	UPSERT INTO Companies (ExternalCompanyId, Company, Industry, Website) VALUES ('testUpsert', 'Google', 'Tech', 'google.com')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM Companies WHERE externalCompanyId='cdata'
	DELETE FROM Companies WHERE Id IN (2521059, 2521060, 123, 2521058)
	DELETE FROM Companies WHERE Company='testName'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =,IN

ExternalCompanyId String True =,IN

AnnualRevenue Decimal False

BillingCity String False

BillingCountry String False

BillingPostalCode String False

BillingState String False

BillingStreet String False

Company String False =,IN

CompanyNotes String False

ExternalSalesPersonId String False =,IN

Industry String False

MainPhone String False

NumberOfEmployees Int False

SicCode String False

Site String False

Website String False

CreatedAt Datetime True

UpdatedAt Datetime True

CData Python Connector for Marketo

CustomObjects

Query custom objects for a Marketo organization.

Each custom object in your Marketo organization is returned as a separate table. Each table name is prefixed with 'CustomObject_' followed by the name of your custom object.

Select

Note: A server-side filter must be specified to query this table. Queries with the 'OR' operator are not supported.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

The following queries are related to a sample custom object. This table may not exist in your Marketo instance.

	SELECT * FROM CustomObject_cdata WHERE MarketoGUID IN ('8207b49b-933c-40a0-995d-d12c90572a65', '71cce7c8-e7d1-4a00-8ea7-89806fee56be')
	SELECT * FROM CustomObject_cdata WHERE Mailaddress IN ('support@cdata.com', 'test@cdata.com')

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO CustomObject_cdata (Names) VALUES ('tes123')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE CustomObject_cdata SET Value1='testupdate' WHERE Mailaddress='test01@cdata.com'
	UPDATE CustomObject_cdata SET Value1='testupdateMultipleValues' WHERE Mailaddress IN ('test01@cdata.com', 'test02@cdata.com')

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

This table supports BULK UPSERT when UseBulkAPI is set to true.

	UPSERT INTO CustomObject_cdata (Mailaddress, Value1) VALUES ('test01New@cdata.com', 'test01')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM [CustomObject_cdata] WHERE MarketoGUID='8207b49b-933c-40a0-995d-d12c90572a65'
	DELETE FROM [CustomObject_cdata] WHERE MarketoGUID IN ('980415e9-3cf0-4168-ae99-8cf3c613c83b', '71cce7c8-e7d1-4a00-8ea7-89806fee56be')
	DELETE FROM [CustomObject_cdata] WHERE Mailaddress='test@cdata.com'
	DELETE FROM [CustomObject_cdata] WHERE Mailaddress IN ('test1@cdata.com', 'test2@cdata.com')

Bulk

When UseBulkAPI is set to true the UpdateAt filter can be processed server-side, in addition to that the following extra filters are available:

Name TypeReadOnlyOperators Description
ListIdIntTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided static list Id.

ListNameStringTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided static list name.

SmartListIdIntTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided smart list Id.

SmartListNameStringTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided smart list name.

Sample queries:

	SELECT * FROM CustomObject_cdata WHERE UpdatedAt>'2024-04-01T00:00:00Z'
	SELECT * FROM CustomObject_cdata WHERE UpdatedAt>'2024-04-01T00:00:00Z' AND UpdatedAt<'2024-09-01T00:00:00Z'
	SELECT * FROM CustomObject_cdata WHERE ListId=2

Columns

Name Type ReadOnly Operators Description
MarketoGUID [KEY] String True =,IN

UpdatedAt Datetime True

The datetime when the custom object was last updated.

CreatedAt Datetime True

Mailaddress String False =,IN

Value1 String False

CData Python Connector for Marketo

Emails

Query emails for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

GetEmailFullContent can be used to retrieve the full content of an email.

UpdateEmailContent can be used to update the content content of an email.

UpdateEmailFullContent can be used to update the full content of an email.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM Emails WHERE Id=15457
	SELECT * FROM Emails WHERE Name='support@cdata.com'
	SELECT * FROM Emails WHERE FolderId=26
	SELECT * FROM Emails WHERE UpdatedAt >= '2023-03-22 00:09:14.0' AND UpdatedAt <= '2023-03-22 01:49:03.0'

Insert


	INSERT INTO Emails (Name, TemplateId, FolderId, FolderType) VALUES ('My Email', 1037, 5111, 'Program')

Update


	UPDATE Emails SET Name='CRUD Test', Description='Testing CRUD' WHERE Id=23852

Delete


	DELETE FROM Emails WHERE Id=23838
	DELETE FROM Emails WHERE Id=23759 AND Status='approved'
	DELETE FROM Emails WHERE Id IN (17008, 23764) AND Status='draft'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the email.

Status [KEY] String True =

The status of the email, draft or approved version.

Name String False =

The name of the email.

Description String False

The description of the email.

Subject String False

The email subject.

FromName String False

The from name.

FromEmail String False

The from email address.

ReplyEmail String False

The reply email address.

PreHeader String False

The pre-header text for the email.

URL String True

The URL of the asset in the Marketo UI.

TemplateId Int False

The template associated with the email.

PublishToMSI Bool True

Identifies whether the email is published.

Version Int True

The Template version type.

Operational Bool False

Identifies whether the email is operational.

TextOnly Bool False

Identifies whether the email is text only.

WebView Bool False

Identifies whether the email is web view.

AutoCopyToText Bool False

Identifies whether the email is auto copied to text.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

WorkspaceName String True

Name of the workspace the email is part of.

CreatedAt Datetime True

Datetime the email was created.

UpdatedAt Datetime True =,>,<,>=,<=

Datetime the email was most recently updated.

CData Python Connector for Marketo

EmailTemplates

Query email templates for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

CreateEmailTemplate can be used to create email templates.

GetEmailTemplateContent can be used to retrieve the email template content.

UpdateEmailTemplateContent can be used to update the email template content.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM EmailTemplates WHERE ID=1038
	SELECT * FROM EmailTemplates WHERE Name='Test Template 3'
	SELECT * FROM EmailTemplates WHERE Status='approved'
	SELECT * FROM EmailTemplates WHERE ID=1038 AND Status='approved'

Update


	UPDATE EmailTemplates SET Description='test update' WHERE Id=1039

Delete


	DELETE FROM EmailTemplates WHERE Id=1014
	DELETE FROM EmailTemplates WHERE Id=1034 AND Status='draft'
	DELETE FROM EmailTemplates WHERE Name='Serenity (Marketo Starter Template)

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The id of the asset.

Status [KEY] String True =

Status of the email template, draft or approved versions.

Name String False =

The name of the asset.

Description String False

The description of the asset.

URL String True

The URL of the asset in the Marketo UI.

Version Int True

The Template version type.

WorkspaceName String True

Name of the workspace the email template is part of.

FolderId Int True

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String True

The type of folder (Folder,Program)

CreatedAt Datetime True

The date and time the asset was created.

UpdatedAt Datetime True

The date and time the asset was last updated.

CData Python Connector for Marketo

Folders

Create, update, delete, and query Folders for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM Folders WHERE Name='Marketo8'
	SELECT * FROM Folders WHERE Name='Default'
	SELECT * FROM Folders WHERE Name='Default' AND WorkspaceName='Default'
	SELECT * FROM Folders WHERE MaxDepth=1;
	SELECT * FROM Folders WHERE ParentId=12 AND ParentType='Folder'
	SELECT * FROM Folders WHERE ParentId=12

Insert


	INSERT INTO Folders (Name, ParentId, ParentType, Description) VALUES ('newFolder1234567', 38, 'Folder', 'test insert description')

Update

Note: Folders of Type='Program' can not be updated.
	UPDATE Folders SET Description='test update folders2', IsArchive='true' WHERE Id IN (5910, 5911) AND Type='Folder'

Delete

Note: Folders of Type='Program' and folders with IsSystem=true can not be deleted.

	DELETE FROM Folders WHERE Id=5363 AND Type='Folder'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the folder.

Type [KEY] String False =

The type of the folder (Folder or Program).

Name String False =

The name of the folder.

Description String False

The description of the folder.

FolderType String True

The type of the folder (Revenue Cycle Model, Marketing Folder, List, Smart List).

ParentId Int False =

The Id of the parent folder.

ParentType String False =

The type of the parent folder.

Path String True

The path of a folder shows its hierarchy in the folder tree, similar to a Unix-style path.

WorkspaceName String True =

The name of the smart campaign workspace.

URL String True

The explicit URL of the asset in the designated instance.

IsSystem Bool True

Whether or not the folder is a system folder.

IsArchive Bool False

Whether or not the folder is archived.

AccessZoneId Int True

The access zone id

CreatedAt Datetime True

The date and time the folder was created.

UpdatedAt Datetime True

The date and time the folder was last updated.

MaxDepth Int True =

Mirror column used to specify the maximum folder depth to traverse. Will be ignored when filtering by Id or Name.

CData Python Connector for Marketo

Forms

Create, update, delete and query Forms for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM FORMS WHERE status='draft'
	SELECT * FROM FORMS WHERE Id=1001
	SELECT * FROM FORMS WHERE Name='Form1'
	SELECT * FROM FORMS WHERE Id=1001 AND Status='draft'
	SELECT * FROM FORMS WHERE FolderId=1089 AND FolderType='Program'
	SELECT * FROM FORMS WHERE FolderId=1002

Insert


	INSERT INTO Forms (Name, Description, FolderId, FolderType, FontFamily, FontSize, LabelPosition, Language, Locale, ProgressiveProfiling) 
	VALUES ('test insert form', 'test form description', 1089, 'Program', 'Arial', '12px', 'left', 'English', 'en_US', true)

Update


	UPDATE Forms SET Name='test update form', Description='Testing Update', FontSize='13px' WHERE Id=1016

Delete


	DELETE FROM Forms WHERE Id=1004
	DELETE FROM Forms WHERE Id=1004 AND Status='draft'
	DELETE FROM Forms WHERE Name IN ('test', 'My Snippet')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the form.

Status [KEY] String True =

Status of the form, draft or approved versions.

Name String False =

The name of the form.

Description String False

The description of the form.

URL String True

The URL of the form in the Marketo UI.

KnownVisitorTemplate String False

Template of the known visitor behavior for the form.

KnownVisitorType String False

Type of the known visitor behavior for the form.

Theme String False

CSS theme for the form to use.

Language String False

Language of the form.

Locale String False

Locale of the form.

ProgressiveProfiling Bool False

Whether progressive profiling is enabled for the form.

LabelPosition String False

Default positioning of labels.

ButtonLabel String False

Label text of the button.

ButtonWaitingLabel String False

Waiting text of the button.

ButtonLocation Int False

Location in pixels of the button relative to the left of the form.

FontFamily String False

font-family property for the form.

FontSize String False

font-size property of the form.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

WorkspaceId Int True

Workspace Id of the asset.

CreatedAt Datetime True

Datetime the form was created.

UpdatedAt Datetime True

Datetime the form was most recently updated.

ThankYouList String True

JSON array of ThankYouPage JSON objects.

CData Python Connector for Marketo

LandingPageContentSection

Create, update, delete, and query Content Sections of Landing Pages for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM LandingPageContentSection WHERE LandingPageId='2'
	SELECT * FROM LandingPageContentSection WHERE LandingPageId='2' AND status='draft'

Insert


	INSERT INTO LandingPageContentSection (LandingPageId, Content, Type, Height, Width, FormattingOptionsTop, FormattingOptionsLeft, Opacity, BorderColor, BackgroundColor, HideDesktop, HideMobile, ImageOpenNewWindow, FormattingOptionsZIndex) 
	VALUES (1009, '<html><body>Hello World!</body></html>', 'HTML', '100', '101', '1', '2', '0.8', '#ff00ff', '#00ffff', false, true, true, 1)

Update


	UPDATE LandingPageContentSection BorderColor='#ff0000', BackgroundColor='#0000ff', HideMobile='true', ImageOpenNewWindow='true', Type='HTML', FormattingOptionsTop='1', FormattingOptionsLeft='2', Width='101', HideDesktop='false', Opacity='0.8', Content='<html><body>Hello World!</body></html>', Height='100', FormattingOptionsZIndex='1'
	WHERE LandingPageId=1009 AND Id=1049

Delete


	DELETE FROM LandingPageContentSection WHERE LandingPageId=1009

Columns

Name Type ReadOnly Operators Description
Id [KEY] String True

Id of the content section.

LandingPageId [KEY] String False =

Id of the landing page to which the content section belongs to.

Status [KEY] String True =

Status filter for draft or approved versions.

Index Int True

Index of the content section. Index orients the elements from lowest to highest.

Type String False

Type of content section.

Content String False

Content of the section. Expected values vary based on type. Image: An image URL. RichText: HTML Content.

RawContent String True

Raw content of the section. Expected values vary based on type. Image: An image URL. RichText: HTML Content.

ContentType String True

Content of the section. Expected values vary based on type. Image: An image URL. RichText: HTML Content.

ContentURL String True

Content of the section. Expected values vary based on type. Image: An image URL. RichText: HTML Content.

LinkURL String False

RL parameter of a link type section.

FollowupType String False

Follow-up behavior of a form. Only available for form-type content sections. Defaults to form defined behavior.

FollowupValue String False

Where to follow-up on form submission. When followupType is lp, accepts the integer id of a landing page. For url, it accepts a url string.

Height String False

The height of the content.

MinHeight String True

The min height of the content.

Width String False

The width of the content.

MinWidth String True

The min width of the content.

FormattingOptionsTop String False

The top margin of the content.

FormattingOptionsLeft String False

The left margin of the content.

Opacity String False

The opacity of the content.

BorderWidth String False

The border width of the content.

BorderStyle String False

The border style of the content.

BorderColor String False

The border color of the content.

BackgroundColor String False

The background color of the content.

HideDesktop Bool False

Hide the section when displayed on a desktop browser. Default false.

HideMobile Bool False

Hide the section when displayed on a desktop browser. Default false.

ImageOpenNewWindow String False

ImageOpenNewWindow

FormattingOptionsZIndex String False

The z-index of the content.

CData Python Connector for Marketo

LandingPages

Create, update, delete and query Landing Pages for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM LandingPages WHERE status='approved'
	SELECT * FROM LandingPages WHERE folderId=1001
	SELECT * FROM LandingPages WHERE folderId=1001 AND status='draft'
	SELECT * FROM LandingPages WHERE name='string'

Insert


	INSERT INTO LandingPages (Name, CustomHeadHTML, Description, FacebookOgTags, FolderId, FolderType, Keywords, MobileEnabled, Robots, Template, Title)
	VALUES ('test insert landing page', '<!DOCTYPE html>\\n<html>\\n<body>\\n<h1>My landing page</h1>\\n<p>My landing page content.</p>\\n</body></html>', 'Testing  Insert operation', '', 1184, 'Program', '', true, 'index,  nofollow', 1, 'Insert Operation')	

Update


	UPDATE LandingPages SET Description='Testing Update', FacebookOgTags='', Keywords='',
	MobileEnabled=false, Name='Test Update', Robots='index, nofollow',Title='Updating Landing Page',
	CustomHeadHTML='<!DOCTYPE html>\n<html>\n<body>\n<h1>Updating Landing Page</h1>\n<p>Editing Landing Page</p>\n</body></html>'
	WHERE Id=1009

Delete

Note: Approved landing pages cannot be deleted. Use UnApproveAsset to revoke landing page approval.

	DELETE FROM LandingPages WHERE Id=1003
	DELETE FROM LandingPages WHERE Id=1003 WHERE status='draft'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the landing page.

Status [KEY] String True =

Status filter for draft or approved versions.

Name String False =

The name of the landing page.

Description String False

The description of the landing page.

Title String False

Title element of the landing page.

URL String True

The URL of the landing page in the Marketo UI.

ComputedURL String True

Computed URL of landing page.

WorkspaceName String False

Workspace name of the asset.

Template Int False

Id of the template used.

Robots String False

Robots directives to apply to the pages meta tags

MobileEnabled Bool False

Whether the page has mobile viewing enabled. Free-form pages only. Default false.

CustomHeadHTML String False

Any custom HTML to embed in the tag of the page.

Keywords String False

Keywords

FormPrefill Bool True

Boolean to toggle whether forms embedded in the page will prefill. Default false.

FacebookOgTags String False

Any OpenGraph meta tags to apply to the page.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime True

Datetime the landing page was created.

UpdatedAt Datetime True

Datetime the landing page was most recently updated.

CData Python Connector for Marketo

LandingPageTemplates

Create, update, delete and query Landing Page Templates for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side. The Name and Id filters will be processed server-side only if Status='approved'.

For example, the following queries are processed server-side:

	SELECT * FROM LandingPageTemplates WHERE Status='approved'
	SELECT * FROM LandingPageTemplates WHERE FolderId=19
	SELECT * FROM LandingPageTemplates WHERE Name='Test Insert 1' AND Status='approved'
	SELECT * FROM LandingPageTemplates WHERE Id=3 AND Status='approved'

Insert


	INSERT INTO LandingPageTemplates (Name, TemplateType, Description, EnableMunchkin, FolderId, FolderType)
	VALUES ('Test Insert 1', 'guided', 'Testing Insert', true, 19, 'Folder')

Update


	UPDATE LandingPageTemplates SET Description='Testing Update', EnableMunchkin=false, Name='Test Update' WHERE Id=1

Delete


	DELETE FROM LandingPageTemplates WHERE Id=2 AND Status='approved'
	DELETE FROM LandingPageTemplates WHERE Name='Test Insert 1'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the landing page template.

Status [KEY] String True =

Status of the landing page template, draft or approved versions.

Name String False =

The name of the landing page template.

Description String False

The description of the landing page template.

EnableMunchkin Bool False

Whether to enable munchkin on the derived pages. Defaults to true.

TemplateType String False

Type of template to create 'guided' or 'freeForm'

URL String True

The URL of the landing page in the Marketo UI.

WorkspaceName String True

Workspace name of the asset.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime True

Datetime the landing page template was created.

UpdatedAt Datetime True

Datetime the landing page template was most recently updated.

CData Python Connector for Marketo

Leads

Query Leads of a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

To optimize response time from the server, identify only the rows and columns you want to retrieve.

SELECT Id, FirstName, LastName FROM Leads WHERE Id IN (1, 2, 5, 10)

To achieve the best performance from this query, confine it to a list of known Leads within Marketo. Create a static list of Leads within Marketo, and then specify the ListId to retrieve them.

SELECT * FROM Leads WHERE ListId=1014
If you do not specify a filter, the driver retrieves all Leads, which might take a long time depending on the number of leads in your Marketo instance. Specify the LeadChangeDateTime pseudo-column to improve query performance by limiting the number of records requested.

Note: LeadChangeDateTime is a pseudo column that can only be used as a server-side filter. The API does not return values for this column. This is a result of the documented API behavior, see this forum post.

	SELECT * FROM Leads WHERE LeadChangeDateTime >= '2024-03-20T15:49:22.000Z'
	SELECT Id, LeadChangeDateTime, UpdatedAt FROM Leads WHERE LeadChangeDateTime >= '2024-01-17T14:32:37.000-05:00'

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO Leads (FirstName, LastName, Email, DoNotCall, DoNotCallReason, DateOfBirth) VALUES ('test', 'test', 'leadtestinser@cdata.com', true, 'Testing', '01/01/2000')
	INSERT INTO Leads (FirstName, LastName, Email, DoNotCall, DoNotCallReason, DateOfBirth) VALUES ('test1', 'test1', 'leadtest12@cdata.com', true, 'Testing', '01/01/2000'), ('test3', 'test3', 'leadtest32@cdata.com', true, 'Testing', '01/01/2000')
	INSERT INTO Leads (FirstName, LastName, Email, PartitionName) VALUES ('test', 'test', 'testPartitionNew@crud.com', 'testPartition')

To insert multiple leads at once via a #TEMP table, first create the #TEMP table, and then insert that table into your Leads table.

The following example creates a #TEMP table with three new Leads, and then inserts that #TEMP table into the Leads table:

	INSERT INTO Leads#TEMP (FirstName, LastName, Email, Company) VALUES ('John', 'Mangel', 'john@abc.com', 'ABC')
	INSERT INTO Leads#TEMP (FirstName, LastName, Email, Company) VALUES ('Steve', 'Puth', 'steve@abc.com', 'ABC')
	INSERT INTO Leads#TEMP (FirstName, LastName, Email, Company) VALUES ('Andrew', 'Stack', 'andy@abc', 'ABC')

	INSERT INTO Leads (FirstName, LastName, Email, Company) SELECT FirstName, LastName, Email, Company FROM Leads#TEMP

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

You can update any field in the Leads table that is not read-only. All critria fields are used as deduplication fields. Use a field for deduplication if it supports server side filtering, otherwise the Id column is used for deduplication.

	UPDATE Leads SET Company='TestCompany', NumberOfEmployees=100 WHERE Id='2521004'
	UPDATE Leads SET Title='My Job', Address='123 Main St' WHERE Email='leadtest12@cdata.com'
	UPDATE LEADS SET Email='testUpdateEmailByIdNew@leads.marketo' WHERE Id=2523020
	UPDATE LEADS SET TestKpQA='test' WHERE TestCustomfieldEmail='indritb1231@cdata.com'

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

This table supports BULK UPSERT when UseBulkAPI is set to true.

	UPSERT INTO Leads (Email, FirstName, LastName) VALUES ('testLeadUpsert@test.com', 'Lead', 'Upsert_InsertNewRecord')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM Leads WHERE Id=508
	DELETE FROM Leads WHERE Id IN (505, 506, 501, 507)
	DELETE FROM Leads WHERE Email='kk@gd.com'

GetDeleted

Note: The API returns only leads which have been deleted in the past 14 days.

	GetDeleted FROM Leads

GetDeleted supports filtering by UpdatedAt.

	GETDELETED FROM Leads WHERE UpdatedAt > '2024-01-01T01:00:00'
	GETDELETED FROM Leads WHERE UpdatedAt > '2024-01-01T01:00:00' AND UpdatedAt <= '2024-02-01T01:00:00' 

Bulk

When UseBulkAPI is set to true, the CreatedAt filter can be processed server-side. In addition, the following extra filters are available:

Name TypeReadOnlyOperators Description
StaticListNameStringTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided static list name.

SmartListIdIntTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided smart list Id.

SmartListNameStringTrue =

Mirror column that can be used only as a filter. Will retrieve custom objects related to the provided smart list name.

Sample queries:

	SELECT Id, LeadChangeDateTime, UpdatedAt FROM LEADS WHERE LeadChangeDateTime>'2024-01-17T14:28:57.000-05:00' AND LeadChangeDateTime<'2024-01-29T04:29:55.000-05:00'
	SELECT Id, CreatedAt FROM LEADS WHERE CreatedAt>='2024-01-17T14:27:20.000-05:00' AND CreatedAt<'2024-01-29T04:29:30.000-05:00'
	SELECT * FROM LEADS WHERE ListId=1062
	SELECT * FROM LEADS WHERE StaticListName='test0614'
	SELECT Id FROM LEADS WHERE SmartListId=1095
	SELECT Id FROM LEADS WHERE SmartListName='LeadSmartListTest'

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =,IN

The id of the lead.

CreatedAt Datetime True

The datetime when the lead was created.

UpdatedAt Datetime True

The datetime when the lead was last updated.

ProgramId Int True =

Mirror column that can be used only as a filter. Will retrieve Leads related to the given email ProgramId. Not available when UseBulkAPI=true.

ListId Int True =

Mirror column that can be used only as a filter. Will retrieve Leads related to the provided static list Id.

PartitionName String False

Mirror column that can be used only during inserts to specify the partition of the lead.

ItemURL String True

The URL of the lead in the Marketo UI.

LeadChangeDateTime Datetime True =,>,>=,<,<=

A server-side filter for the datetime when the Lead was updated, not necessarily the latest update.

AcmeAccessCode String False =,IN

AcquisitionProgramId Int False

Address String False

AnnualRevenue Decimal False

AnonymousIP String False

BillingCity String False

BillingCountry String False

BillingPostalCode String False

BillingState String False

BillingStreet String False

BlackListed Bool False

BlackListedCause String False

City String False

Company String False

ContactCompany Int True

Cookies String False =,IN

Country String False

Cstmfdtest1 String False =,IN

Cstmfdtest2 String False =,IN

DateOfBirth Date False

Department String False =,IN

DoNotCall Bool False

DoNotCallReason String False

Ecids String True

Email String False =,IN

EmailInvalid Bool False

EmailInvalidCause String False

EmailSuspended Bool False

EmailSuspendedAt Datetime False

EmailSuspendedCause String False =,IN

ExternalCompanyId String False =,IN

ExternalSalesPersonId String False =,IN

Fax String False

FirstName String False

FirstUTMCampaign String False

FirstUTMContent String False

FirstUTMMedium String False

FirstUTMSource String False

FirstUTMTerm String False

GdprMailableStatus String False

Industry String False

InferredCity String True

InferredCompany String True

InferredCountry String True

InferredMetropolitanArea String True

InferredPhoneAreaCode String True

InferredPostalCode String True

InferredStateRegion String True

IsAnonymous Bool False

IsLead Bool False

LastName String False

LatestUTMCampaign String False

LatestUTMContent String False

LatestUTMMedium String False

LatestUTMSource String False

LatestUTMterm String False

LeadPartitionId Int False =,IN

LeadPerson Int True

LeadRevenueCycleModelId Int False

LeadRevenueStageId Int False

LeadRole String False

LeadScore Int False

LeadSource String False

LeadStatus String False

MainPhone String False

MarketingSuspended Bool False

MarketingSuspendedCause String False

MiddleName String False

MktoAcquisitionDate Datetime False

MktoCompanyNotes String False

MktoDoNotCallCause String False

MktoIsCustomer Bool False

MktoIsPartner Bool False

MktoName String True =,IN

MktoPersonNotes String False

MobilePhone String False

NumberOfEmployees Int False

NumberofEmployeesProspect String False

OriginalReferrer String True

OriginalSearchEngine String True

OriginalSearchPhrase String True

OriginalSourceInfo String True

OriginalSourceType String True

PersonLevelEngagementScore Int False =,IN

PersonPrimaryLeadInterest Int True

PersonTimeZone String True

PersonType String False

Phone String False

PostalCode String False

Priority Int False

Rating String False

RegistrationSourceInfo String False

RegistrationSourceType String False

RelativeScore Int False

RelativeUrgency Int False

Salutation String False

SicCode String False

Site String False

State String False

Test String False =,IN

Test1 Bool False

Test98 String False =,IN

TestBoolean Bool False

TestCustomfieldEmail String False =,IN

TestFieldText1 String False =,IN

TestInteger Bool False

TestInteger_cf Int False =,IN

TestKpQA String False =,IN

Title String False

Unsubscribed Bool False

UnsubscribeDateFoFS String False

UnsubscribeDateUnleashed String False

UnsubscribedReason String False

UnsubscribeFoFS String False

UnsubscribeMarketing String False

UnsubscribeSales String False

UnsubscribeUnleashed String False

Urgency Double False

UTMTerm String False =,IN

Website String False

CData Python Connector for Marketo

NamedAccounts

Query Named Accounts for a Marketo organization.

Select

Note: A server-side filter must be specified to query this table. Queries with the 'OR' operator are not supported.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

	SELECT * FROM NamedAccounts WHERE Name='MyNamedAccount1'

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO NamedAccounts (Name, City, Country, DomainName, Industry) VALUES ('testNamedAccountInsert002', 'Chapel Hill', 'USA', 'MyDomain', 'Tech')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE NamedAccounts SET NumberOfEmployees=100, State='NC', AnnualRevenue='10000000.00' WHERE Name='testNamedAccountInsert002'
	UPDATE NamedAccounts SET NumberOfEmployees=999 WHERE MarketoGUID='197d0ecd-4264-4826-a44a-58a6df1f9ae5'

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

	UPSERT INTO NamedAccounts (Name, City, Country, DomainName, Industry) VALUES ('testUpsert', 'Chapel Hill', 'USA', 'MyDomain', 'Tech')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM NamedAccounts WHERE Name IN ('MyAccount2', 'MyAccount')
	DELETE FROM NamedAccounts WHERE marketoGUID IN ('04da404b-c4e9-40c8-867f-d9fae0062343', 'fd422222-a37f-4c2b-86df-3ed4c22e9c79')

Columns

Name Type ReadOnly Operators Description
MarketoGUID [KEY] String True =,IN

Id Int True =,IN

ApproximateNumOfPeople Int True =,IN

ParentAccountId Int True =,IN

AccountOwnerId Int False =,IN

AccountPhoneNumber String False =,IN

AddressPostalCode String False =,IN

AddressRegion String False =,IN

AnnualRevenue Decimal False =,IN

City String False =,IN

Country String False =,IN

CreatedAt Datetime True

CrmGuid String False =,IN

CrmOrgId Int False =,IN

DomainName String False =,IN

ExternalSourceId String False =,IN

ExternalSourceInstanceId String False =,IN

ExternalSourceKey String False =,IN

ExternalSourceType String False =,IN

Industry String False =,IN

LogoUrl String False =,IN

MembershipCount Int True =,IN

Name String False =,IN

NumberOfEmployees Int False =,IN

OpptyAmount Decimal True =,IN

OpptyCount Int True =,IN

SicCode String False =,IN

SourceType String False =,IN

State String False =,IN

Street1 String False =,IN

UpdatedAt Datetime True

CData Python Connector for Marketo

Opportunities

Query Opportunities in Marketo.

Note: This table is only available for Marketo subscriptions which do not have a native CRM sync enabled.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

Note: A filter must be specified when retrieving Opportunities.

	SELECT * FROM Opportunities WHERE ExternalOpportunityId='test2'
	SELECT * FROM Opportunities WHERE ExternalCompanyId='CData'

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO Opportunities (ExternalOpportunityId, Description, ExternalCompanyId, Name) VALUES ('testOpportunitiesInsert001', 'First Opportunity', 'cdata', 'Opp')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE Opportunities SET IsWon=true, FiscalYear=2016, Amount='1000.00' WHERE ExternalOpportunityId='testOpportunitiesInsert001'
	UPDATE Opportunities SET IsWon=false, FiscalYear=2017, Amount='1000.00' WHERE ExternalCompanyId='testInsert_ExternalCompanyId_012'

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

	UPSERT INTO Opportunities (ExternalOpportunityId, Description, ExternalCompanyId, Name) VALUES ('testUpsert', 'First Opportunity', 'CData', 'Opp')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM Opportunities WHERE ExternalOpportunityId='CDATA2'
	DELETE FROM Opportunities WHERE marketoGUID IN ('c1bac835-e5d3-47cc-9c87-bd18fdf573f8', '04ecb93c-d140-4c38-96cc-1fc2821e91eb')

Columns

Name Type ReadOnly Operators Description
CreatedAt Datetime True

ExternalOpportunityId String True =,IN

MarketoGUID [KEY] String True =,IN

UpdatedAt Datetime True

Amount Decimal False

CloseDate Date False

Description String False

ExpectedRevenue Decimal False

ExternalCompanyId String False =,IN

ExternalCreatedDate Datetime False

ExternalSalesPersonId String False =,IN

Fiscal String False

FiscalQuarter Int False

FiscalYear Int False

ForecastCategory String False

ForecastCategoryName String False

IsClosed Bool False

IsWon Bool False

LastActivityDate Date False

LeadSource String False

Name String False

NextStep String False

Probability Int False

Quantity Double False

Stage String False

Type String False

CData Python Connector for Marketo

OpportunityRoles

Query Opportunity Roles in Marketo.

Note: This table is only available for Marketo subscriptions which do not have a native CRM sync enabled.

Select

Note: A server-side filter must be specified to query this table. Queries with the 'OR' operator are not supported.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

	SELECT * FROM OpportunityRoles WHERE externalOpportunityId='test2'
	SELECT * FROM OpportunityRoles WHERE ExternalOpportunityId IN ('test@cdata.com', 'test2@cdata.com')

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO OpportunityRoles (ExternalOpportunityId, LeadId, IsPrimary, Role) VALUES ('testOpportunitiesInsert', '12', false, 'Test')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE OpportunityRoles SET IsPrimary=true WHERE MarketoGUID='c92c78dd-b869-40dc-bb2b-7cba112e8f50'
	UPDATE OpportunityRoles SET IsPrimary=false WHERE ExternalOpportunityId='testOpportunitiesInsert'
	UPDATE OpportunityRoles SET IsPrimary=false WHERE ExternalOpportunityId='testOpportunitiesInsert001' AND LeadId=12 AND Role='Test1'

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

	UPSERT INTO OpportunityRoles (ExternalOpportunityId, LeadId, IsPrimary, Role) VALUES ('testOpportunitiesInsert001', '4', false, 'Test')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM OpportunityRoles WHERE ExternalOpportunityId='CDATA1'
	DELETE FROM OpportunityRoles WHERE LeadId IN (4, 6)
	DELETE FROM OpportunityRoles WHERE ExternalOpportunityId='CDATA1' AND LeadId=6 AND Role='MyRole2'

Columns

Name Type ReadOnly Operators Description
CreatedAt Datetime True

MarketoGUID [KEY] String True =,IN

UpdatedAt Datetime True

ExternalCreatedDate Datetime False

ExternalOpportunityId String False =,IN

IsPrimary Bool False

LeadId Int False =,IN

Role String False

CData Python Connector for Marketo

ProgramMembers

Query Program Members in Marketo.

UpdateLeadProgramStatus can be used to update the membership status of a lead.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

Note: The REST API throws an error if you query program members for a program with more than 100'000 members. You can set UseBulkAPI to 'true' or 'auto' to automatically use the BULK API to retrieve the records.

	SELECT * FROM ProgramMembers WHERE ProgramId=1001

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO ProgramMembers (ProgramId, LeadId, StatusName) VALUES ('1001', 4, 'member')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE ProgramMembers SET WebinarURL='wsfldknfs1.com', RegistrationCode='adcff5f12-a7c7-11eb-bcbc-0242ac130001' WHERE LeadId='13' AND ProgramId='1001'
	UPDATE ProgramMembers SET WebinarURL='test@cdata.com/sync' WHERE ProgramId=1001 AND LeadId IN (28, 29, -2)
	UPDATE ProgramMembers SET WebinarURL='test@cdata.com/sync' WHERE ProgramId IN (1001, 1018) AND LeadId IN (12, 14)

Upsert

This table supports only BULK UPSERT when UseBulkAPI is set to true.

	UPSERT INTO OpportunityRoles (ExternalOpportunityId, LeadId, IsPrimary, Role) VALUES ('testOpportunitiesInsert001', '4', false, 'Test')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM ProgramMembers WHERE ProgramId=1001 AND LeadId=21
	DELETE FROM ProgramMembers WHERE ProgramId=1001 AND LeadId IN (28, 29, -2)
	DELETE FROM ProgramMembers WHERE ProgramId IN (1001, 1018) AND LeadId IN (12, 14, -2)
	DELETE FROM ProgramMembers WHERE ProgramId=1001 AND registrationCode='494164'

Columns

Name Type ReadOnly Operators Description
ProgramId [KEY] Int False =

Id of the program.

LeadId [KEY] Int False

Id of the lead.

UpdatedAt Datetime True

Datetime the records was most recently updated.

IsExhausted Bool True

NurtureCadence String True

StatusName String False =,IN

AttendanceLikelihood Int True

CreatedAt Datetime True

MembershipDate Datetime True

Program String True

ReachedSuccess Bool True =,IN

ReachedSuccessDate Datetime True

RegistrationLikelihood Int True

TrackName String True

WaitlistPriority Int True

AcquiredBy Bool False

FlowStep Int False =,IN

RegistrationCode String False

ReiNewCustomField String False =,IN

StatusReason String False

Test99 Int False =,IN

TestCustomObjFd String False =,IN

UTMSource String False =,IN

WebinarUrl String False

CData Python Connector for Marketo

Programs

Create, update, delete, and query Programs for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Programs WHERE Id=6201
	SELECT * FROM Programs WHERE Id IN (6201, 6200, 6152, 6117)
	SELECT * FROM Programs WHERE Name='duplicateProgramName'
	SELECT * FROM Programs WHERE WorkspaceName='test'
	SELECT * FROM Programs WHERE FolderId=48
	SELECT * FROM Programs WHERE FolderId=48 AND folderType='Folder'
	SELECT * FROM Programs WHERE UpdatedAt >' 2023-03-28T00:19:32.000-04:00'
	SELECT * FROM Programs WHERE UpdatedA >=' 2023-03-28T00:19:32.000-04:00'
	SELECT * FROM Programs WHERE UpdatedAt =' 2023-03-28T00:19:32.000-04:00'
	SELECT * FROM Programs WHERE UpdatedAt <=' 2023-03-28T00:19:32.000-04:00' AND UpdatedAt>'2021-08-11T08:10:01.000Z'
	SELECT * FROM Programs WHERE UpdatedAt < '2023-03-28T00:19:32.000-04:00' AND UpdatedAt>'2021-08-11T08:10:01.000Z'

Insert

Inserting a new program:
	INSERT INTO Programs (Name, FolderId, FolderType, Type, Description, Channel)
	VALUES ('test insert program', '6152', 'Program', 'Event', 'Test Insert Description', 'Tradeshow')

Update

Updating a program:
	UPDATE Programs SET Name='UpdatedProgram', Description='Updated Description' WHERE Id=6224

Delete


	DELETE FROM Programs WHERE Id=2383
	DELETE FROM Programs WHERE Name='Sample0034'
	DELETE FROM Programs WHERE ID IN (1064, 1065, 1066, 1067)
	DELETE FROM Programs WHERE Name IN ('Sample0035', 'Sample0036', 'Sample0037')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =,IN

The unique, Marketo-assigned identifier of the program.

Name String False =

The name of the program.

Description String False

The description of the program.

Type String False

The program type.

Channel String False

The channel the program is associated with.

WorkspaceName String True =,IN

The name of the workspace where the program is located.

URL String True

The URL reference to the program.

Status String True

The status of the program.

FolderId Int False =,IN

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime True

Datetime the channel was created.

UpdatedAt Datetime True =,>,<,>=,<=

Datetime the channel was most recently updated.

CData Python Connector for Marketo

SalesPersons

Query Sales Persons in Marketo.

Note: This table is only available for Marketo subscriptions which do not have a native CRM sync enabled.

Select

Note: A server-side filter must be specified to query this table. Queries with the 'OR' operator are not supported.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

	SELECT * FROM SalesPersons WHERE ExternalSalesPersonId='test SalesPerson'
	SELECT * FROM SalesPersons WHERE Id=2520998
	SELECT * FROM SalesPersons WHERE Email='sales@cdata.com'
	SELECT * FROM SalesPersons WHERE Email IN ('sales@cdata.com', 'testemail@cdata.com')

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO SalesPersons (ExternalSalesPersonId, Email, FirstName, LastName) VALUES ('testInsertSalesPersons001', 'sales@test.com', 'Sales', 'Person')

Update

This table supports BATCH UPDATE when UseBulkAPI is set to false.

	UPDATE SalesPersons SET Phone='800-123-4567', Title='Technical Sales', Email='sales@cdata.com' WHERE ExternalSalesPersonId='testInsertSalesPersons001'

Upsert

This table supports BATCH UPSERT when UseBulkAPI is set to false.

	UPSERT INTO SalesPersons (ExternalSalesPersonId, Email, FirstName, LastName) VALUES ('testInsertSalesPersons123', 'sales@test.com', 'Sales', 'Person')

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM SalesPersons WHERE ExternalSalesPersonId='sales@cdata.com'
	DELETE FROM SalesPersons WHERE ID='2521702'
	DELETE FROM SalesPersons WHERE ID IN (2521703, 2521704)
	DELETE FROM SalesPersons WHERE Email='salesDelteTest1@cdata.com'
	DELETE FROM SalesPersons WHERE Email IN ('salesDelteTest2@cdata.com', 'salesDelteTest3@cdata.com')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =,IN

ExternalSalesPersonId String True =,IN

Email String False =,IN

Fax String False

FirstName String False

LastName String False

MobilePhone String False

Phone String False

Title String False

CreatedAt Datetime True

UpdatedAt Datetime True

CData Python Connector for Marketo

SmartCampaigns

Query Smart Campaigns for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM SmartCampaigns WHERE IsActive='False'
	SELECT * FROM SmartCampaigns WHERE FolderId=5318 AND FolderType='Folder' AND IsActive='true'
	SELECT * FROM SmartCampaigns WHERE UpdatedAt >'2024-01-17T19:19:51Z'
	SELECT * FROM SmartCampaigns WHERE UpdatedAt >='2024-01-17T19:19:51Z'
	SELECT * FROM SmartCampaigns WHERE UpdatedAt <'2024-01-17T19:19:51Z'
	SELECT * FROM SmartCampaigns WHERE UpdatedAt <='2024-01-17T19:19:51Z'
	SELECT * FROM SmartCampaigns WHERE UpdatedAt = '2024-01-17T19:19:51Z'

Insert


	INSERT INTO SmartCampaigns (Name, FolderId, FolderType, Description)
    VALUES ('test insert smart campaign', '6152', 'Program', 'Test Insert Description')

Update


	UPDATE SmartCampaigns Set Name = 'UpdatedSmartCampaignName', Description = 'CData Campaign' WHERE Id = 1109

Delete


	DELETE FROM SmartCampaigns WHERE Id=1106
	DELETE FROM SmartCampaigns WHERE Name='JET - Test email link reports'
	DELETE FROM SmartCampaigns WHERE ID IN (1043, 5318)
	DELETE FROM SmartCampaigns WHERE Name IN ('TestCampaign1', 'RCM Success Only (v1) Known --> Engaged', 'Update Segmentation [1001](1001)')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

Id of the smart campaign.

ParentProgramId Int True

The id of the parent program. Present if smart campaign is under program or nested folder

Name String False

Name of the smart campaign.

Description String False

Description of the smart campaign.

Type String True

The type of the the smart campaign. Batch: has at least one filter and no triggers. Trigger: has at least one trigger. Default: has no smart list rules.

ComputedUrl String True

The Computed Url of the Smart Campaign

Status String True

The status of the smart campaign.

IsSystem Bool True

Whether smart campaign is system managed.

IsActive Bool True =

Whether smart campaign is active.

IsRequestable Bool True

Whether smart campaign is requestable (is active and contains 'Campaign is Requested' trigger with Source of 'Web Service API').

IsCommunicationLimitEnabled Bool True

Whether smart campaign communication limit is enabled (i.e. block non-operational emails).

MaxMembers Int True

The smart campaign membership limit.

SmartListId Int True

The Id of the smart campaign's child smart list.

FlowId Int True

The Id of the smart campaign's child flow.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderType String False =

The type of folder (Folder,Program)

WorkspaceName String True

Name of the workspace the smart campaign is part of.

QualificationRuleType String True

The type of qualification rule.

QualificationRuleInterval Int True

The interval of qualification rule. Only set when qualificationRuleType is 'interval'

QualificationRuleUnit String True

The unit of measure of qualification rule. Only set when qualificationRuleType is 'interval' = ['hour', 'day', 'week', 'month']

RecurrenceStartAt Datetime True

The datetime of the first scheduled campaign to run. Required if setting recurrence. Not required to create a smart campaign that has no recurrence.

RecurrenceEndAt Datetime True

The datetime after which no further runs will be automatically scheduled.

RecurrenceIntervalType String True

The recurrence interval. Not required to create a smart campaign that has no recurrence = ['Daily', 'Weekly', 'Monthly'].

RecurrenceInterval Int True

The number of interval units between recurrences.

RecurrenceWeekDayOnly Bool True

Only run smart campaign on weekdays. May only be set if intervalType is 'Daily'.

RecurrenceWeekDayMask String True

String array of empty or one or more of 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'. May only be set if intervalType is 'Weekly'.

RecurrenceDayOfMonth Int True

The day of the month to recur. Permissible range 1-31. May only be set if intervalType is 'Monthly' and dayOfWeek and weekOfMonth are unset.

RecurrenceDayOfWeek String True

The day of the week to recur. May only be set if dayOfMonth is not set, and weekOfMonth is set = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'].

RecurrenceWeekOfMonth Int True

The week of the month to recur. Permissible range 1-4. May only be set if dayOfMonth is not set, and dayOfWeek is set.

CreatedAt Datetime True

Datetime the smart campaign was created.

UpdatedAt Datetime True =,>,<,>=,<=

Datetime the smart campaign was most recently updated.

CData Python Connector for Marketo

SmartLists

Query Smart Lists for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM SmartLists WHERE Id='1093'
	SELECT * FROM SmartLists WHERE Name='LeadSmartListTest'
	SELECT * FROM SmartLists WHERE FolderId=7
	SELECT * FROM SmartLists WHERE ProgramId=6116
	SELECT * FROM SmartLists WHERE SmartCampaignId=1043
	SELECT * FROM SmartLists WHERE UpdatedAt = '2021-02-02T08:26:01Z'
	SELECT * FROM SmartLists WHERE UpdatedAt > '2021-02-02T08:26:01Z'
	SELECT * FROM SmartLists WHERE UpdatedAt >= '2021-02-02T08:26:01Z'
	SELECT * FROM SmartLists WHERE UpdatedAt <' 2022-06-08T06:17:24Z'
	SELECT * FROM SmartLists WHERE UpdatedAt <=' 2022-06-08T06:17:24Z'

Delete


	DELETE FROM SmartLists WHERE Id=3991
	DELETE FROM SmartLists WHERE ID IN (3560, 1266, 3999)
	DELETE FROM SmartLists WHERE Name='TestProgram Opportunities'
	DELETE FROM SmartLists WHERE Name IN ('test_from_ui', 'JET - email tests')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int False =

Id of the smart list.

Name String False =

Name of the smart list.

Description String False

Description of the smart list.

URL String False

The URL of the smart list in the Marketo UI

WorkspaceName String False

Name of the workspace the smart list is part of.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime False

Datetime the smart list was created.

UpdatedAt Datetime False =,>,<,>=,<=

Datetime the smart list was most recently updated.

SmartCampaignId Int False =

Mirror column that can be used only as a filter. Will retrieve SmartLists related to the given SmartCampaignId.

ProgramId Int False =

Mirror column that can be used only as a filter. Will retrieve SmartLists related to the given email ProgramId.

CData Python Connector for Marketo

Snippets

Create, update, delete and query snippets for a Marketo organization.

GetSnippetContent can be used to get the content of a snippet.

UpdateSnippetContent can be used to update the content of a snippet.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Snippets WHERE status='approved'
	SELECT * FROM Snippets WHERE Id='9'
	SELECT * FROM Snippets WHERE Id='9' AND Status='approved'

Insert


	INSERT INTO Snippets (Name, FolderId, FolderType, Description)
	VALUES ('test insert smart snippet', '31', 'Folder', 'Test Insert Description')

Update


	UPDATE Snippets SET Description='Testing Update', IsArchive='true', Name='Test Update' WHERE Id=12

Delete


	DELETE FROM Snippets WHERE Id=7
	DELETE FROM Snippets WHERE Name='My Snippet2'
	DELETE FROM Snippets WHERE ID IN (1, 9, 111)
	DELETE FROM Snippets WHERE Name IN ('My Snippet1', 'My Snippet11')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

The unique, Marketo-assigned identifier of the snippet.

Status [KEY] String True =

Status filter for draft or approved versions.

Name String False

The name of the snippet.

Description String False

The description of the snippet.

URL String True

The URL of the snippet in the Marketo UI.

WorkspaceName String True

Workspace name of the asset.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime True

Datetime the snippet was created.

UpdatedAt Datetime True

Datetime the snippet was most recently updated.

CData Python Connector for Marketo

StaticListMembership

Query relations of static lists and leads in Marketo.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM StaticListMembership WHERE ListId='1014'
	SELECT * FROM StaticListMembership WHERE LeadId='4'
Other queries partialy server-side:
	SELECT * FROM StaticListMembership WHERE ListId IN (1014, 1044, 1057)
	SELECT * FROM StaticListMembership WHERE LeadId IN (4, 9999, 1199433)
	SELECT * FROM StaticListMembership WHERE ListId=1014 AND LeadId=1199433
	SELECT * FROM StaticListMembership WHERE ListId=1014 AND LeadId IN (4, 9999, 1199433, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

Insert

This table supports BATCH INSERT when UseBulkAPI is set to false.

	INSERT INTO StaticListMemberShip (ListId, LeadId) VALUES (1014, 4)
	INSERT INTO StaticListMemberShip (ListId, LeadId) VALUES (1014, 4), (1014, 8), (1014, 12), (1014, 21)
	INSERT INTO StaticListMemberShip (ListId, LeadId) VALUES (1014, 4), (1014, 8), (1014, 12), (1014, 21), (1349, 4), (1349, 8), (1062, 8), (1349, 21), (1349, 22)

Delete

This table supports BATCH DELETE when UseBulkAPI is set to false.

	DELETE FROM StaticListMembership WHERE ListId=1057 AND LeadId=1083278
	DELETE FROM StaticListMembership WHERE ListId=1057 AND LeadId IN (1083292, 1083293, 1199432)
	DELETE FROM StaticListMembership WHERE ListId=1057
	DELETE FROM StaticListMembership WHERE LeadId=9999
	DELETE FROM StaticListMembership WHERE ListId IN (1057, 1568) AND LeadId IN (1083292, 1083293, 1199432, 1199433, 2521698)
	DELETE FROM StaticListMembership WHERE LeadId IN (1083292, 1083293, 1199432, 1199433, 2521698, 4, 5, 6, 7, 8, 9, 10)

Columns

Name Type ReadOnly Operators Description
ListId [KEY] Int False =

Id of the static list.

LeadId [KEY] Int False =

Id of the Lead.

CData Python Connector for Marketo

StaticLists

Query Static Lists for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM StaticLists WHERE Id='1556'
	SELECT * FROM StaticLists WHERE Name='Anti-Smart List'
	SELECT * FROM StaticLists WHERE FolderId='12'
	SELECT * FROM StaticLists WHERE FolderType='Folder'
	SELECT * FROM StaticLists WHERE FolderId='6113' AND FolderType='Program'
	SELECT * FROM StaticLists WHERE UpdatedAt = '2024-01-17T14:31:26.000'
	SELECT * FROM StaticLists WHERE UpdatedAt > '2023-06-07T08:00:01.000'
	SELECT * FROM StaticLists WHERE UpdatedAt >= '2023-06-07T08:00:01.000'
	SELECT * FROM StaticLists WHERE UpdatedAt < '2023-06-07T08:00:01.000'
	SELECT * FROM StaticLists WHERE UpdatedAt <= '2023-06-07T08:00:01.000'
	SELECT * FROM StaticLists WHERE UpdatedAt >= '2022-09-01T14:08:37.000' AND UpdatedAt < '2023-10-06T10:43:02.000'

Insert


	INSERT INTO StaticLists (Name, FolderId, FolderType, Description) VALUES ('test insert StaticLists', '6152', 'Program', 'Test Insert Description')

Update


	UPDATE StaticLists Set Name = 'UpdatedStaticList', Description = 'CData StaticList' WHERE Id = 1570

Delete


	DELETE FROM StaticLists WHERE Id=1561
	DELETE FROM StaticLists WHERE Name='test'
	DELETE FROM StaticLists WHERE ID IN (1563, 1564, 1565, 111)
	DELETE FROM StaticLists WHERE Name IN ('test46AU1gBBg1', 'asd', 'testsDxzV3BAqn')

Columns

Name Type ReadOnly Operators Description
Id [KEY] Int True =

Id of the static list.

Name String False =

Name of the static list.

Description String False

Description of the static list.

ComputedURL String True

Computed URL of static list.

WorkspaceName String True

Name of the workspace the static list is part of.

FolderId Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderName String True

The name of the folder

FolderType String False =

The type of folder (Folder,Program)

CreatedAt Datetime True

Datetime the static list was created.

UpdatedAt Datetime True =,>,<,>=,<=

Datetime the static list was most recently updated.

CData Python Connector for Marketo

Tokens

Create, delete, and query Tokens for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Tokens WHERE folderId=70
	SELECT * FROM Tokens WHERE folderId=70 and FolderType='Folder'

Insert


	INSERT INTO Tokens (Name, Type, Value, FolderId, FolderType) VALUES ('test insert token', 'text', 'test token value', 5365, 'Folder')

Delete


	DELETE FROM Tokens WHERE FolderId=1111 AND FolderType='Program' AND Name='testname2' AND Type='text'
	DELETE FROM Tokens WHERE FolderId=1112 AND FolderType='Program' AND Name='test'
	DELETE FROM Tokens WHERE FolderId=1112

Columns

Name Type ReadOnly Operators Description
Name [KEY] String False

The name of the Token.

Type [KEY] String False

The data type of the Token. The supported values are date, number, rich text, score, sfdc campaign and text

Value String False

The value of the Token.

ComputedURL String False

The Computed URL of the Token.

FolderId [KEY] Int False =

The unique, Marketo-assigned identifier of the parent folder/program.

FolderType [KEY] String False =

The type of folder (Folder,Program)

CData Python Connector for Marketo

Users

Query users for a Marketo organization.

Note: Insert queries are not supported. Users can be invited using the InviteUser stored procedure. Invited users can be retrieved using the GetInvitedUserById stored procedure. Invited users can be deleted using the DeleteInvitedUser stored procedure.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following queries are processed server-side:

	SELECT * FROM Users WHERE UserId='indritb@cdata.com'

Update


	UPDATE USERS SET EmailAddress='test_updated@cdata.com', FirstName='updated', LastName='updated', ExpiresAt='2024-12-12T00:00:00-01:00' WHERE UserId='test@cdata.com'

Delete


	DELETE FROM USERS WHERE UserId='test@cdata.com'

Columns

Name Type ReadOnly Operators Description
UserId [KEY] String True =

The user id in the form of an email address.

Id Integer True

The user identifier.

EmailAddress String False

The user's email address.

FirstName String False

The user's first name.

LastName String False

The user's last name.

APIOnly Boolean True

Whether the user is API-Only.

ExpiresAt Datetime False

The date and time when the user login expires.

LastLoginAt Datetime True

The date and time of user's most recent login.

FailedLogins Integer True

Count of user login failures.

FailedDeviceCode Integer True

Device code for user login failure.

IsLocked Boolean True

Whether the user account is locked.

LockedReason String True

Reason that user account is locked.

OptedIn Boolean True

Whether user has opted in.

UserWorkspaceRoles String True

Array of user roles and workspaces.

CData Python Connector for Marketo

UserWorkspaceRoles

Query user roles for each workspace in Marketo.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

For example, the following query is processed server-side:

	SELECT * FROM UserWorkspaceRoles WHERE UserId='indritb@cdata.com'

Insert


	INSERT INTO UserWorkspaceRoles (UserId, WorkspaceId, AccessRoleId) VALUES ('test@cdata.com', 0, 1002)

Delete


	DELETE FROM UserWorkspaceRoles WHERE UserId='test@cdata.com' AND AccessRoleId=1002 AND WorkspaceId=0;

Columns

Name Type ReadOnly Operators Description
UserId [KEY] String False =

The user id in the form of an email address.

AccessRoleId [KEY] Integer False

The user role id.

AccessRoleName String False

The user role name.

WorkspaceId [KEY] Integer False

The workspace id.

WorkspaceName String False

The workspace name.

CData Python Connector for Marketo

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 Python Connector for Marketo Views

Name Description
Activities Retrieve activities of different types after a specific datetime.
Activities_AddtoList Add a person/record to a list
Activities_AddtoNurture Add a lead to a nurture program
Activities_AddtoOpportunity Add to an Opportunity
Activities_Asksquestionsinwebinar Lead asks questions in a webinar event
Activities_Assetdownloadsinwebinar Lead downloads file/asset in a webinar event
Activities_Calltoactionclickedinwebinar Lead clicks on a Call to Action Link in a webinar event
Activities_CallWebhook Call a Webhook
Activities_ChangeDataValue Changed attribute value for a person/record
Activities_ChangeLeadPartition Lead partition is changed for a lead
Activities_ChangeNurtureCadence Change the nurture cadence for a lead
Activities_ChangeNurtureTrack Change the nurture track for a lead
Activities_ChangeProgramMemberData Change Program Member Data
Activities_ChangeRevenueStage Modify the value of a revenue stage field
Activities_ChangeRevenueStageManually Revenue stage is changed manually (e.g. Lead Database or Salesforce)
Activities_ChangeScore Modify the value of a score field
Activities_ChangeSegment Change segment (within a segmentation) for a lead
Activities_ChangeStatusinProgression Change a Status in an program progression
Activities_ClickEmail User clicks on a link in a Marketo Email
Activities_ClickLink User clicks link on a page
Activities_ClickSalesEmail User clicks on a link in a sales Email
Activities_CreateBuyingGroup Create Buying Group
Activities_DeleteLead Delete lead from Marketo database
Activities_EmailBounced Marketo Email is bounced for a lead
Activities_EmailBouncedSoft Campaign Email is bounced soft for a lead
Activities_EmailDelivered Marketo Email is delivered to a lead/contact
Activities_EngagedwithaConversationalFlow Lead engages with Dynamic Chat conversational flow
Activities_EngagedwithaDialogue Lead engages with Dynamic Chat dialogue
Activities_EngagedwithanAgentinConversationalFlow Lead engages with an Agent in Dynamic Chat conversational flow
Activities_EngagedwithanAgentinDialogue Lead engages with an Agent in Dynamic Chat dialogue
Activities_ExecuteCampaign Invoke an executable campaign
Activities_FillOutForm User fills out and submits a form on web page
Activities_Hasattendedevent Has attended event
Activities_InteractedwithDocumentinConversationalFlow Lead interacts with a document in Dynamic Chat conversational flow
Activities_InteractedwithDocumentinDialogue Lead interacts with a document in Dynamic Chat dialogue
Activities_MergeLeads Merge two or more leads into a single record
Activities_NewLead New person/record is added to the lead database
Activities_OpenEmail User opens Marketo Email
Activities_OpenSalesEmail User opens a sales Email
Activities_PushLeadtoMarketo Generated schema file.
Activities_ReachedConversationalFlowGoal Lead reaches a goal in Dynamic Chat conversational flow
Activities_ReachedDialogueGoal Lead reaches a goal in Dynamic Chat dialogue
Activities_ReceivedForwardtoFriendEmail User receives forwarded Email from friend
Activities_ReceiveSalesEmail Receive Email using Sales View (Outlook Plugin)
Activities_RemovefromList Remove this lead from a list
Activities_RemovefromOpportunity Remove from an Opportunity
Activities_ReplytoSalesEmail User replies to a sales email
Activities_RequestCampaign Campaign membership is requested for lead
Activities_Respondedtoapollinwebinar Lead responds to a poll in a webinar event
Activities_SalesEmailBounced Sales Email bounced
Activities_ScheduledMeetinginConversationalFlow Lead schedules an appointment in Dynamic Chat conversational flow
Activities_ScheduledMeetinginDialogue Lead schedules an appointment in Dynamic Chat dialogue
Activities_SendAlert Send alert Email about a lead
Activities_SendEmail Send Marketo Email to a person
Activities_SendSalesEmail Send Email using Sales View (Outlook Plugin)
Activities_SentForwardtoFriendEmail User Forwards Email to a person/record
Activities_ShareContent Share Content
Activities_UnsubscribeEmail Person unsubscribed from Marketo Emails
Activities_UpdateOpportunity Update an Opportunity
Activities_VisitWebpage User visits a web page
ActivityTypes Get available activity types.
ActivityTypesAttributes Get available activity type attributes.
BulkExportJobs Returns a list of bulk export jobs that were created in the past 7 days.
Campaigns Query Campaigns for a Marketo organization.
ChannelProgressionStatuses Query ProgressionStatuses of Channels for a Marketo organization.
Channels Query Channels for a Marketo organization.
DailyErrorStatistics Retrieve the count of each error users have encountered in the current day.
DailyUsageStatistics Retrieve the number of API calls that specific users have consumed in the current day.
EmailCCFields Query Emails CC Fields for a Marketo organization.
EmailTemplatesUsedBy Query email records which depend on a given email template.
Files Query files for a Marketo organization.
FolderContents Query Folders contents for a Marketo organization.
LandingPageTemplateContent Query landing page template contents for a Marketo organization.
LeadChanges Query Lead changes.
LeadChangesAttributes Query Lead changes attributes.
LeadChangesFields Query fields of lead changes.
LeadPartitions Query Lead Partitions for a Marketo organization.
LeadPrograms Query program membership for leads.
Lists Query Static Lists for a Marketo organization from the Leads API.
ListStaticMemberShip Query leads of a static list in Marketo.
ProgramCosts Query, insert and delete program cost relations for a Marketo organization.
ProgramTags Query tags relations for a Marketo organization.
Roles Query roles. Requires permissions: 'Access User Management Api' and 'Access Users'.
Segmentations Query segmentations for a Marketo organization.
Segments Query segments for a Marketo organization.
SmartListFilterConditions Query filters of smart lists in a Marketo organization.
SmartListFilters Query filters of smart lists in a Marketo organization.
SmartListTriggers Query rules of smart lists in a Marketo organization.
TagAllowedValues Query allowed values for tags in a Marketo organization.
Tags Query tags for a Marketo organization.
ThankYouList Query form thank you pages for a Marketo organization.
WeeklyErrorStatistics Retrieve the count of each error users have encountered in the past 7 days.
WeeklyUsageStatistics Retrieve the number of API calls that specific users have consumed in the past 7 days.
Workspaces Retrieve workspaces. Requires permissions: 'Access User Management Api' and 'Access Users'.

CData Python Connector for Marketo

Activities

Retrieve activities of different types after a specific datetime.

Each activity type in your Marketo organization is returned as a separate table. Each table name is prefixed with 'Activities_' followed by the name of the activity type. Activities are pushed as views. Custom activities are pushed as tables CustomActivities

All activities tables support BULK SELECT when UseBulkAPI is set to true.

Select

By default, this view retrieves all activity types from the creation of Marketo.

It is advised to provide a filter for ActivityTypeId and ActivityDate, or to make use of tables such as Activities_AddtoList, Activities_AddtoNurture, Activities_AddtoOpportunity, which are linked to a specific activity type.

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Activities WHERE ActivityDate > '2024-01-01T00:00:00Z'
	SELECT * FROM Activities WHERE ActivityDate >= ' 2024-01-01T00:00:00Z' AND ActivityDate <= '2024-03-01T00:00:00Z'
	SELECT * FROM Activities WHERE ListId = '1014' AND ActivityDate > '2024-01-01T00:00:00Z'
	SELECT * FROM Activities WHERE ListId = '1014' AND ActivityTypeId = '13'
	SELECT * FROM Activities WHERE ListId = '1014' AND ActivityTypeId = '13' AND ActivityDate > ' 2024-01-01T00:00:00Z'
	SELECT * FROM Activities WHERE ActivityTypeId = 24
	SELECT * FROM Activities WHERE ActivityTypeId IN (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13)

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
ActivityTypeId Int =,IN Id of the activity type.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
PrimaryAttributeValueId Int Id of the primary attribute field.
PrimaryAttributeValue String Value of the primary attribute.
Attributes String JSON aggregate containing the list of attribute key value pair for this activity.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

CData Python Connector for Marketo

Activities_AddtoList

Add a person/record to a list

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListID Int =
ListIDValue String
Source String

CData Python Connector for Marketo

Activities_AddtoNurture

Add a lead to a nurture program

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
TrackID Int
TrackName String

CData Python Connector for Marketo

Activities_AddtoOpportunity

Add to an Opportunity

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
OpptyID Int
OpptyIDValue String
IsPrimary Bool
Role String

CData Python Connector for Marketo

Activities_Asksquestionsinwebinar

Lead asks questions in a webinar event

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Question String
Questionwasanswered Bool

CData Python Connector for Marketo

Activities_Assetdownloadsinwebinar

Lead downloads file/asset in a webinar event

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Downloadedasset String

CData Python Connector for Marketo

Activities_Calltoactionclickedinwebinar

Lead clicks on a Call to Action Link in a webinar event

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Linkclicked String

CData Python Connector for Marketo

Activities_CallWebhook

Call a Webhook

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
Webhook Int
WebhookValue String
ErrorType Int
Response String

CData Python Connector for Marketo

Activities_ChangeDataValue

Changed attribute value for a person/record

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
AttributeName Int
AttributeNameValue String
NewValue String
OldValue String
Reason String
Source String
APIMethodName String
ModifyingUser String
RequestId String

CData Python Connector for Marketo

Activities_ChangeLeadPartition

Lead partition is changed for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
NewPartitionID Int
NewPartitionIDValue String
OldPartitionID Int
Reason String

CData Python Connector for Marketo

Activities_ChangeNurtureCadence

Change the nurture cadence for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
NewNurtureCadence String
PreviousNurtureCadence String

CData Python Connector for Marketo

Activities_ChangeNurtureTrack

Change the nurture track for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
NewTrackID Int
PreviousTrackID Int
TrackName String
PreviousTrackName String

CData Python Connector for Marketo

Activities_ChangeProgramMemberData

Change Program Member Data

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
AttributeName Int
NewValue String
OldValue String
Reason String
Source String
AttributeDisplayName String

CData Python Connector for Marketo

Activities_ChangeRevenueStage

Modify the value of a revenue stage field

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ModelID Int
ModelIDValue String
NewStageID Int
OldStageID Int
SLAExpiration Datetime
Reason String
NewStage String
OldStage String

CData Python Connector for Marketo

Activities_ChangeRevenueStageManually

Revenue stage is changed manually (e.g. Lead Database or Salesforce)

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
PrimaryAttributeValueId Int Id of the primary attribute field.
PrimaryAttributeValue String Value of the primary attribute.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

CData Python Connector for Marketo

Activities_ChangeScore

Modify the value of a score field

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ScoreName Int
ScoreNameValue String
ChangeValue String
NewValue Int
OldValue Int
Reason String

CData Python Connector for Marketo

Activities_ChangeSegment

Change segment (within a segmentation) for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
SegmentationID Int
SegmentationIDValue String
NewSegmentID Int

CData Python Connector for Marketo

Activities_ChangeStatusinProgression

Change a Status in an program progression

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
NewStatusID Int
OldStatusID Int
Reason String
AcquiredBy Bool
Success Bool
ProgramMemberID Int
ReachedSuccessDate Datetime
StatusReason String
WebinarURL String
RegistrationCode String
NewStatus String
OldStatus String

CData Python Connector for Marketo

Activities_ClickEmail

User clicks on a link in a Marketo Email

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
Link String
TestVariant Int
LinkID String
IsMobileDevice Bool
Device String
Platform String
UserAgent String
CampaignRunID Int
IsPredictive Bool
IsBotActivity Bool
BotActivityPattern String
Browser String

CData Python Connector for Marketo

Activities_ClickLink

CData Python Connector for Marketo

Activities_ClickSalesEmail

User clicks on a link in a sales Email

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Sentby String
Link String
TemplateID Int
CampaignRunID Int
IsPredictive Bool
Source String
SalesTemplateURL String
SalesCampaignURL String
SalesTemplateName String
SalesCampaignName String
MarketoSalesPersonID Int
SalesEmailURL String
IsBotActivity Bool
BotActivityPattern String

CData Python Connector for Marketo

Activities_CreateBuyingGroup

Create Buying Group

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
PrimaryAttributeValueId Int Id of the primary attribute field.
PrimaryAttributeValue String Value of the primary attribute.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
BuyingGroupId Int
BuyingGroupTemplateId Int
SolutionInterestId Int
MarketoGUID Int

CData Python Connector for Marketo

Activities_DeleteLead

Delete lead from Marketo database

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
LeadIDValue String
RemovefromCRM Bool
APIMethodName String
ModifyingUser String
RequestId String

CData Python Connector for Marketo

Activities_EmailBounced

Marketo Email is bounced for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
Category String
Details String
Subcategory String
Email String
TestVariant Int
CampaignRunID Int
HasPredictive Bool
Browser String
Platform String
Device String
UserAgent String

CData Python Connector for Marketo

Activities_EmailBouncedSoft

Campaign Email is bounced soft for a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
Category String
Details String
Subcategory String
Email String
TestVariant Int
CampaignRunID Int
HasPredictive Bool
Browser String
Platform String
Device String
UserAgent String

CData Python Connector for Marketo

Activities_EmailDelivered

Marketo Email is delivered to a lead/contact

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
TestVariant Int
CampaignRunID Int
HasPredictive Bool
Browser String
Platform String
Device String
UserAgent String

CData Python Connector for Marketo

Activities_EngagedwithaConversationalFlow

Lead engages with Dynamic Chat conversational flow

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ConversationalFlowID Int
ConversationalFlowIDValue String
ConversationalFlowName String
PageURL String
ConversationStatus String
ConversationTranscript String
ConversationSummary String
SourceType String
SourceName String
InteractedUIType String
Language String
Workspace String
DiscussedTopics String
ConversationScore Int

CData Python Connector for Marketo

Activities_EngagedwithaDialogue

Lead engages with Dynamic Chat dialogue

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
DialogueID Int
DialogueIDValue String
DialogueName String
PageURL String
ConversationStatus String
ConversationTranscript String
ConversationSummary String
Language String
Workspace String
DiscussedTopics String
ConversationScore Int

CData Python Connector for Marketo

Activities_EngagedwithanAgentinConversationalFlow

Lead engages with an Agent in Dynamic Chat conversational flow

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ConversationalFlowID Int
ConversationalFlowIDValue String
ConversationalFlowName String
PageURL String
AgentID Int
AgentEmail String
AgentName String
RoutingQueueID Int
RoutingQueueType String
RoutingQueueName String
ConversationTranscript String
ConversationSummary String
ConversationStatus String
DiscussedTopics String
ConversationScore Int

CData Python Connector for Marketo

Activities_EngagedwithanAgentinDialogue

Lead engages with an Agent in Dynamic Chat dialogue

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
DialogueID Int
DialogueIDValue String
DialogueName String
PageURL String
AgentID Int
AgentEmail String
AgentName String
RoutingQueueID Int
RoutingQueueType String
RoutingQueueName String
ConversationTranscript String
ConversationSummary String
ConversationStatus String
DiscussedTopics String
ConversationScore Int

CData Python Connector for Marketo

Activities_ExecuteCampaign

Invoke an executable campaign

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
CampaignIDValue String
Qualified Bool
UsedParentCampaignTokenContext Bool
TokenContextCampaignID Int

CData Python Connector for Marketo

Activities_FillOutForm

User fills out and submits a form on web page

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
WebformID Int
WebformIDValue String
FormFields String
WebpageID Int
QueryParameters String
ClientIPAddress String
ReferrerURL String
UserAgent String
Browser String
Platform String
Device String

CData Python Connector for Marketo

Activities_Hasattendedevent

Has attended event

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Numberofpollresponses Int
Numberofansweredquestions Int
Numberofunansweredquestions Int
Livewatchtimebypercent Int
NumberofCTAsclicked Int
Numberofassetsdownloaded Int
EventMode String
Watchdurationinminutes Int
WatchedDate Datetime

CData Python Connector for Marketo

Activities_InteractedwithDocumentinConversationalFlow

Lead interacts with a document in Dynamic Chat conversational flow

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
DocumentID Int
DocumentIDValue String
DocumentName String
DocumentURL String
ConversationalFlowID Int
ConversationalFlowName String
PageURL String
DocumentOpened Bool
DocumentDownloaded Bool
SearchTerms String
Language String
Workspace String

CData Python Connector for Marketo

Activities_InteractedwithDocumentinDialogue

Lead interacts with a document in Dynamic Chat dialogue

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
DocumentID Int
DocumentIDValue String
DocumentName String
DocumentURL String
DialogueID Int
DialogueName String
PageURL String
DocumentOpened Bool
DocumentDownloaded Bool
SearchTerms String
Language String
Workspace String

CData Python Connector for Marketo

Activities_MergeLeads

Merge two or more leads into a single record

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
LeadIDValue String
MergeIDs String
MasterUpdated Bool
MergedinSales Bool
MergeSource String
APIMethodName String
ModifyingUser String
RequestId String

CData Python Connector for Marketo

Activities_NewLead

New person/record is added to the lead database

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
PrimaryAttributeValueId Int Id of the primary attribute field.
PrimaryAttributeValue String Value of the primary attribute.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
SourceType String
FormName String
ListName String
SFDCType String
LeadSource String
CreatedDate Date
APIMethodName String
ModifyingUser String
RequestId String

CData Python Connector for Marketo

Activities_OpenEmail

User opens Marketo Email

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
TestVariant Int
IsMobileDevice Bool
Device String
Platform String
UserAgent String
CampaignRunID Int
HasPredictive Bool
IsBotActivity Bool
BotActivityPattern String
Browser String

CData Python Connector for Marketo

Activities_OpenSalesEmail

User opens a sales Email

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Sentby String
TemplateID Int
CampaignRunID Int
HasPredictive Bool
Source String
SalesTemplateURL String
SalesCampaignURL String
SalesTemplateName String
SalesCampaignName String
MarketoSalesPersonID Int
SalesEmailURL String
IsBotActivity Bool
BotActivityPattern String

CData Python Connector for Marketo

Activities_PushLeadtoMarketo

Generated schema file.

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Source String
Reason String
APIMethodName String
ModifyingUser String
RequestId String

CData Python Connector for Marketo

Activities_ReachedConversationalFlowGoal

Lead reaches a goal in Dynamic Chat conversational flow

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ConversationalFlowID Int
ConversationalFlowIDValue String
GoalName String
ConversationalFlowName String
PageURL String
Language String
Workspace String

CData Python Connector for Marketo

Activities_ReachedDialogueGoal

Lead reaches a goal in Dynamic Chat dialogue

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
DialogueID Int
DialogueIDValue String
GoalName String
PageURL String
DialogueName String
Language String
Workspace String

CData Python Connector for Marketo

Activities_ReceivedForwardtoFriendEmail

User receives forwarded Email from friend

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int

CData Python Connector for Marketo

Activities_ReceiveSalesEmail

Receive Email using Sales View (Outlook Plugin)

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Receivedby String
Source String

CData Python Connector for Marketo

Activities_RemovefromList

Remove this lead from a list

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListID Int =
ListIDValue String
Source String

CData Python Connector for Marketo

Activities_RemovefromOpportunity

Remove from an Opportunity

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
OpptyID Int
OpptyIDValue String
IsPrimary Bool
Role String

CData Python Connector for Marketo

Activities_ReplytoSalesEmail

User replies to a sales email

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Sentby String
TemplateID Int
CampaignRunID Int
HasPredictive Bool
Source String
SalesTemplateURL String
SalesCampaignURL String
SalesTemplateName String
SalesCampaignName String
MarketoSalesPersonID Int
SalesEmailURL String

CData Python Connector for Marketo

Activities_RequestCampaign

Campaign membership is requested for lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
CampaignIDValue String
Source String

CData Python Connector for Marketo

Activities_Respondedtoapollinwebinar

Lead responds to a poll in a webinar event

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ProgramID Int
ProgramIDValue String
Pollquestion String
Pollresponse String

CData Python Connector for Marketo

Activities_SalesEmailBounced

Sales Email bounced

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Sentby String
Category String
Details String
Subcategory String
Email String
CampaignRunID Int
HasPredictive Bool
TemplateID Int
MarketoSalesPersonID Int
Source String

CData Python Connector for Marketo

Activities_ScheduledMeetinginConversationalFlow

Lead schedules an appointment in Dynamic Chat conversational flow

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
AgentID Int
AgentIDValue String
AgentEmail String
AgentName String
ConversationalFlowID Int
ConversationalFlowName String
PageURL String
MeetingStatus String
ScheduledFor Datetime
RoutingQueueID Int
RoutingQueueType String
RoutingQueueName String

CData Python Connector for Marketo

Activities_ScheduledMeetinginDialogue

Lead schedules an appointment in Dynamic Chat dialogue

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
AgentID Int
AgentIDValue String
AgentEmail String
AgentName String
DialogueID Int
DialogueName String
PageURL String
MeetingStatus String
ScheduledFor Datetime
RoutingQueueID Int
RoutingQueueType String
RoutingQueueName String

CData Python Connector for Marketo

Activities_SendAlert

Send alert Email about a lead

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
SendToOwner String
SendToSmartList String
SendToList String

CData Python Connector for Marketo

Activities_SendEmail

Send Marketo Email to a person

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int
TestVariant Int
CampaignRunID Int
HasPredictive Bool
Browser String
Platform String
Device String
UserAgent String

CData Python Connector for Marketo

Activities_SendSalesEmail

Send Email using Sales View (Outlook Plugin)

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
ArtifactID Int
ArtifactIDValue String
Sentby String
TemplateID Int
CampaignRunID Int
HasPredictive Bool
Source String
SalesTemplateURL String
SalesCampaignURL String
SalesTemplateName String
SalesCampaignName String
MarketoSalesPersonID Int
SalesEmailURL String

CData Python Connector for Marketo

Activities_SentForwardtoFriendEmail

User Forwards Email to a person/record

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
StepID Int
ChoiceNumber Int

CData Python Connector for Marketo

Activities_ShareContent

Share Content

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
SocialAppID Int
SocialAppIDValue String
WebpageID Int
SocialNetwork String
SocialAppTypeID Int
ShareMessage String

CData Python Connector for Marketo

Activities_UnsubscribeEmail

Person unsubscribed from Marketo Emails

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
MailingID Int
MailingIDValue String
WebpageID Int
QueryParameters String
ClientIPAddress String
ReferrerURL String
UserAgent String
WebformID Int
FormFields String
TestVariant Int
CampaignRunID Int
HasPredictive Bool
Browser String
Platform String
Device String

CData Python Connector for Marketo

Activities_UpdateOpportunity

Update an Opportunity

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
OpptyID Int
OpptyIDValue String
DataValueChanges String
AttributeName String
NewValue String
OldValue String

CData Python Connector for Marketo

Activities_VisitWebpage

User visits a web page

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.
WebpageID Int
WebpageIDValue String
WebpageURL String
QueryParameters String
ClientIPAddress String
ReferrerURL String
UserAgent String
SearchEngine String
SearchQuery String
Token String
Browser String
Platform String
Device String

CData Python Connector for Marketo

ActivityTypes

Get available activity types.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ActivityTypes WHERE Id=123

Columns

Name Type Operators Description
Id [KEY] Int The unique, Marketo-assigned identifier of the Activity type.
Name String The name of the Activity type.
Description String The description of the Activity type.
PrimaryAttributeName String The name of the primary attribute.
PrimaryAttributeDatatype String The data type of the primary attribute.
Attributes String The activity attributes JSON aggregate.

CData Python Connector for Marketo

ActivityTypesAttributes

Get available activity type attributes.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ActivityTypesAttributes WHERE ActivityTypeId=123

Columns

Name Type Operators Description
ActivityTypeId [KEY] Int The unique, Marketo-assigned identifier of the activity type.
ActivityName String The name of the activity type.
AttributeName [KEY] String The name of the attribute.
AttributeDataType String The data type of the attribute.

CData Python Connector for Marketo

BulkExportJobs

Returns a list of bulk export jobs that were created in the past 7 days.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM BulkExportJobs WHERE Table='Leads'
	SELECT * FROM BulkExportJobs WHERE Table='Leads' AND Status='Created'

Columns

Name Type Operators Description
ExportId [KEY] String Unique id of the export job.
Table [KEY] String = Name of the table the export job was created for. Can be Activities, Leads, ProgramMembers or any CustomObject_ table.
Status String = The status of the export.
Format String The format of the file.
CreatedAt Datetime The date when the export request was created.
QueuedAt Datetime The queue time of the export job. This column will have a value only when 'Queued' status is reached.
StartedAt Datetime The start time of the export job. This column will have a value only when 'Processing' status is reached.
FinishedAt Datetime The finish time of export job. This column will have a value only when status is 'Completed' or 'Failed'.
FileSize Long The size of file in bytes. This column will have a value only when status is 'Completed'.
FileChecksum String The checksum of the generated file.
NumberOfRecords Long The number of records in the export file. This column will have a value only when the status is 'Completed'.
ErrorMessage String The error message in case of failed status.

CData Python Connector for Marketo

Campaigns

Query Campaigns for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Campaigns WHERE Id='1037'
	SELECT * FROM Campaigns WHERE Id IN (1037, 1055, 1058)
	SELECT * FROM Campaigns WHERE Name='TestCampaign1'
	SELECT * FROM Campaigns WHERE Name='test' AND WorkspaceName='Default'
	SELECT * FROM Campaigns WHERE ProgramName='Program6'

Columns

Name Type Operators Description
Id [KEY] Int =,IN The unique, Marketo-assigned identifier of the campaign.
Name String =,IN The name of the campaign.
Description String The description of the campaign.
Type String The campaign type.
ProgramId Int The Id of the program associated with the campaign.
ProgramName String =,IN The name of the program associated with the campaign.
WorkspaceName String =,IN The name of the workspace associated with the campaign.
Active Bool Identifies whether the campaign is active.
CreatedAt Datetime The date and time the campaign was created.
UpdatedAt Datetime The date and time the campaign was last updated.

CData Python Connector for Marketo

ChannelProgressionStatuses

Query ProgressionStatuses of Channels for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ChannelProgressionStatuses WHERE ChannelName='Online Advertising'

Other queries:

	SELECT * FROM ChannelProgressionStatuses WHERE ChannelName IN (SELECT Channel FROM Programs WHERE id=1010)

Columns

Name Type Operators Description
ChannelName [KEY] String = The name of the channel.
Name [KEY] String Name of the status.
Description String Description of the program status.
Hidden Bool Whether the status has been hidden.
Type String Type of the status.
Step Int Step number of the status.
Success Bool Whether this status is a success step for program members.

CData Python Connector for Marketo

Channels

Query Channels for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Channels WHERE Name='Online Advertising'

Columns

Name Type Operators Description
Id [KEY] Int The unique, Marketo-assigned identifier of the channel.
Name String = The name of the channel.
ApplicableProgramType String The type of program that the channel is used for.
CreatedAt Datetime The date and time the channel was created.
UpdatedAt Datetime The date and time the channel was last updated.
ProgressionStatuses String JSON array of progression statuses aggregates. Additionally exposed as the separate table ChannelProgressionStatuses.

CData Python Connector for Marketo

DailyErrorStatistics

Retrieve the count of each error users have encountered in the current day.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM DailyErrorStatistics WHERE ErrorCode='610'

Columns

Name Type Operators Description
Date Date The date when the error was encountered.
ErrorCode String The error code.
Count Int The error count for the particular error code.

CData Python Connector for Marketo

DailyUsageStatistics

Retrieve the number of API calls that specific users have consumed in the current day.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM DailyUsageStatistics WHERE UserId='User123'

Columns

Name Type Operators Description
Date Date The date when the API Calls were made.
UserId String The ID of the user.
Count Int The individual count for the user.

CData Python Connector for Marketo

EmailCCFields

Query Emails CC Fields for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM EmailCCFields WHERE AttributeId='attribute_123'

Columns

Name Type Operators Description
AttributeId [KEY] String The attribute identifier.
ObjectName String Object name. Lead or Company.
DisplayName String The display name.
ApiName String The API name.

CData Python Connector for Marketo

EmailTemplatesUsedBy

Query email records which depend on a given email template.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM EmailTemplatesUsedBy WHERE EmailTemplateId=1

Columns

Name Type Operators Description
EmailTemplateId [KEY] Int = The id of the email template.
Id [KEY] Int The id of the email that uses the email template.
Name String The name of the email.
Type String The type of the asset.
Status String The status of the email.
UpdatedAt Datetime The update date time of the email.

CData Python Connector for Marketo

Files

Query files for a Marketo organization.

CreateFile can be used to upload a file.

UpdateFile can be used to update the file content.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Files WHERE id='421'
	SELECT * FROM Files WHERE Name='CData.png'
	SELECT * FROM Files WHERE FolderId='34'
	SELECT * FROM Files WHERE FolderId='34' AND ParentType='Folder'

Columns

Name Type Operators Description
Id [KEY] Int = The unique, Marketo-assigned identifier of the file.
Name String = The name of the file.
Description String Description of the file.
FolderId Int = The unique, Marketo-assigned identifier of the folder.
FolderName String The Name of the folder
FolderType String The type of folder (Folder,Program)
MimeType String MIME type of the file
Size Int Size of the file in bytes
URL String The explicit URL of the asset in the designated instance.
CreatedAt Datetime The date and time the folder was created.
UpdatedAt Datetime The date and time the folder was last updated.
ParentType String = Mirror column used as server side filter for the type of the parent folder. Will be ignored when filtering by Id or Name.

CData Python Connector for Marketo

FolderContents

Query Folders contents for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM FolderContents WHERE FolderId=12
	SELECT * FROM FolderContents WHERE FolderId=12 AND FolderType='Folder'

Columns

Name Type Operators Description
Id [KEY] Int The marketo-assigned identifier of the folder content.
Type String The type of the folder content.
FolderId Int = The unique, Marketo-assigned identifier of the folder.
FolderType String = The type of the folder. Folder or Program, defaults to Folder.

CData Python Connector for Marketo

LandingPageTemplateContent

Query landing page template contents for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

UpdateLandingPageTemplateContent can be used to update the Landing Page Template Content.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM LandingPageTemplateContent WHERE LandingPageTemplateId=1 AND LandingPageTemplateStatus='approved'
	SELECT * FROM LandingPageTemplateContent WHERE LandingPageTemplateId IN (1, 1005) AND LandingPageTemplateStatus IN ('draft', 'approved')
	SELECT * FROM LandingPageTemplateContent WHERE LandingPageTemplateId IN (1, 1005)
	SELECT * FROM LandingPageTemplateContent WHERE LandingPageTemplateStatus='draft'
	SELECT * FROM LandingPageTemplateContent

Columns

Name Type Operators Description
LandingPageTemplateId [KEY] Int = The unique, Marketo-assigned identifier of the landing page template.
LandingPageTemplateStatus [KEY] String = Status of the landing page template, draft or approved versions.
Content String HTML content of the landing page template.
EnableMunchkin Bool Whether to enable munchkin on the derived pages. Defaults to true.
TemplateType String Type of template.

CData Python Connector for Marketo

LeadChanges

Query Lead changes.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM LeadChanges WHERE ActivityDate = '2024-02-02 08:15:10.0'
	SELECT * FROM LeadChanges WHERE ActivityDate > '2024-01-17T14:32:21'
	SELECT * FROM LeadChanges WHERE ActivityDate >= '2024-01-17T14:32:21'
	SELECT * FROM LeadChanges WHERE ActivityDate > '2024-01-17T14:32:21' AND ActivityDate < '2024-02-17T14:32:21'
	SELECT * FROM LeadChanges WHERE LeadId IN (4, 14454)
	SELECT * FROM LeadChanges WHERE ListId = 1014
	SELECT * FROM LeadChanges WHERE ListId = 1014 AND ActivityDate > '2023-06-14T14:13:27Z'
	SELECT * FROM LeadChanges WHERE LeadId = 9 AND ActivityDate > '2023-06-14T14:13:27Z'

Use LeadFields to specify the Lead columns from which you want to retrieve changes. Defaults to all columns. Retrieve column names from SYS_TABLECOLUMNS and provide them as comma-separated values.

SELECT * FROM LeadChanges WHERE LeadFields = 'mobilePhone'
SELECT * FROM LeadChanges WHERE LeadId = 4 AND LeadFields = 'mobilePhone'

Columns

Name Type Operators Description
ActivityId [KEY] String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
ActivityTypeId Int Id of the activity type.
LeadId Int =,IN Id of the lead associated to the activity.
CampaignId Int Id of the associated Smart Campaign, if applicable.
Attributes String JSON aggregate containing the list of attribute key value pair for this activity.
Fields String JSON aggregate containing a list of changes made to lead fields.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

Pseudo-Columns

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

Name Type Description
LeadFields String Mirror column used to specify Lead columns for which you want to retrieve changes for. Defaults to all columns. Column names can be retrieved from SYS_TABLECOLUMNS. SELECT [ColumnName] FROM SYS_TABLECOLUMNS WHERE TableName='leads' and should be provided as comma separated values.

CData Python Connector for Marketo

LeadChangesAttributes

Query Lead changes attributes.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM LeadChangesAttributes WHERE ActivityDate = '2024-02-02 08:15:10.0'
	SELECT * FROM LeadChangesAttributes WHERE ActivityDate > '2024-01-17T14:32:21'
	SELECT * FROM LeadChangesAttributes WHERE ActivityDate >= '2024-01-17T14:32:21'
	SELECT * FROM LeadChangesAttributes WHERE ActivityDate > '2024-01-17T14:32:21' AND ActivityDate < '2024-02-17T14:32:21'
	SELECT * FROM LeadChangesAttributes WHERE LeadId IN (4, 14454)
	SELECT * FROM LeadChangesAttributes WHERE ListId = 1014
	SELECT * FROM LeadChangesAttributes WHERE ListId = 1014 AND ActivityDate > '2023-06-14T14:13:27Z'
	SELECT * FROM LeadChangesAttributes WHERE LeadId = 9 AND ActivityDate > '2023-06-14T14:13:27Z'

Use LeadFields to specify the Lead columns from which you want to retrieve changes. Defaults to all columns. Retrieve column names from SYS_TABLECOLUMNS and provide them as comma-separated values.

SELECT * FROM LeadChangesAttributes WHERE LeadFields = 'mobilePhone'
SELECT * FROM LeadChangesAttributes WHERE LeadId = 4 AND LeadFields = 'mobilePhone'

Columns

Name Type Operators Description
ActivityId String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
ActivityTypeId Int Id of the activity type.
LeadId Int =,IN Id of the lead associated to the activity.
AttributeAPIName String API Name of the attribute
AttributeName String Name of the attribute
AttributeValue String Value of the attribute
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

Pseudo-Columns

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

Name Type Description
LeadFields String Mirror column used to specify Lead columns for which you want to retrieve changes for. Defaults to all columns. Column names can be retrieved from SYS_TABLECOLUMNS. SELECT [ColumnName] FROM SYS_TABLECOLUMNS WHERE TableName='leads' and should be provided as comma separated values.

CData Python Connector for Marketo

LeadChangesFields

Query fields of lead changes.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM LeadChangesFields WHERE ActivityDate = '2024-02-02 08:15:10.0'
	SELECT * FROM LeadChangesFields WHERE ActivityDate > '2024-01-17T14:32:21'
	SELECT * FROM LeadChangesFields WHERE ActivityDate >= '2024-01-17T14:32:21'
	SELECT * FROM LeadChangesFields WHERE ActivityDate > '2024-01-17T14:32:21' AND ActivityDate < '2024-02-17T14:32:21'
	SELECT * FROM LeadChangesFields WHERE LeadId IN (4, 14454)
	SELECT * FROM LeadChangesFields WHERE ListId = 1014
	SELECT * FROM LeadChangesFields WHERE ListId = 1014 AND ActivityDate > '2023-06-14T14:13:27Z'
	SELECT * FROM LeadChangesFields WHERE LeadId = 9 AND ActivityDate > '2023-06-14T14:13:27Z'

Use LeadFields to specify the Lead columns from which you want to retrieve changes. Defaults to all columns. Retrieve column names from SYS_TABLECOLUMNS and provide them as comma-separated values.

SELECT * FROM LeadChangesFields WHERE LeadFields = 'mobilePhone'
SELECT * FROM LeadChangesFields WHERE LeadId = 4 AND LeadFields = 'mobilePhone'

Columns

Name Type Operators Description
ActivityId String Unique id of the activity.
ActivityDate Datetime >,>=,=,<,<= Datetime of the activity.
ActivityTypeId Int Id of the activity type.
LeadId Int =,IN Id of the lead associated to the activity.
LeadChangeFieldId Int Unique integer id of the change record.
LeadChangeFieldName String Name of the field which was changed.
LeadChangeFieldNewValue String New value after the change.
LeadChangeFieldOldValue String Old value before the change.
ListId Int = Mirror column that can be used only as a filter. Will retrieve activities for all leads that are members of this static list. Not available when UseBulkAPI=true.

Pseudo-Columns

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

Name Type Description
LeadFields String Mirror column used to specify Lead columns for which you want to retrieve changes for. Defaults to all columns. Column names can be retrieved from SYS_TABLECOLUMNS. SELECT [ColumnName] FROM SYS_TABLECOLUMNS WHERE TableName='leads' and should be provided as comma separated values.

CData Python Connector for Marketo

LeadPartitions

Query Lead Partitions for a Marketo organization.

UpdateLeadPartition can be used to update the partition of a lead.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM LeadPartitions WHERE Id=123

Columns

Name Type Operators Description
Id [KEY] Int The unique, Marketo-assigned identifier of the lead partition.
Name String The name of the partition.
Description String The description of the partition.

CData Python Connector for Marketo

LeadPrograms

Query program membership for leads.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side. If no LeadId filter is specified, this table queries all available LeadIds. This process is time-consuming because querying the Leads table is resource-intensive.

	SELECT * FROM LeadPrograms WHERE LeadId=4

Columns

Name Type Operators Description
LeadId [KEY] Int = The Marketo lead id.
ProgramId [KEY] Int Unique integer id of a program record.
ProgressionStatus String Program status of the lead in the parent program.
ProgressionStatusType String Program status Type of the lead in the parent program.
IsExhausted Bool Whether the lead is currently exhausted in the stream, if applicable.
AcquiredBy Bool Whether the lead was acquired by the parent program.
ReachedSuccess Bool Whether the lead is in a success-status in the parent program.
MembershipDate Datetime Date the lead first became a member of the program.
UpdatedAt Datetime Datetime when the program was most recently updated.

CData Python Connector for Marketo

Lists

Query Static Lists for a Marketo organization from the Leads API.

This table contains the same records as StaticLists, however it has different columns and server-side filters that might be of use since the tables are retrieved from differnt API endpoints.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Lists WHERE Id=1556
	SELECT * FROM Lists WHERE Id IN (1556, 1057)
	SELECT * FROM Lists WHERE Name='test0319'
	SELECT * FROM Lists WHERE ProgramName='ImportTest0407'
	SELECT * FROM Lists WHERE WorkspaceName='Default' AND Id=1014

Columns

Name Type Operators Description
Id [KEY] Int =,IN Id of the static list.
Name String =,IN Name of the static list.
Description String Description of the static list.
ProgramName String =,IN Name of the program.
WorkspaceId Int WorkspaceId of the static list.
WorkspaceName String =,IN Name of the workspace the static list is part of.
CreatedAt Datetime Datetime the static list was created.
UpdatedAt Datetime Datetime the static list was most recently updated.

CData Python Connector for Marketo

ListStaticMemberShip

Query leads of a static list in Marketo.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

Tip: This table uses server-side projection. Performance can be improved by minimizing the number of columns in projection.

	SELECT * FROM ListStaticMemberShip WHERE ListId=123

Columns

Name Type Operators Description
ListId [KEY] Int = Id of the static list.
Id [KEY] Int The lead Id.
AcmeAccessCode String =,IN
AcquisitionProgramId Int
Address String
AnnualRevenue Decimal
AnonymousIP String
BillingCity String
BillingCountry String
BillingPostalCode String
BillingState String
BillingStreet String
BlackListed Bool
BlackListedCause String
City String
Company String
ContactCompany Int
Cookies String =,IN
Country String
CreatedAt Datetime
Cstmfdtest1 String =,IN
Cstmfdtest2 String =,IN
DateOfBirth Date
Department String =,IN
DoNotCall Bool
DoNotCallReason String
Ecids String
Email String =,IN
EmailInvalid Bool
EmailInvalidCause String
EmailSuspended Bool
EmailSuspendedAt Datetime
EmailSuspendedCause String =,IN
ExternalCompanyId String =,IN
ExternalSalesPersonId String =,IN
Fax String
FirstName String
FirstUTMCampaign String
FirstUTMContent String
FirstUTMMedium String
FirstUTMSource String
FirstUTMTerm String
GdprMailableStatus String
Industry String
InferredCity String
InferredCompany String
InferredCountry String
InferredMetropolitanArea String
InferredPhoneAreaCode String
InferredPostalCode String
InferredStateRegion String
IsAnonymous Bool
IsLead Bool
LastName String
LatestUTMCampaign String
LatestUTMContent String
LatestUTMMedium String
LatestUTMSource String
LatestUTMterm String
LeadPartitionId Int =,IN
LeadPerson Int
LeadRevenueCycleModelId Int
LeadRevenueStageId Int
LeadRole String
LeadScore Int
LeadSource String
LeadStatus String
MainPhone String
MarketingSuspended Bool
MarketingSuspendedCause String
MiddleName String
MktoAcquisitionDate Datetime
MktoCompanyNotes String
MktoDoNotCallCause String
MktoIsCustomer Bool
MktoIsPartner Bool
MktoName String =,IN
MktoPersonNotes String
MobilePhone String
NumberOfEmployees Int
NumberofEmployeesProspect String
OriginalReferrer String
OriginalSearchEngine String
OriginalSearchPhrase String
OriginalSourceInfo String
OriginalSourceType String
PersonLevelEngagementScore Int =,IN
PersonPrimaryLeadInterest Int
PersonTimeZone String
PersonType String
Phone String
PostalCode String
Priority Int
Rating String
RegistrationSourceInfo String
RegistrationSourceType String
RelativeScore Int
RelativeUrgency Int
Salutation String
SicCode String
Site String
State String
Test String =,IN
Test1 Bool
Test98 String =,IN
TestBoolean Bool
TestCustomfieldEmail String =,IN
TestFieldText1 String =,IN
TestInteger Bool
TestInteger_cf Int =,IN
TestKpQA String =,IN
Title String
Unsubscribed Bool
UnsubscribeDateFoFS String
UnsubscribeDateUnleashed String
UnsubscribedReason String
UnsubscribeFoFS String
UnsubscribeMarketing String
UnsubscribeSales String
UnsubscribeUnleashed String
UpdatedAt Datetime
Urgency Double
UTMTerm String =,IN
Website String

CData Python Connector for Marketo

ProgramCosts

Query, insert and delete program cost relations for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ProgramCosts WHERE ProgramId='6205'

Columns

Name Type Operators Description
ProgramId Int = The unique, Marketo-assigned identifier of the program.
Cost Int Amount of the cost.
CostNote String Note of the cost.
CostStartDate Datetime Start datetime of the period cost.

CData Python Connector for Marketo

ProgramTags

Query tags relations for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ProgramTags WHERE tagType='test' AND tagValue='asd1'
	SELECT * FROM ProgramTags WHERE ProgramId=6138 

Columns

Name Type Operators Description
ProgramId [KEY] Int = The unique, Marketo-assigned identifier of the program.
TagType [KEY] String = The tag type associated with the program. Each TagType has a value associated with it which is returned via the TagValue column.
TagValue String = Value of the tag type.

CData Python Connector for Marketo

Roles

Query roles. Requires permissions: 'Access User Management Api' and 'Access Users'.

Select

This view does not support server-side filtering.

	SELECT * FROM Roles;

Columns

Name Type Operators Description
Id [KEY] Integer The unique, Marketo-assigned identifier of the role.
Name String The name of the role.
Description String The description of the role.
Type String The type of the role.
IsHidden Boolean Whether the role is hidden.
IsOnlyAllZones Boolean Whether the role is all zones.
CreatedAt Datetime The date and time the role was created.
UpdatedAt Datetime The date and time the role was last updated.

CData Python Connector for Marketo

Segmentations

Query segmentations for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Segmentations WHERE Status='draft'

Columns

Name Type Operators Description
Id [KEY] Int Id of the segmentation.
Status [KEY] String = Status of the segmentation, draft or approved.
Name String Name of the segmentation.
Description String Description of the segmentation.
URL String Url of the segmentation in the Marketo UI.
FolderId Int The unique, Marketo-assigned identifier of the parent folder/program.
FolderName String The name of the folder
FolderType String The type of folder (Folder,Program)
WorkspaceName String Workspace Name of the asset.
CreatedAt Datetime Datetime the segmentation was created.
UpdatedAt Datetime Datetime the segmentation was most recently updated.

CData Python Connector for Marketo

Segments

Query segments for a Marketo organization.

Note: This table uses the draft/approved versioning API. By default both versions are retrieved/modified. To interact with a specific version use the filter Status='draft' or Status='approved'.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Segments WHERE SegmentationId=1001 AND Status='draft'
	SELECT * FROM Segments WHERE SegmentationId=1001

Columns

Name Type Operators Description
Id [KEY] Int Id of the segment.
Status [KEY] String = Status of the segment, draft or approved.
SegmentationId Int = Id of the segmentation.
Name String Name of the segment.
Description String Description of the segmentation.
URL String Url of the segmentation in the Marketo UI.
CreatedAt Datetime Datetime segment form was created.
UpdatedAt Datetime Datetime the segment was most recently updated.

CData Python Connector for Marketo

SmartListFilterConditions

Query filters of smart lists in a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM SmartListFilterConditions WHERE SmartListId='1093'

Columns

Name Type Operators Description
FilterId Int Id of the smart list filter.
SmartListId Int = Id of the smart list.
ActivityAttributeId String Id of activity attribute.
ActivityAttributeName String Name of activity attribute.
AttributeId String Id of attribute.
AttributeName String Name of attribute.
Operator String Value of operator.
Values String List of values.
IsPrimary String Whether the condition is primary or not (first condition of the smart list).
IsError String Whether the condition is error.
ErrorMessage String The error message if IsError=true.

CData Python Connector for Marketo

SmartListFilters

Query filters of smart lists in a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM SmartListFilters WHERE SmartListId='3560'

Columns

Name Type Operators Description
Id [KEY] Int Id of the smart list filter.
SmartListId Int = Id of the smart list.
Name String The name of the smart list rule filter.
Operator String The operator used in the filter.
RuleType String The type of the rule.
RuleTypeId Int The Id of the rule type.
FilterMatchType String The rule filter match type
Conditions String JSON aggregate of smart list filter conditions.

CData Python Connector for Marketo

SmartListTriggers

Query rules of smart lists in a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM SmartListTriggers WHERE SmartListId='3560'

Columns

Name Type Operators Description
SmartListId Int = Id of the smart list.
Trigger String Smart list trigger.

CData Python Connector for Marketo

TagAllowedValues

Query allowed values for tags in a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM TagAllowedValues WHERE TagType='test'

Columns

Name Type Operators Description
TagType [KEY] String = The name/type of the tag.
AllowableValues String The acceptable values for the tag type.

CData Python Connector for Marketo

Tags

Query tags for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM Tags WHERE TagType='test'

Columns

Name Type Operators Description
TagType [KEY] String = The name/type of the tag.
Required Bool Whether the tag is required for its applicable program types.
ApplicableProgramTypes String The types of program that the tag is used for.

CData Python Connector for Marketo

ThankYouList

Query form thank you pages for a Marketo organization.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM ThankYouList WHERE FormId=1

Columns

Name Type Operators Description
FormId Int = Id of the form.
FollowupType String The follow up type.
FollowupValue String The follow up value.
Default Bool If this is the default ThankYouPage.
Operator String The operator for the ThankYouPage.
SubjectField String The subject field of the ThankYouPage.
Values String JSON array of values.

CData Python Connector for Marketo

WeeklyErrorStatistics

Retrieve the count of each error users have encountered in the past 7 days.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM WeeklyErrorStatistics WHERE ErrorCode='610'

Columns

Name Type Operators Description
Date Date The date when the error was encountered.
ErrorCode String The error code.
Count Int The error count for the particular error code.

CData Python Connector for Marketo

WeeklyUsageStatistics

Retrieve the number of API calls that specific users have consumed in the past 7 days.

Select

Note: Filters provided with one of the supported operators listed in the "Operators" column are processed server-side, all the other filters are processed client-side.

	SELECT * FROM WeeklyUsageStatistics WHERE UserId='User123'

Columns

Name Type Operators Description
Date Date The date when the API Calls were made.
UserId String The ID of the user.
Count Int The individual count for the user.

CData Python Connector for Marketo

Workspaces

Retrieve workspaces. Requires permissions: 'Access User Management Api' and 'Access Users'.

Select

This view does not support server-side filtering.

	SELECT * FROM Workspaces;

Columns

Name Type Operators Description
Id [KEY] Integer The unique, Marketo-assigned identifier of the workspace.
Name String The name of the workspace.
Description String The description of the workspace.
Status String The status of the workspace.
GlobalVisualization String The global visualization of the workspace.
CurrencyInfo String The currency info of the workspace.
CreatedAt Datetime The date and time the workspace was created.
UpdatedAt Datetime The date and time the workspace was last updated.

CData Python Connector for Marketo

Stored Procedures

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

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

CData Python Connector for Marketo Stored Procedures

Name Description
ActivateSmartCampaign Activates a trigger smart campaign.
ApproveAsset Approves the asset based on the given asset type and id.
AssociateLead Associates a known Marketo lead record to a munchkin cookie and its associated web activity history.
BulkExportActivities A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.
BulkExportCustomObjects A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.
BulkExportLeads A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.
BulkExportProgramMembers A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.
BulkImportCustomObjects Imports the custom object records from the provided file, waits for the job to finish and returns the job completion details.
BulkImportLeads Imports the lead records from the provided file, waits for the job to finish and returns the job completion details.
BulkImportProgramMembers Imports the program member records from the provided file, waits for the job to finish and returns the job completion details.
CancelExportJob Cancel a bulk export job.
CreateActivitiesExportJob Create an activities export job based on the given filters.
CreateCustomObjectsExportJob Create a custom object export job based on the given filters. Only 1 filter type can be specified.
CreateCustomObjectsImportJob Imports the program custom object records from the provided file.
CreateEmailTemplate Creates a new email template.
CreateExportJob Create an export job for the search criteria defined via the filter aggregate input. Returns the 'JobId' which can be passed as a parameter in subsequent calls to Bulk Export Activities. Use EnqueueExportJob to queue the export job for processing. Use GetExportJobStatus to retrieve status of export job.
CreateFile Creates a new file from the included payload.
CreateLeadsExportJob Create a leads export job based on the given filters. Only 1 filter type can be specified.
CreateLeadsImportJob Imports the lead records from the provided file.
CreateProgramMembersExportJob Create a program members export job based on the given filters.
CreateProgramMembersImportJob Imports the program member records from the provided file.
DeactivateSmartCampaign Deactivates a trigger smart campaign.
DeleteInvitedUser Delete pending user. A pending user is a user that has not yet accepted invitation. Requires permissions: Access User Management Api and Access Users.
EnqueueExportJob Puts an export job in queue and starts the job when computing resources become available.
GetEmailFullContent Returns the serialized HTML version of the email.
GetEmailTemplateContent Returns the content for a given email template.
GetExportJobFile Returns the file generated by the bulk job with the given Id.
GetExportJobStatus Returns the status of an export job. Job status is available for 30 days after Completed or Failed status was reached.
GetImportJobFailures Returns the list of failures for the import batch job
GetImportJobStatus Returns the status of an import job.
GetImportJobWarnings Returns the list of warnings for the import batch job
GetInvitedUserById Retrieve a single pending user record through its Id. A pending user is a user that has not yet accepted invitation. Requires permissions: Access User Management Api and Access Users.
GetOAuthAccessToken Get an access token from Marketo.
GetSnippetContent Returns the content for a given snippet.
InviteUser Send an email invitation to new user. Requires permissions: Access User Management Api and Access Users.
MergeLeads Merges two or more known lead records into a single lead record.
PollExportJobStatus Continuously polls the bulk API for the status of the export job until one of the following statuses is returned: Completed, Cancelled, Failed.
PollImportJobStatus Will continuously poll the bulk API for the status of the import job until one of the following statuses is returned: Complete, Failed.
ScheduleCampaign Passes a set of leads to a trigger campaign to run through the campaign's flow.
SendEmailSample Sends a sample email to the given email address. Leads may be impersonated to populate data for tokens and dynamic content.
TriggerCampaign Remotely schedules a batch campaign to run at a given time.
UnApproveAsset Revokes approval based on the given asset type and id.
UpdateEmailContent Updates the content of an email.
UpdateEmailFullContent Replaces the HTML of an Email that has had its relationship broken from its template.
UpdateEmailTemplateContent Updates the content of the given email template.
UpdateFile Updates the content of the given file.
UpdateLandingPageTemplateContent Updates the content for the target landing page template.
UpdateLeadPartition Update the lead partition for a list of leads.
UpdateLeadProgramStatus Changes the program status for a list of leads in a target program. Only existing members of the program may have their status changed with this procedure.
UpdateSnippetContent Updates the content of a snippet.

CData Python Connector for Marketo

ActivateSmartCampaign

Activates a trigger smart campaign.

Execute

Sample
	EXECUTE ActivateSmartCampaign Id=1

Input

Name Type Required Description
Id String True Id of the trigger smart campaign to activate.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

ApproveAsset

Approves the asset based on the given asset type and id.

Execute

Sample
	EXECUTE ApproveAsset Id=1005, Type='LandingPage'

Input

Name Type Required Description
Id String True Id of the asset.
Type String True Type of the asset.

The allowed values are EmailTemplate, Email, Form, LandingPageTemplate, LandingPage, Snippet.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

AssociateLead

Associates a known Marketo lead record to a munchkin cookie and its associated web activity history.

Execute

Sample
	EXECUTE AssociateLead LeadId='1755', Cookie='id:063-GJP-217&token:_mch-marketo.com-1594662481190-60776'

Input

Name Type Required Description
LeadId Integer True Id of the Lead to associate
Cookie String True The cookie value to associate

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkExportActivities

A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.

Execute

Sample
	EXECUTE BulkExportActivities CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-01-10T00:00:00Z'
	EXECUTE BulkExportActivities CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-01-10T00:00:00Z', LocalPath='C:/Users/cdata/export.csv'
	EXECUTE BulkExportActivities CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-01-10T00:00:00Z', LocalPath='/tmp/export.csv'
	EXECUTE BulkExportActivities ActivityTypeIds='1', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE BulkExportActivities ActivityTypeIds='1,2,23', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE BulkExportActivities ActivityTypeIds='1', PrimaryAttributeValueIds='1,2,3', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE BulkExportActivities ActivityTypeIds='1', PrimaryAttributeValues='value1,value2', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

CreatedAtStartAt Datetime False Inclusive lower bound filter for the activity creation datetime.
CreatedAtEndAt Datetime False Inclusive upper bound filter for the activity creation datetime.
ActivityTypeIds String False The id of a the activity type. Available activity types can be queried from the view ActivityTypes.
PrimaryAttributeValueIds String False Filter based on the id of the primary attribute of the activity. When used, the activityTypeIds filter must be present and only contain activity ids that match the corresponding asset group. Cannot be combined with PrimaryAttributeValues.
PrimaryAttributeValues String False Filter based on the values of the primary attribute of the activity. When used, the activityTypeIds filter must be present and only contain activity ids that match the corresponding asset group. Cannot be combined with PrimaryAttributeValueIds.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.
LocalPath String False The absolute path where the file will be saved.
ChunkSize Long False The chunk size based on which the CSV file will be downloaded. Defaults to the value of the connection property 'ChunkSize'. Set to -1 to download the whole file at once.
MaxThreads Integer False The number of threads used to download the file. Defaults to the value specified in the connection string property 'MaxThreads'.

Result Set Columns

Name Type Description
Id String The Id of the export job.
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkExportCustomObjects

A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.

Execute

Sample
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-01-10T00:00:00Z'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-01-10T00:00:00Z', LocalPath='C:/Users/cdata/export.csv'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-01-10T00:00:00Z', LocalPath='/tmp/export.csv'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-02-25T00:00:00Z', Columns='lead=LeadId,*'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', SmartListName='CDataSmartList'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', SmartListId=12
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', StaticListName='ImportTest0407_csv'
	EXECUTE BulkExportCustomObjects Table='CustomObject_cdatajp3', StaticListId=13

Input

Name Type Required Description
Table String True Name of the custom object to export data for. Matches the name of custom objects listed in sys_tables.
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
StaticListId Integer False The id of a static list you want to use as a filter.
StaticListName String False The name of a static list you want to use as a filter.
SmartListId Integer False The id of a smart list you want to use as a filter.
SmartListName String False The name of a smart list you want to use as a filter.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.
LocalPath String False The absolute path where the file will be saved.
ChunkSize Long False The chunk size based on which the CSV file will be downloaded. Defaults to the value of the connection property 'ChunkSize'. Set to -1 to download the whole file at once.
MaxThreads Integer False The number of threads used to download the file. Defaults to the value specified in the connection string property 'MaxThreads'.

Result Set Columns

Name Type Description
Id String The Id of the export job.
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkExportLeads

A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.

Execute

Sample
	EXECUTE BulkExportLeads CreatedAtStartAt='2024-02-02T00:00:00Z', CreatedAtEndAt='2024-02-02T00:00:00Z'
	EXECUTE BulkExportLeads CreatedAtStartAt='2024-02-02T00:00:00Z', CreatedAtEndAt='2024-02-02T00:00:00Z', LocalPath='C:/Users/cdata/export.csv'
	EXECUTE BulkExportLeads CreatedAtStartAt='2024-02-02T00:00:00Z', CreatedAtEndAt='2024-02-02T00:00:00Z', LocalPath='/tmp/export.csv'
	EXECUTE BulkExportLeads CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtEndAt='2023-02-25T00:00:00Z', Columns='Id'
	EXECUTE BulkExportLeads CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtEndAt='2023-01-10T00:00:00Z', Columns='id=LeadID,*'
	EXECUTE BulkExportLeads SmartListName='CDataSmartList'
	EXECUTE BulkExportLeads StaticListName='ImportTest0407_csv'
	EXECUTE BulkExportLeads SmartListId=12
	EXECUTE BulkExportLeads StaticListId=13

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

CreatedAtStartAt Datetime False Inclusive lower bound filter for the lead creation datetime.
CreatedAtEndAt Datetime False Inclusive upper bound filter for the lead creation datetime.
UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
StaticListId Integer False The id of a static list you want to use as a filter.
StaticListName String False The name of a static list you want to use as a filter.
SmartListId Integer False The id of a smart list you want to use as a filter.
SmartListName String False The name of a smart list you want to use as a filter.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.
LocalPath String False The absolute path where the file will be saved.
ChunkSize Long False The chunk size based on which the CSV file will be downloaded. Defaults to the value of the connection property 'ChunkSize'. Set to -1 to download the whole file at once.
MaxThreads Integer False The number of threads used to download the file. Defaults to the value specified in the connection string property 'MaxThreads'.

Result Set Columns

Name Type Description
Id String The Id of the export job.
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkExportProgramMembers

A combination of CreateExportJob, EnqueueExportJob, PollExportJobStatus and GetExportJobFile.

Execute

Sample
	EXECUTE BulkExportProgramMembers ProgramId='6117'
	EXECUTE BulkExportProgramMembers ProgramId='6117,6182'
	EXECUTE BulkExportProgramMembers ProgramId='6117', Columns='acquiredBy=acqBy,*'
	EXECUTE BulkExportProgramMembers ProgramId='6117', LocalPath='/tmp/export.csv'
	EXECUTE BulkExportProgramMembers ProgramId='6117', LocalPath='C:/Users/cdata/export.csv'
	EXECUTE BulkExportProgramMembers ProgramId='6117,6182', UpdatedAtStartAt='2024-01-01', UpdatedAtEndAt='2024-01-30', IsExhausted='false', NurtureCadence='paus', StatusNames='Not in Program'

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
ProgramId String True Comma separated list of up to 10 program ids for which program members will be retrieved.
IsExhausted Boolean False Boolean used to filter program membership records for people who have exhausted content.
NurtureCadence String False Used to filter program membership records for a given nurture cadence.

The allowed values are paus, norm.

StatusNames String False Comma separated list of program member status names to filter by.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.
LocalPath String False The absolute path where the file will be saved.
ChunkSize Long False The chunk size based on which the CSV file will be downloaded. Defaults to the value of the connection property 'ChunkSize'. Set to -1 to download the whole file at once.
MaxThreads Integer False The number of threads used to download the file. Defaults to the value specified in the connection string property 'MaxThreads'.

Result Set Columns

Name Type Description
Id String The Id of the export job.
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkImportCustomObjects

Imports the custom object records from the provided file, waits for the job to finish and returns the job completion details.

Execute

Sample
	EXECUTE BulkImportCustomObjects Table='CustomObject_customObject_cdatajp', LocalPath='C:/users/cdata/file.csv'
	EXECUTE BulkImportCustomObjects Table='CustomObject_customObject_cdatajp', LocalPath='/tmp/file.csv'
	EXECUTE BulkImportCustomObjects Table='CustomObject_customObject_cdatajp', FileData='bWFpbEFkZHJlc3MsbmFtZQpzdXBwb3J0X2NkYXRhLmNvLmpwMUBjZHRhLmNvbSxjZGF0YTE3CnN1cHBvcnRfY2RhdGEuY28uanAyQGNkdGEuY29tLGNkYXRhMTg='

Input

Name Type Required Description
Table String True The custom object table name.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
RowsProcessed Integer The number of rows processed so far.
RowsFailed Integer The number of rows failed so far.
RowsWithWarning Integer The number of rows with a warning so far.
Message String The status message of the batch.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkImportLeads

Imports the lead records from the provided file, waits for the job to finish and returns the job completion details.

Execute

Sample
	EXECUTE BulkImportLeads LocalPath='C:/users/cdata/file.csv'
	EXECUTE BulkImportLeads LocalPath='/tmp/file.csv'
	EXECUTE BulkImportLeads LookupField='testCustomfieldEmail', ListId=1570, PartitionName='testPartition', LocalPath='/tmp/file.csv'
	EXECUTE BulkImportLeads FileData='ZW1haWwsZmlyc3ROYW1lLGxhc3ROYW1lLHRlc3RDdXN0b21maWVsZEVtYWlsCnRlc3RAZXhhbXBsZS5jb20sSm9obixEb2UsdGVzdEB0ZXN0Q3VzdG9tZmllbGRFbWFpbC5jZGF0YS5jb20KdGVzdDEyMzFAZXhhbXBsZS5jb20sSm9obixEb2UsdGVzdDFAdGVzdEN1c3RvbWZpZWxkRW1haWwuY2RhdGEuY29t'

Input

Name Type Required Description
LookupField String False Field to use for deduplication. Custom fields (string, email, integer), and the following field types are supported: id, cookies, email, twitterId, facebookId, linkedInId, sfdcAccountId, sfdcContactId, sfdcLeadId, sfdcLeadOwnerId, sfdcOpptyId. Default is email. You can use id for update only operations.
PartitionName String False Name of the lead partition to import to.
ListId Integer False Id of the static list to import into.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
RowsProcessed Integer The number of rows processed so far.
RowsFailed Integer The number of rows failed so far.
RowsWithWarning Integer The number of rows with a warning so far.
Message String The status message of the batch.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

BulkImportProgramMembers

Imports the program member records from the provided file, waits for the job to finish and returns the job completion details.

Execute

Sample
	EXECUTE BulkImportProgramMembers ProgramId=6145, ProgramMemberStatus='Influenced', LocalPath='C:/users/cdata/file.csv'
	EXECUTE BulkImportProgramMembers ProgramId=6145, ProgramMemberStatus='Influenced', LocalPath='/tmp/file.csv'
	EXECUTE BulkImportProgramMembers ProgramId=6145, ProgramMemberStatus='Influenced', FileData='Zmlyc3ROYW1lLGxhc3ROYW1lLGVtYWlsLHRpdGxlLGNvbXBhbnksbGVhZFNjb3JlCkpvYW5uYSxMYW5uaXN0ZXIsSm9hbm5hQExhbm5pc3Rlci5jb20sTGFubmlzdGVyLEhvdXNlIExhbm5pc3RlciwwClR5d2luLExhbm5pc3RlcixUeXdpbkBMYW5uaXN0ZXIuY29tLExhbm5pc3RlcixIb3VzZSBMYW5uaXN0ZXIsMA=='

Input

Name Type Required Description
ProgramId Integer True Id of the program to add members to.
ProgramMemberStatus String True Program member status for members being added.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
RowsProcessed Integer The number of rows processed so far.
RowsFailed Integer The number of rows failed so far.
RowsWithWarning Integer The number of rows with a warning so far.
Message String The status message of the batch.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CancelExportJob

Cancel a bulk export job.

Execute

Sample
	EXECUTE CancelExportJob Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE CancelExportJob Table='CustomObject_cdata', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE CancelExportJob Table='Activities', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE CancelExportJob Table='Activities_NewLead', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE CancelExportJob Table='ProgramMembers', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'

Input

Name Type Required Description
Id String True The id of the export job.
Table String True The table to export. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Status String The status of the export process.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
QueuedAt Datetime The date when the export job was queued.
StartedAt Datetime The date when the export job was started.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateActivitiesExportJob

Create an activities export job based on the given filters.

Execute

Sample
	EXECUTE CreateActivitiesExportJob CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-01-10T00:00:00Z'
	EXECUTE CreateActivitiesExportJob ActivityTypeIds='1', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE CreateActivitiesExportJob ActivityTypeIds='1,2,23', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE CreateActivitiesExportJob ActivityTypeIds='1', PrimaryAttributeValueIds='1,2,3', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'
	EXECUTE CreateActivitiesExportJob ActivityTypeIds='1', PrimaryAttributeValues='value1,value2', CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtStartAt='2023-02-25T00:00:00Z'

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

CreatedAtStartAt Datetime False Inclusive lower bound filter for the activity creation datetime.
CreatedAtEndAt Datetime False Inclusive upper bound filter for the activity creation datetime.
ActivityTypeIds String False The id of a the activity type. Available activity types can be queried from the view ActivityTypes.
PrimaryAttributeValueIds String False Filter based on the id of the primary attribute of the activity. When used, the activityTypeIds filter must be present and only contain activity ids that match the corresponding asset group. Cannot be combined with PrimaryAttributeValues.
PrimaryAttributeValues String False Filter based on the values of the primary attribute of the activity. When used, the activityTypeIds filter must be present and only contain activity ids that match the corresponding asset group. Cannot be combined with PrimaryAttributeValueIds.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateCustomObjectsExportJob

Create a custom object export job based on the given filters. Only 1 filter type can be specified.

Execute

Sample
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-01-10T00:00:00Z'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', UpdatedAtStartAt='2023-01-01T00:00:00Z', UpdatedAtStartAt='2023-02-25T00:00:00Z', Columns='lead=LeadId,*'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', SmartListName='CDataSmartList'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', SmartListId=12
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', StaticListName='ImportTest0407_csv'
	EXECUTE CreateCustomObjectsExportJob Table='CustomObject_cdatajp3', StaticListId=13

Input

Name Type Required Description
Table String True Name of the custom object to export data for. Matches the name of custom objects listed in sys_tables.
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
StaticListId Integer False The id of a static list you want to use as a filter.
StaticListName String False The name of a static list you want to use as a filter.
SmartListId Integer False The id of a smart list you want to use as a filter.
SmartListName String False The name of a smart list you want to use as a filter.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateCustomObjectsImportJob

Imports the program custom object records from the provided file.

Execute

Sample
	EXECUTE CreateCustomObjectsImportJob Table='CustomObject_customObject_cdatajp', LocalPath='C:/users/cdata/file.csv'
	EXECUTE CreateCustomObjectsImportJob Table='CustomObject_customObject_cdatajp', LocalPath='/tmp/file.csv'
	EXECUTE CreateCustomObjectsImportJob Table='CustomObject_customObject_cdatajp', FileData='bWFpbEFkZHJlc3MsbmFtZQpzdXBwb3J0X2NkYXRhLmNvLmpwMUBjZHRhLmNvbSxjZGF0YTE3CnN1cHBvcnRfY2RhdGEuY28uanAyQGNkdGEuY29tLGNkYXRhMTg='

Input

Name Type Required Description
Table String True The custom object table name.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.
PollingInterval Integer False In case the job queue is full Marketo will throw an error. We will keep trying to enqueue the job until the queue is freed. This value specifies the time in milliseconds between each poll. Set to -1 to simply throw the error instead of retrying. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateEmailTemplate

Creates a new email template.

Execute

Sample
	EXECUTE CreateEmailTemplate Name='TestTemplateNewDriver_', FileData='PGh0bWw+Cjxib2R5Pgo8aDE+VEVTVCBIVE1MPC9oMT4KPC9ib2R5Pgo8L2h0bWw+', Description='Test Create Email Template', FolderId=27, FolderType='Folder'
	EXECUTE CreateEmailTemplate Name='TestTemplateNewDriver_', LocalPath='C:/users/cdata/file.txt', Description='Test Create Email Template', FolderId=27, FolderType='Folder'
	EXECUTE CreateEmailTemplate Name='TestTemplateNewDriver_', LocalPath='/tmp/file.txt', Description='Test Create Email Template', FolderId=27, FolderType='Folder'

Input

Name Type Required Description
Name String True Name of the Email Template. Must be unique under the parent folder.
Description String False Description of the email template.
FolderId Integer True Id of the folder where the template will be created.
FolderType String True Type of the folder where the template will be created.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id Integer Id of the created email template.
URL String Url of the created email template.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateExportJob

Create an export job for the search criteria defined via the filter aggregate input. Returns the 'JobId' which can be passed as a parameter in subsequent calls to Bulk Export Activities. Use EnqueueExportJob to queue the export job for processing. Use GetExportJobStatus to retrieve status of export job.

Execute

Sample
	EXECUTE CreateExportJob Table='Leads', FiltersAggregate='{"createdAt": {endAt": "2023-12-01", startAt": "2023-11-01"}}'
	EXECUTE CreateExportJob Table='Leads', Columns='Id,test98,updatedAt,*', FiltersAggregate='{"createdAt": {endAt": "2023-12-01", startAt": "2023-11-01"}}'

Input

Name Type Required Description
Table String True The table to export. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.
Format String False Format of export file to be generated.

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that you want to retrieve. Defaults to * (all columns). You can specify different header names for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. The exported file headers will be built using API names. Exported file column names can be changed using the Columns input. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

FiltersAggregate String False JSON aggregate for the filters required in the request body.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateFile

Creates a new file from the included payload.

Execute

Sample
	EXECUTE CreateFile FileData='aGVsbG8gd29ybGQ=', Description='Test Create File', Name='newFile_0', FolderId=35, FolderType='Folder'
	EXECUTE CreateFile LocalPath='C:/users/cdata/file.txt', Description='Test Create File', Name='newFile_0', FolderId=35, FolderType='Folder'
	EXECUTE CreateFile LocalPath='/tmp/file.txt', Description='Test Create File', Name='newFile_0', FolderId=35, FolderType='Folder'

Input

Name Type Required Description
Name String True Name of the file. Must be unique under the parent folder.
Description String False Description of the file.
FolderId Integer True Id of the folder where the file will be created.
FolderType String True Type of the folder where the file will be created.
InsertOnly Boolean False Indicates whether the call should fail if there is already an existing file with the same name.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id Integer Id of the created file.
URL String URL of the created file.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateLeadsExportJob

Create a leads export job based on the given filters. Only 1 filter type can be specified.

Execute

Sample
	EXECUTE CreateLeadsExportJob CreatedAtStartAt='2024-02-02T00:00:00Z', CreatedAtEndAt='2024-02-02T00:00:00Z'
	EXECUTE CreateLeadsExportJob CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtEndAt='2023-02-25T00:00:00Z', Columns='Id'
	EXECUTE CreateLeadsExportJob CreatedAtStartAt='2023-01-01T00:00:00Z', CreatedAtEndAt='2023-01-10T00:00:00Z', Columns='id=LeadID,*'
	EXECUTE CreateLeadsExportJob SmartListName='CDataSmartList'
	EXECUTE CreateLeadsExportJob StaticListName='ImportTest0407_csv'
	EXECUTE CreateLeadsExportJob SmartListId=12
	EXECUTE CreateLeadsExportJob StaticListId=13

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

CreatedAtStartAt Datetime False Inclusive lower bound filter for the lead creation datetime.
CreatedAtEndAt Datetime False Inclusive upper bound filter for the lead creation datetime.
UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
StaticListId Integer False The id of a static list you want to use as a filter.
StaticListName String False The name of a static list you want to use as a filter.
SmartListId Integer False The id of a smart list you want to use as a filter.
SmartListName String False The name of a smart list you want to use as a filter.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateLeadsImportJob

Imports the lead records from the provided file.

Execute

Sample
	EXECUTE CreateLeadsImportJob LocalPath='C:/users/cdata/file.csv'
	EXECUTE CreateLeadsImportJob LocalPath='/tmp/file.csv'
	EXECUTE CreateLeadsImportJob LookupField='testCustomfieldEmail', ListId=1570, PartitionName='testPartition', LocalPath='/tmp/file.csv'
	EXECUTE CreateLeadsImportJob FileData='ZW1haWwsZmlyc3ROYW1lLGxhc3ROYW1lLHRlc3RDdXN0b21maWVsZEVtYWlsCnRlc3RAZXhhbXBsZS5jb20sSm9obixEb2UsdGVzdEB0ZXN0Q3VzdG9tZmllbGRFbWFpbC5jZGF0YS5jb20KdGVzdDEyMzFAZXhhbXBsZS5jb20sSm9obixEb2UsdGVzdDFAdGVzdEN1c3RvbWZpZWxkRW1haWwuY2RhdGEuY29t'

Input

Name Type Required Description
LookupField String False Field to use for deduplication. Custom fields (string, email, integer), and the following field types are supported: id, cookies, email, twitterId, facebookId, linkedInId, sfdcAccountId, sfdcContactId, sfdcLeadId, sfdcLeadOwnerId, sfdcOpptyId. Default is email. You can use id for update only operations.
PartitionName String False Name of the lead partition to import to.
ListId Integer False Id of the static list to import into.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.
PollingInterval Integer False In case the job queue is full Marketo will throw an error. We will keep trying to enqueue the job until the queue is freed. This value specifies the time in milliseconds between each poll. Set to -1 to simply throw the error instead of retrying. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateProgramMembersExportJob

Create a program members export job based on the given filters.

Execute

Sample
	EXECUTE CreateProgramMembersExportJob ProgramId='6117'
	EXECUTE CreateProgramMembersExportJob ProgramId='6117,6182'
	EXECUTE CreateProgramMembersExportJob ProgramId='6117', Columns='acquiredBy=acqBy,*'
	EXECUTE CreateProgramMembersExportJob ProgramId='6117,6182', UpdatedAtStartAt='2024-01-01', UpdatedAtEndAt='2024-01-30', IsExhausted='false', NurtureCadence='paus', StatusNames='Not in Program'

Input

Name Type Required Description
Format String False Format of export file to be generated. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

Columns String False Comma separated list of columns that will be retrieved. Defaults to * (all columns). Different header names can be specified for each column using this syntax: columnName=csvHeaderName i.e.:leadRole=Role,marketingSuspendedCause=SuspendedCause,*

The default value is *.

UseAPINames Boolean False If set to true, you must specify fields in the columns input based on their name in the Marketo API. Defaults to false, meaning you can provided column names based on the drivers metadata (sys_tablecolumns).

The default value is false.

UpdatedAtStartAt Datetime False Inclusive lower bound filter for the lead update datetime.
UpdatedAtEndAt Datetime False Inclusive upper bound filter for the lead update datetime.
ProgramId String True Comma separated list of up to 10 program ids for which program members will be retrieved.
IsExhausted Boolean False Boolean used to filter program membership records for people who have exhausted content.
NurtureCadence String False Used to filter program membership records for a given nurture cadence.

The allowed values are paus, norm.

StatusNames String False Comma separated list of program member status names to filter by.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
Status String The status of the export process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

CreateProgramMembersImportJob

Imports the program member records from the provided file.

Execute

Sample
	EXECUTE CreateProgramMembersImportJob ProgramId=6145, ProgramMemberStatus='Influenced', LocalPath='C:/users/cdata/file.csv'
	EXECUTE CreateProgramMembersImportJob ProgramId=6145, ProgramMemberStatus='Influenced', LocalPath='/tmp/file.csv'
	EXECUTE CreateProgramMembersImportJob ProgramId=6145, ProgramMemberStatus='Influenced', FileData='Zmlyc3ROYW1lLGxhc3ROYW1lLGVtYWlsLHRpdGxlLGNvbXBhbnksbGVhZFNjb3JlCkpvYW5uYSxMYW5uaXN0ZXIsSm9hbm5hQExhbm5pc3Rlci5jb20sTGFubmlzdGVyLEhvdXNlIExhbm5pc3RlciwwClR5d2luLExhbm5pc3RlcixUeXdpbkBMYW5uaXN0ZXIuY29tLExhbm5pc3RlcixIb3VzZSBMYW5uaXN0ZXIsMA=='

Input

Name Type Required Description
ProgramId Integer True Id of the program to add members to.
ProgramMemberStatus String True Program member status for members being added.
Format String False Format of the import file. Available values are: CSV, TSV, SSV

The allowed values are CSV, TSV, SSV.

The default value is CSV.

LocalPath String False The absolute path of the file to import.
FileData String False Base64 string representation of the CSV content. Only used if LocalPath and InputStream are not set.
PollingInterval Integer False In case the job queue is full Marketo will throw an error. We will keep trying to enqueue the job until the queue is freed. This value specifies the time in milliseconds between each poll. Set to -1 to simply throw the error instead of retrying. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import process.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

DeactivateSmartCampaign

Deactivates a trigger smart campaign.

Execute

Sample
	EXECUTE DeActivateSmartCampaign Id=1

Input

Name Type Required Description
Id String True Id of the trigger smart campaign to deactivate.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

DeleteInvitedUser

Delete pending user. A pending user is a user that has not yet accepted invitation. Requires permissions: Access User Management Api and Access Users.

Execute

Sample
	EXECUTE DeleteInvitedUser UserId='test@cdata.com'

Input

Name Type Required Description
UserId String True The user id in the form of an email address.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

EnqueueExportJob

Puts an export job in queue and starts the job when computing resources become available.

Execute

Sample
	EXECUTE EnqueueExportJob Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE EnqueueExportJob Table='CustomObject_cdata', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE EnqueueExportJob Table='Activities', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE EnqueueExportJob Table='Activities_NewLead', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE EnqueueExportJob Table='ProgramMembers', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'

Input

Name Type Required Description
Id String True The id of the export job.
Table String True The table to export. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.
PollingInterval Integer False In case the job queue is full Marketo will throw an error. We will keep trying to enqueue the job until the queue is freed. This value specifies the time in milliseconds between each poll. Set to -1 to simply throw the error instead of retrying. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Status String The status of the export process.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
QueuedAt Datetime The date when the export job was queued.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetEmailFullContent

Returns the serialized HTML version of the email.

Execute

Sample
	EXECUTE GetEmailFullContent Id=23685
	EXECUTE GetEmailFullContent Id=23685, EmailContentType='Text'

Input

Name Type Required Description
Id String True The Id of the email.
Status String False Status filter for draft or approved versions. Defaults to approved if asset is approved, draft if not.

The allowed values are approved, draft.

LeadId String False The lead id to impersonate. Email is rendered as though it was received by this lead.
EmailContentType String False Email content type to return. Default is HTML.

The allowed values are HTML, Text.

Result Set Columns

Name Type Description
Id String The Id of the email.
Content String The content of the email.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetEmailTemplateContent

Returns the content for a given email template.

Execute

Sample
	EXECUTE GetEmailTemplateContent Id=1054

Input

Name Type Required Description
Id Integer True Id of the email template.
Status String False The status of the email template to retrieve the content from.

The allowed values are draft, approved.

Result Set Columns

Name Type Description
Id Integer Id of the email template.
Content String Content of the email template.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetExportJobFile

Returns the file generated by the bulk job with the given Id.

Execute

Sample
	EXECUTE GetExportJobFile Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobFile Table='CustomObject_cdata', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobFile Table='Activities', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobFile Table='Activities_NewLead', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobFile Table='ProgramMembers', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobFile Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d', LocalPath='C:/users/cdata/file.txt'
	EXECUTE GetExportJobFile Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d', LocalPath='/tmp/file.txt'

Input

Name Type Required Description
Id String True The id of the export job.
Table String True The exported table. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.
LocalPath String False The absolute path where the file will be saved.
ChunkSize Long False The chunk size based on which the CSV file will be downloaded. Defaults to the value of the connection property 'ChunkSize'. Set to -1 to download the whole file at once.
DownloadSize Long False The size in bytes to download. Can be retrieved from the field fileSize of the /status.json endpoint. If not set it will be automatically resolved and the whole file will be downloaded.
MaxThreads Integer False The number of threads used to download the file. Defaults to the value specified in the connection string property 'MaxThreads'.

Result Set Columns

Name Type Description
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetExportJobStatus

Returns the status of an export job. Job status is available for 30 days after Completed or Failed status was reached.

Execute

Sample
	EXECUTE GetExportJobStatus Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobStatus Table='CustomObject_cdata', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobStatus Table='Activities', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobStatus Table='Activities_NewLead', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE GetExportJobStatus Table='ProgramMembers', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'

Input

Name Type Required Description
Id String True The id of the export job.
Table String True The exported table. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Status String The status of the export job. Applicable values: Created, Queued, Processing, Cancelled, Completed, Failed.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
QueuedAt Datetime The date when the export job was queued.
StartedAt Datetime The date when the export job was started.
FinishedAt Datetime The date when the export job was finished.
NumberOfRecords Long The number of records contained within the generated file.
FileSize Long The size in bytes of the generated file.
FileChecksum String The checksum of the generated file.
ErrorMessage String The error message in case of failed status.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetImportJobFailures

Returns the list of failures for the import batch job

Execute

Sample
	EXECUTE GetImportJobFailures Id=1612, Table='Leads'
	EXECUTE GetImportJobFailures Id=1612, Table='CustomObject_cdata', LocalPath='C:/users/cdata/file.txt'
	EXECUTE GetImportJobFailures Id=1612, Table='ProgramMembers ', LocalPath='/tmp/file.txt'

Input

Name Type Required Description
Id String True The id of the import job.
Table String True The table that data was imported to. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object.
LocalPath String False The absolute path where the file will be saved.

Result Set Columns

Name Type Description
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetImportJobStatus

Returns the status of an import job.

Execute

Sample
	EXECUTE GetImportJobStatus Id=1608, Table='Leads'
	EXECUTE GetImportJobStatus Id=1609, Table='CustomObject_cdata'
	EXECUTE GetImportJobStatus Id=1610, Table='ProgramMembers'

Input

Name Type Required Description
Id String True The id of the import job.
Table String True The table that data was imported to. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import job. Applicable values: Queued, Importing, Complete, Failed.
RowsProcessed Integer The number of rows processed so far.
RowsFailed Integer The number of rows failed so far.
RowsWithWarning Integer The number of rows with a warning so far.
Message String The status message of the batch.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetImportJobWarnings

Returns the list of warnings for the import batch job

Execute

Sample
	EXECUTE GetImportJobWarnings Id=1612, Table='Leads'
	EXECUTE GetImportJobWarnings Id=1612, Table='CustomObject_cdata', LocalPath='C:/users/cdata/file.txt'
	EXECUTE GetImportJobWarnings Id=1612, Table='ProgramMembers ', LocalPath='/tmp/file.txt'

Input

Name Type Required Description
Id String True The id of the import job.
Table String True The table that data was imported to. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object.
LocalPath String False The absolute path where the file will be saved.

Result Set Columns

Name Type Description
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetInvitedUserById

Retrieve a single pending user record through its Id. A pending user is a user that has not yet accepted invitation. Requires permissions: Access User Management Api and Access Users.

Execute

Sample
	EXECUTE GetInvitedUserById UserId='test@cdata.com'

Input

Name Type Required Description
UserId String True The user id in the form of an email address.

Result Set Columns

Name Type Description
UserId String The user id in the form of an email address.
Id Integer The user identifier.
EmailAddress String The user's email address.
FirstName String The user's first name.
LastName String The user's last name.
SubscriptionId String The subscription id.
Status String The user status.
CreatedAt Datetime The date and time when the user login was created.
UpdatedAt Datetime The date and time when the user login was last updated.
ExpiresAt Datetime The date and time when the user login expires.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

GetOAuthAccessToken

Get an access token from Marketo.

Execute

Sample
	EXECUTE GetOAuthAccessToken

Result Set Columns

Name Type Description
OAuthAccessToken String The access token used for communication with Marketo.
ExpiresIn String The remaining lifetime of the access token.

CData Python Connector for Marketo

GetSnippetContent

Returns the content for a given snippet.

Execute

Sample
	EXECUTE GetSnippetContent SnippetId=1054
	EXECUTE GetSnippetContent SnippetId=1054, Status='draft'

Input

Name Type Required Description
SnippetId Integer True Id of the snippet.
Status String False The status of the snippet to retrieve the content from.

The allowed values are draft, approved.

Result Set Columns

Name Type Description
Content String Content of the snippet.
Type String Type of the snippet content.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

InviteUser

Send an email invitation to new user. Requires permissions: Access User Management Api and Access Users.

Execute

Sample
	EXECUTE InviteUser EmailAddress='test@cdata.com', FirstName='insert', LastName='api', UserWorkspaceRoles='[{"accessRoleId": 103, "workspaceId": 0}]

	EXECUTE InviteUser EmailAddress='test@cdata.com', FirstName='insert', LastName='api', UserWorkspaceRoles='[{"accessRoleId": 103, "workspaceId": 0}]', Reason='test', UserId='test12@cdata.com', ApiOnly=true, ExpiresAt='2024-12-12T00:00:00-01:00'

Input

Name Type Required Description
EmailAddress String True The user's email address.
FirstName String True The user's first name.
LastName String True The user's last name.
UserWorkspaceRoles String True The user roles provided as a json array of objects containing accessRoleId and workspaceId.
UserId String False The user id in the form of an email address. If not specified, the emailAddress value is used.
Reason String False Reason for user invitation.
ApiOnly Boolean False Whether the user is API-Only.

The default value is false.

ExpiresAt Datetime False Date and time when user login expires.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

MergeLeads

Merges two or more known lead records into a single lead record.

Execute

Sample
	EXECUTE MergeLeads WinningLeadId=1657, LosingLeadId='1665,1666,1667'

Input

Name Type Required Description
WinningLeadId Integer True Id of the winning lead record.
LosingLeadId String True Ids of losing Lead records.
MergeInCRM Boolean False Name of the new status for the program member.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

PollExportJobStatus

Continuously polls the bulk API for the status of the export job until one of the following statuses is returned: Completed, Cancelled, Failed.

Execute

Sample
	EXECUTE PollExportJobStatus Table='Leads', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE PollExportJobStatus Table='CustomObject_cdata', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE PollExportJobStatus Table='Activities', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE PollExportJobStatus Table='Activities_NewLead', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'
	EXECUTE PollExportJobStatus Table='ProgramMembers', Id='b4841291-0d27-48bc-8e9a-c639a6f33a0d'

Input

Name Type Required Description
Id String True The id of the export job.
Table String True The exported table. Only certain tables support bulk exports, including: Activities, Leads, ProgramMembers and any custom object.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the export job.
Status String The status of the export process. Applicable values: Created, Queued, Processing, Cancelled, Completed, Failed.
Format String The format of the export job.
CreatedAt Datetime The date when the export job was created.
QueuedAt Datetime The date when the export job was queued.
StartedAt Datetime The date when the export job was started.
FinishedAt Datetime The date when the export job was finished.
NumberOfRecords Long The number of records contained within the generated file.
FileSize Long The size in bytes of the generated file.
FileChecksum String The checksum of the generated file.
ErrorMessage String The error message in case of failed status.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

PollImportJobStatus

Will continuously poll the bulk API for the status of the import job until one of the following statuses is returned: Complete, Failed.

Execute

Sample
	EXECUTE PollImportJobStatus Id=1608, Table='Leads'
	EXECUTE PollImportJobStatus Id=1609, Table='CustomObject_cdata'
	EXECUTE PollImportJobStatus Id=1610, Table='ProgramMembers'

Input

Name Type Required Description
Id String True The id of the import job.
Table String True The table to import. Only certain tables support bulk imports, including: Leads, ProgramMembers and any custom object.
PollingInterval Integer False The time in milliseconds between each poll. If not specified the value provided in the connection string will be used. See JobPollingInterval connection property for more information and the default value.

Result Set Columns

Name Type Description
Id String The Id of the import job.
Status String The status of the import job. Applicable values: Queued, Importing, Complete, Failed.
RowsProcessed Integer The number of rows processed so far.
RowsFailed Integer The number of rows failed so far.
RowsWithWarning Integer The number of rows with a warning so far.
Message String The status message of the batch.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

ScheduleCampaign

Passes a set of leads to a trigger campaign to run through the campaign's flow.

Execute

Sample
	EXECUTE ScheduleCampaign CampaignId=1107, RunAt='2024-06-06T01:00:00', CloneToProgramName='Program 1', TokenName='TestingSP', TokenValue='test'
	EXECUTE ScheduleCampaign CampaignId=1107, RunAt='2024-06-06T01:00:00', TokenName='TestingSP,testTokenIndritB', TokenValue='\"test,asd\",2024-12-12'
	EXECUTE ScheduleCampaign CampaignId=1107, RunAt='2024-06-06T01:00:00', TokenName#1='TestingSP', TokenValue#1='test',  TokenName#2='testTokenIndritB', TokenValue#2='2024-12-12'

Input

Name Type Required Description
CampaignId Integer True Id of the campaign to schedule.
RunAt Datetime False Datetime to run the campaign at. If unset, the campaign will be run five minutes after the call is made.
CloneToProgramName String False Name of the resulting program. When used, this procedure is limited to 20 calls per day.
TokenName String False Name of the token. Should be formatted as '{{my.name}}'.
TokenValue String False Value of the token.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

SendEmailSample

Sends a sample email to the given email address. Leads may be impersonated to populate data for tokens and dynamic content.

Execute

Sample
	EXECUTE SendEmailSample Id=23685, Email='support@cdata.com'

Input

Name Type Required Description
Id String True The Id of the email.
Email String True Email address to receive the sample email.
LeadId String False Id of a lead to impersonate. Tokens and dynamic content will be populated as though it were sent to the lead.
TextOnly String False Set to true to send the text only version along with the HTML version. Default false/

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

TriggerCampaign

Remotely schedules a batch campaign to run at a given time.

Execute

Sample
	EXECUTE TriggerCampaign CampaignId=12
	EXECUTE TriggerCampaign CampaignId=12, LeadIds='1'
	EXECUTE TriggerCampaign CampaignId=12, LeadIds='1,2,3', TokenName='token1,token2', TokenValue='value1,value2'

Input

Name Type Required Description
CampaignId Integer True Id of the campaign to schedule.
LeadIds String False Lead ids to run through the campaign's flow.
TokenName String False Name of the token. Should be formatted as '{{my.name}}'
TokenValue String False Value of the token

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UnApproveAsset

Revokes approval based on the given asset type and id.

Execute

Sample
	EXECUTE UnApproveAsset Id=1005, Type='LandingPage'

Input

Name Type Required Description
Id String True Id of the asset.
Type String True Type of the asset.

The allowed values are EmailTemplate, Email, Form, LandingPageTemplate, LandingPage, Snippet.

Result Set Columns

Name Type Description
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' contains the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateEmailContent

Updates the content of an email.

Execute

Sample
	EXECUTE UpdateEmailContent EmailId=23685, FromEmail='test@cdata.com', FromName='test', Subject='test subject', ReplyTo='support2@cdata.com'

Input

Name Type Required Description
EmailId String True The Id of the email.
Subject String False Subject Line of the Email.
FromEmail String False From-address of the Email.
FromName String False From-name of the Email.
ReplyTo String False Reply-To address of the Email.

Result Set Columns

Name Type Description
EmailId String The Id of the updated email content.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateEmailFullContent

Replaces the HTML of an Email that has had its relationship broken from its template.

Execute

Sample
	EXECUTE UpdateEmailFullContent EmailId=23685, FileData='aGVsbG8gd29ybGQ='
	EXECUTE UpdateEmailFullContent EmailId=23685, LocalPath='C:/users/cdata/file.txt'
	EXECUTE UpdateEmailFullContent EmailId=23685, LocalPath='/tmp/file.txt'

Input

Name Type Required Description
EmailId String True The Id of the email.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
EmailId Integer Id of the updated email template.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateEmailTemplateContent

Updates the content of the given email template.

Execute

Sample
	EXECUTE UpdateEmailTemplateContent EmailTemplateId=1054, FileData='PGh0bWw+Cjxib2R5Pgo8aDE+VEVTVCBIVE1MIFVQREFURUQ8L2gxPgo8L2JvZHk+CjwvaHRtbD4='
	EXECUTE UpdateEmailTemplateContent EmailTemplateId=1054, LocalPath='C:/users/cdata/file.txt'
	EXECUTE UpdateEmailTemplateContent EmailTemplateId=1054, LocalPath='/tmp/file.txt'

Input

Name Type Required Description
EmailTemplateId Integer True Id of the email template to update.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
EmailTemplateId Integer Id of the updated email template.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateFile

Updates the content of the given file.

Execute

Sample
	EXECUTE UpdateFile Id=3312, FileData='aGVsbG8gd29ybGQgdXBkYXRlZA=='
	EXECUTE UpdateFile LocalPath='C:/users/cdata/file.txt'
	EXECUTE UpdateFile LocalPath='/tmp/file.txt'

Input

Name Type Required Description
Id Integer True Id of the file to update.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
Id Integer Id of the updated file.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateLandingPageTemplateContent

Updates the content for the target landing page template.

Execute

Sample
	EXECUTE UpdateLandingPageTemplateContent LandingPageTemplateId=1005, FileData='aGVsbG8gd29ybGQgdXBkYXRlZA=='
	EXECUTE UpdateLandingPageTemplateContent LandingPageTemplateId=1005, LocalPath='C:/users/cdata/file.txt'
	EXECUTE UpdateLandingPageTemplateContent LandingPageTemplateId=1005, LocalPath='/tmp/file.txt'

Input

Name Type Required Description
LandingPageTemplateId Integer True Id of the landing page template.
LocalPath String False The absolute path to a file where data is read from.
FileData String False Base64 string representation of the file content. Only used if LocalPath and InputStream are not set.

Result Set Columns

Name Type Description
LandingPageTemplateId String Id of the asset.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateLeadPartition

Update the lead partition for a list of leads.

Execute

Sample
	EXECUTE UpdateLeadPartition LeadId='1557', PartitionName='testPartition'
	EXECUTE UpdateLeadPartition LeadId='1557,1558,1559', PartitionName='testPartition'

Input

Name Type Required Description
PartitionName String True Name of the partition.
LeadId String True Ids of Lead records to update.

Result Set Columns

Name Type Description
Id Integer Id of the lead.
Status String Status of update operation.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateLeadProgramStatus

Changes the program status for a list of leads in a target program. Only existing members of the program may have their status changed with this procedure.

Execute

Sample
	EXECUTE UpdateLeadProgramStatus LeadIds='1557,1558,1559', ProgramId=1001, StatusName='Not in Program'

Input

Name Type Required Description
ProgramId Integer True Id of the program.
LeadIds String True Ids of Lead records to update.
StatusName String True Name of the new status for the program member.

Result Set Columns

Name Type Description
Id Integer Id of the lead.
Status String Status of update operation.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

UpdateSnippetContent

Updates the content of a snippet.

Execute

Sample
	EXECUTE UpdateSnippetContent SnippetId=1054, Content='<h1>test<h1>', Type='HTML'

Input

Name Type Required Description
SnippetId Integer True The Id of the snippet.
Content String True The content of the snippet.
Type String False The type of the content of the snippet.

The allowed values are DynamicContent, Text, HTML.

The default value is Text.

Result Set Columns

Name Type Description
Id Integer The Id of the updated snippet.
Success Boolean Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details.
Details String Details of execution failure. NULL if success=true.

CData Python Connector for Marketo

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 Marketo:

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 connector can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries, including batch operations:

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

CData Python Connector for Marketo

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 Python Connector for Marketo

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 Python Connector for Marketo

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.
IsInsertable Boolean Whether the table can be inserted into.
IsDeleteable Boolean Whether rows can be deleted from the table.

CData Python Connector for Marketo

sys_tablecolumns

Describes the columns of the available tables and views.

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

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

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.
ColumnType String The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN.
ColumnCapabilities Int32 A bit mask denoting the column's write capabilities. The value is the sum of the following: 1 if the column is required for INSERTs, 2 if the column is allowed for INSERTs, and 4 if the column is allowed for UPDATEs. A value of 0 indicates that the write capabilities of the column are unknown or that the column is read-only.

CData Python Connector for Marketo

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 Python Connector for Marketo

sys_procedureparameters

Describes stored procedure parameters.

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

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

To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:

SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'GetEmailFullContent' AND IncludeResultColumns='True'

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.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
DataTypeName String The name of the data type.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric 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.
Values String The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated.
SupportsStreams Boolean Whether the parameter represents a file that you can pass as either a file path or a stream.
IsPath Boolean Whether the parameter is a target path for a schema creation operation.
Default String The value used for this parameter when no value is specified.
SpecificName String A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here.
IsCDataProvided Boolean Whether the procedure is added/implemented by CData, as opposed to being a native Marketo procedure.

Pseudo-Columns

Name Type Description
IncludeResultColumns Boolean Whether the output should include columns from the result set in addition to parameters. Defaults to False.

CData Python Connector for Marketo

sys_keycolumns

Describes the primary and foreign keys.

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

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

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 Python Connector for Marketo

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 Python Connector for Marketo

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 Python Connector for Marketo

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 Python Connector for Marketo

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 Python Connector for Marketo

sys_sqlinfo

Describes the SELECT query processing that the connector 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 Python Connector for Marketo

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 Python Connector for Marketo

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 Python Connector for Marketo

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.

Connection


PropertyDescription
URLThe URL of the Marketo instance to connect to.

BulkAPI


PropertyDescription
UseBulkAPISpecifies whether to use the Marketo Bulk API.
BulkQueryTimeoutSpecifies the maximum time (in minutes) the provider waits for a bulk query response before timing out.
JobPollingIntervalThe maximum wait time in milliseconds between each job status poll.
BulkLeadsSupportsUpdatedAtIf set to true, the updatedAt filter will be marked as server-side supported.
BulkProgramMembersSupportsUpdatedAtIf set to true, the updatedAt filter will be marked as server-side supported.

OAuth


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

SSL


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

Firewall


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.

Proxy


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Logging


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Schema


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Caching


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Marketo data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.

Miscellaneous


PropertyDescription
DownloadChunkSizeThe size of chunks (in bytes) when downloading large files.
IsCRMEnabledSet to true to avoid pushing tables that are not available when CRM is enabled in Marketo.
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
MaxThreadsSpecifies the number of concurrent requests.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeSpecifies the maximum number of records per page the provider returns when requesting data from Marketo.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Marketo from the provider.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UploadChunkSizeThe size of chunks (in bytes) when uploading large files.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
CData Python Connector for Marketo

Connection

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


PropertyDescription
URLThe URL of the Marketo instance to connect to.
CData Python Connector for Marketo

URL

The URL of the Marketo instance to connect to.

Data Type

string

Default Value

""

Remarks

The URL of the REST API Service. Can be found in Admin -> Integration -> Web Services -> REST API. Example: https://123-abc-456.mktorest.com/ or https://123-abc-456.mktorest.com/rest.

CData Python Connector for Marketo

BulkAPI

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


PropertyDescription
UseBulkAPISpecifies whether to use the Marketo Bulk API.
BulkQueryTimeoutSpecifies the maximum time (in minutes) the provider waits for a bulk query response before timing out.
JobPollingIntervalThe maximum wait time in milliseconds between each job status poll.
BulkLeadsSupportsUpdatedAtIf set to true, the updatedAt filter will be marked as server-side supported.
BulkProgramMembersSupportsUpdatedAtIf set to true, the updatedAt filter will be marked as server-side supported.
CData Python Connector for Marketo

UseBulkAPI

Specifies whether to use the Marketo Bulk API.

Possible Values

Auto, True, False

Data Type

string

Default Value

"False"

Remarks

True The Marketo Bulk API will be used to extract or import data where applicable in SELECT/UPSERT statemnts.
False The driver will not make use of the Bulk API.
Auto The driver will make use of the Bulk API only in cases when the REST API is not sufficient such as when querying more than 100_000 records from the ProgramMembers table.

CData Python Connector for Marketo

BulkQueryTimeout

Specifies the maximum time (in minutes) the provider waits for a bulk query response before timing out.

Data Type

int

Default Value

25

Remarks

When UseBulkAPI is set to true, the connector submits SELECT queries as asynchronous jobs to Marketo. The connector then polls Marketo at regular intervals to check if the results are ready.

This property controls the total amount of time the connector waits for the bulk query to return at least a part of the results before timing out. If the query takes longer than this duration without returning any row, the connection fails with a timeout error. A longer BulkQueryTimeout allows Marketo more time to process large or complex queries, reducing the chance of failure due to timeouts. However, setting this value too high may cause long waits for queries that are unlikely to complete successfully.

This property is different from Timeout, which applies to all connection requests and governs inactivity rather than the execution time of a bulk query.

This property is useful when dealing with large datasets or slow-running queries in Marketo Bulk API. Adjusting this value can help balance query success rates and timeout handling based on expected execution time.

This setting applies only when Marketo Bulk API is used.

CData Python Connector for Marketo

JobPollingInterval

The maximum wait time in milliseconds between each job status poll.

Data Type

string

Default Value

"10000"

Remarks

Initially the wait time is 5 seconds and doubles for each poll until it reaches JobPollingInterval.

CData Python Connector for Marketo

BulkLeadsSupportsUpdatedAt

If set to true, the updatedAt filter will be marked as server-side supported.

Possible Values

Auto, True, False

Data Type

string

Default Value

"Auto"

Remarks

Only some Marketo instances support the UpdatedAt filter for Leads Bulk Exports. To enable the filter you need to reach out to Marketo support.

True The Leads.UpdatedAt filter will be processed server-side.
False The Leads.UpdatedAt filter will be processed client-side.
Auto The driver will execute a probe query to check if the filter is supported or not.

CData Python Connector for Marketo

BulkProgramMembersSupportsUpdatedAt

If set to true, the updatedAt filter will be marked as server-side supported.

Possible Values

Auto, True, False

Data Type

string

Default Value

"Auto"

Remarks

Only some Marketo instances support the UpdatedAt filter for ProgramMembers Bulk Exports. To enable the filter you need to reach out to Marketo support.

True The ProgramMembers.UpdatedAt filter will be processed server-side.
False The ProgramMembers.UpdatedAt filter will be processed client-side.
Auto The driver will execute a probe query to check if the filter is supported or not.

CData Python Connector for Marketo

OAuth

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


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.
CData Python Connector for Marketo

InitiateOAuth

Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.

Possible Values

OFF, REFRESH, GETANDREFRESH

Data Type

string

Default Value

"GETANDREFRESH"

Remarks

OAuth is an authorization framework that enables applications to obtain limited access to user accounts on an HTTP service. The OAuth flow defines the method to be used for:

  • Logging in users.
  • Exchanging user credentials for an OAuth access token to be used for authentication.
  • Providing limited access to applications.

The options for initiating and maintaining OAuth access are named for the parts of that flow that the connector handles:

OFF The connector provides no automatic OAuth flow initiation. The OAuth flow is handled entirely by the user.
This means that the user must refresh the token manually, and reconnect with an updated OAuthAccessToken property when the current token expires.
GETANDREFRESH The connector handles the entire OAuth flow (both GET and REFRESH). This means that if a token already exists, the connector refreshes it when necessary; if no token currently exists, the connector obtains it by prompting the user to login.
REFRESH The user obtains the OAuth Access Token and sets up the sequence for refreshing the OAuth Access Token. (The user is never prompted to log in to authenticate.) After the user logs in, the connector handles the refresh of the OAuth Access Token.

For more information on how to set up OAuth and use this property when configuring a connection, see Establishing a Connection.

CData Python Connector for Marketo

OAuthClientId

Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.

Data Type

string

Default Value

""

Remarks

This property is required in two cases:

  • When using a custom OAuth application, such as in web-based authentication flows, service-based authentication, or certificate-based flows that require application registration.
  • If the driver does not provide embedded OAuth credentials.

(When the driver provides embedded OAuth credentials, this value may already be provided by the connector and thus not require manual entry.)

OAuthClientId is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.

OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can usually find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.

While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Marketo

OAuthClientSecret

Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).

Data Type

string

Default Value

""

Remarks

This property (sometimes called the application secret or consumer secret) is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.

The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication fails with either an invalid_client or an unauthorized_client error.

OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application.

Notes:

  • This value should be stored securely and never exposed in public repositories, scripts, or unsecured environments.
  • Client secrets may also expire after a set period. Be sure to monitor expiration dates and rotate secrets as needed to maintain uninterrupted access.

For more information on how this property is used when configuring a connection, see Establishing a Connection

CData Python Connector for Marketo

OAuthAccessToken

Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.

Data Type

string

Default Value

""

Remarks

OAuthAccessToken is a temporary credential that authorizes access to protected resources. It is typically returned by the identity provider after the user or client application completes an OAuth authentication flow. This property is most commonly used in automated workflows or custom OAuth implementations where you want to manage token handling outside of the driver.

The OAuth access token has a server-dependent timeout, limiting user access. The timeout is set using the OAuthExpiresIn property. However, it can be reissued between requests to keep access alive as long as the user keeps working.

If InitiateOAuth is set to REFRESH, we recommend that you also set both OAuthExpiresIn and OAuthTokenTimestamp. The connector uses these properties to determine when the token expires so it can refresh most efficiently. If OAuthExpiresIn and OAuthTokenTimestamp are not specified, the connector refreshes the token immediately.

Note: Access tokens should be treated as sensitive credentials and stored securely. Avoid exposing them in logs, scripts, or configuration files that are not access-controlled.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Marketo

OAuthSettingsLocation

Specifies the location of the settings file where OAuth values are saved.

Data Type

string

Default Value

"%APPDATA%\\CData\\Marketo Data Provider\\OAuthSettings.txt"

Remarks

Storing OAuth settings in a central location avoids the need for users to enter OAuth connection properties manually each time they log in. It also enables credentials to be shared across connections or processes.

You can store OAuth values in a central file for shared access to those values, in either of the following ways:

  • Set InitiateOAuth to either GETANDREFRESH or REFRESH and specify a filepath to the OAuth settings file.
  • Use memory storage to load the credentials into static memory.

The following sections provide more detail on each of these methods.

Specifying the OAuthSettingsLocation Filepath

The default OAuth setting location is %APPDATA%\\CData\\Marketo Data Provider\\OAuthSettings.txt, with %APPDATA% set to the user's configuration directory. Default values vary, depending on the user's operating system.

  • Windows (ODBC and Power BI): registry://%DSN%
  • Windows: %APPDATA%CDataMarketo Data Provider\OAuthSettings.txt
  • Mac: %APPDATA%/CData/Marketo Data Provider/OAuthSettings.txt
  • Linux: %APPDATA%/CData/Marketo Data Provider/OAuthSettings.txt

Loading Credentials Via Memory Storage

Memory locations are specified by using a value starting with memory://, followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose, but it should be unique to the user.

Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again.

To retrieve OAuth property values, query the sys_connection_props system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.

Supported Storage Types

  • memory://: Stores OAuth tokens in-memory (unique identifier, shared within same process, etc.)
  • registry://: Only supported in the Windows ODBC and Power BI editions. Stores OAuth tokens in the registry under the DSN settings. Must end in a DSN name like registry://CData Python Connector for Marketo Data Source, or registry://%DSN%.
  • %DSN%: The name of the DSN you are connecting with.
  • Default (no prefix): Stores OAuth tokens within files. The value can be either an absolute path, or a path starting with %APPDATA% or %PROGRAMFILES%.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Marketo

OAuthExpiresIn

Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.

Data Type

string

Default Value

""

Remarks

The OAuth Access Token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthExpiresIn is the number of seconds the token is valid from when it was created. For example, a token generated at 2024-01-29 20:00:00 UTC that expires at 2024-01-29 21:00:00 UTC (an hour later) would have an OAuthExpiresIn value of 3600, no matter what the current time is.

To determine how long the user has before the Access Token will expire, check OAuthTokenTimestamp.

CData Python Connector for Marketo

OAuthTokenTimestamp

Displays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

Data Type

string

Default Value

""

Remarks

The OAuth access token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthTokenTimestamp is the Unix timestamp when the server created the token. For example, OAuthTokenTimestamp=1706558400 indicates the OAuthAccessToken was generated by the server at 2024-01-29 20:00:00 UTC.

CData Python Connector for Marketo

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 Python Connector for Marketo

SSLServerCert

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

Data Type

string

Default Value

""

Remarks

If you are using a TLS/SSL connection, use this property to specify the TLS/SSL certificate to be accepted from the server. If you specify a value for this property, all other certificates that are not trusted by the machine are 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

Note: It is possible to use '*' to signify that all certificates should be accepted, but due to security concerns this is not recommended.

CData Python Connector for Marketo

Firewall

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


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.
CData Python Connector for Marketo

FirewallType

Specifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.

Possible Values

NONE, TUNNEL, SOCKS4, SOCKS5

Data Type

string

Default Value

"NONE"

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Note: By default, the connector connects to the system proxy. To disable this behavior and connect to one of the following proxy types, set ProxyAutoDetect to false.

The following table provides port number information for each of the supported protocols.

Protocol Default Port Description
TUNNEL 80 The port where the connector opens a connection to Marketo. Traffic flows back and forth via the proxy at this location.
SOCKS4 1080 The port where the connector opens a connection to Marketo. SOCKS 4 then passes theFirewallUser value to the proxy, which determines whether the connection request should be granted.
SOCKS5 1080 The port where the connector sends data to Marketo. If the SOCKS 5 proxy requires authentication, set FirewallUser and FirewallPassword to credentials the proxy recognizes.

To connect to HTTP proxies, use ProxyServer and ProxyPort. To authenticate to HTTP proxies, use ProxyAuthScheme, ProxyUser, and ProxyPassword.

CData Python Connector for Marketo

FirewallServer

Identifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Marketo

FirewallPort

Specifies the TCP port to be used for a proxy-based firewall.

Data Type

int

Default Value

0

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Marketo

FirewallUser

Identifies the user ID of the account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Marketo

FirewallPassword

Specifies the password of the user account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Marketo

Proxy

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


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.
CData Python Connector for Marketo

ProxyAutoDetect

Specifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.

Data Type

bool

Default Value

true

Remarks

When this connection property is set to True, the connector checks your system proxy settings for existing proxy server configurations (no need to manually supply proxy server details).

This connection property takes precedence over other proxy settings. If you want to configure the connector to connect to a specific proxy server, set ProxyAutoDetect to False.

On Windows, the connector reads the proxy settings from the Internet Options in the registry, specifically the registry key HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\. On Windows 10 and later, this corresponds to the Proxy Settings found in the Windows Settings.

Note that these settings apply only to the current user of the machine. If you're running an application as a service, the connector does not read your own user's settings. You must instead manually supply the proxy settings in the connector's connection properties.

On Mac, the connector reads proxy settings from the system-configured CFNetwork settings.

On Linux, this property is unsupported, and is set to False by default.

To connect to an HTTP proxy, see ProxyServer. For other proxies, such as SOCKS or tunneling, see FirewallType.

CData Python Connector for Marketo

ProxyServer

Identifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.

Data Type

string

Default Value

""

Remarks

The connector only routes HTTP traffic through the proxy server specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server specified in your system proxy settings.

CData Python Connector for Marketo

ProxyPort

Identifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.

Data Type

int

Default Value

80

Remarks

The connector only routes HTTP traffic through the ProxyServer port specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server port specified in your system proxy settings.

For other proxy types, see FirewallType.

CData Python Connector for Marketo

ProxyAuthScheme

Specifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.

Possible Values

BASIC, DIGEST, NONE, NEGOTIATE, NTLM

Data Type

string

Default Value

"BASIC"

Remarks

Note: The connector only uses this ProxyAuthScheme when ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the authentication method specified in your system proxy settings.

Supported authentication types :

  • BASIC: The connector performs HTTP basic authentication.
  • DIGEST: The connector performs HTTP digest authentication.
  • NTLM: The connector retrieves an NTLM token.
  • NEGOTIATE: The connector retrieves an NTLM or Kerberos token based on the applicable protocol for authentication.
  • NONE: Signifies that the ProxyServer does not require authentication.

For all values other than NONE, you must also set the ProxyUser and ProxyPassword connection properties.

If you need to use another authentication type, such as SOCKS 5 authentication, see FirewallType.

CData Python Connector for Marketo

ProxyUser

Provides the username of a user account registered with the proxy server specified in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyUser
BASIC The username of a user registered with the proxy server.
DIGEST The username of a user registered with the proxy server.
NEGOTIATE The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NTLM The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NONE Do not set the ProxyPassword connection property.

Note: The connector only uses this username if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the username specified in your system proxy settings.

CData Python Connector for Marketo

ProxyPassword

Specifies the password of the user specified in the ProxyUser connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyPassword
BASIC The password associated with the proxy server user specified in ProxyUser.
DIGEST The password associated with the proxy server user specified in ProxyUser.
NEGOTIATE The password associated with the Windows user account specified in ProxyUser.
NTLM The password associated with the Windows user account specified in ProxyUser.
NONE Do not set the ProxyPassword connection property.

For SOCKS 5 authentication or tunneling, see FirewallType.

Note: The connector only uses this password if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the password specified in your system proxy settings.

CData Python Connector for Marketo

ProxySSLType

Specifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.

Possible Values

AUTO, ALWAYS, NEVER, TUNNEL

Data Type

string

Default Value

"AUTO"

Remarks

This property determines when to use SSL for the connection to the HTTP proxy specified by ProxyServer. You can set this connection property to the following values :

AUTODefault setting. If ProxyServer is set to an HTTPS URL, the connector uses the TUNNEL option. If ProxyServer is set to an HTTP URL, the component uses the NEVER option.
ALWAYSThe connection is always SSL enabled.
NEVERThe connection is not SSL enabled.
TUNNELThe connection is made through a tunneling proxy. The proxy server opens a connection to the remote host and traffic flows back and forth through the proxy.

CData Python Connector for Marketo

ProxyExceptions

Specifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyServer is used for all addresses, except for addresses defined in this property. Use semicolons to separate entries.

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to explicitly configure proxy exceptions for this connection, set ProxyAutoDetect to False.

CData Python Connector for Marketo

Logging

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


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.
CData Python Connector for Marketo

Logfile

Specifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.

Data Type

string

Default Value

""

Remarks

This property specifies the location and name of the log file where the connector records its operations, including authentication events, query execution, and connection details. If the specified file does not exist, the connector creates it. Ensure that the user or the service running the connector has write access to the specified path or file. Without sufficient permissions, the log file is not created.

Sensitive information from the connection string, such as passwords and tokens, is automatically masked in the logs. However, sensitive information present in the data itself may not be masked.

If you specify a relative path for Logfile, and if the Location property is set, that directory is used as the base path for the log file.

Additional properties allow you to customize logging behavior:

CData Python Connector for Marketo

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 connector 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 Python Connector for Marketo

LogModules

Specifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.

Data Type

string

Default Value

""

Remarks

The connector writes details about each operation it performs into the logfile specified by the Logfile connection property.

Each of these logged operations are assigned to a themed category called a module, and each module has a corresponding short code used to labels individual connector operations as belonging to that module.

When this connection property is set to a semicolon-separated list of module codes, only operations belonging to the specified modules are written to the logfile. Note that this only affects which operations are logged moving forward and doesn't retroactively alter the existing contents of the logfile. For example: INFO;EXEC;SSL;META;

By default, logged operations from all modules are included.

You can explicitly exclude a module by prefixing it with a "-". For example: -HTTP

To apply filters to submodules, identify them with the syntax <module name>.<submodule name>. For example, the following value causes the connector to only log actions belonging to the HTTP module, and further refines it to exclude actions belonging to the Res submodule of the HTTP module: HTTP;-HTTP.Res

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Marketo

MaxLogFileSize

Specifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.

Data Type

string

Default Value

"100MB"

Remarks

For values lower than 100 KB, the connector uses 100 KB as the minimum allowable size.

To control the total number of log files retained, use the MaxLogFileCount property in conjunction with this property. Together, these properties allow you to manage the size and retention of log files effectively.

CData Python Connector for Marketo

MaxLogFileCount

Specifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Data Type

int

Default Value

-1

Remarks

Each log file name includes the date and time for easier identification.

This property accepts the following values:

  • A value of 2 or higher sets the maximum number of log files retained.
  • A value of 1 retains only one log file. When it reaches the maximum size, the file is deleted and replaced by a new one, leaving no history beyond the current log.
  • A value of 0 or negative indicates no limit on the number of log files, and logging continues indefinitely.

To manage log file size, use the MaxLogFileSize property. The two properties work together to control the size and retention of log files in the logging folder.

CData Python Connector for Marketo

Schema

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


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .
CData Python Connector for Marketo

Location

Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.

Data Type

string

Default Value

"%APPDATA%\\CData\\Marketo Data Provider\\Schema"

Remarks

The Location property is only needed if you want to either customize definitions (for example, change a column name, ignore a column, etc.) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is %APPDATA%\\CData\\Marketo Data Provider\\Schema, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

CData Python Connector for Marketo

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 Python Connector for Marketo

Tables

Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .

Data Type

string

Default Value

""

Remarks

Listing all available tables from some databases can take extra time, thus degrading performance. Providing a list of tables in the connection string saves time and improves performance.

If there are lots of tables available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those tables. To do this, specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each table you want to view by its fully qualified name. This avoids ambiguity between tables that may exist in multiple catalogs or schemas.

CData Python Connector for Marketo

Views

Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Data Type

string

Default Value

""

Remarks

Listing all available views from some databases can take extra time, thus degrading performance. Providing a list of views in the connection string saves time and improves performance.

If there are lots of views available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those views. To do this, specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each view you want to examine by its fully qualified name. This avoids ambiguity between views that may exist in multiple catalogs or schemas.

CData Python Connector for Marketo

Caching

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


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Marketo data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.
CData Python Connector for Marketo

AutoCache

Specifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, the connector automatically caches the contents of tables targeted by SELECT queries. The content of these tables is cached to the cache database specified by the CacheConnection and CacheProvider connection properties.

See Also

For additional information, see:

  • CacheMetadata: With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Marketo.
  • Explicitly Caching Data: This topic provides examples for using AutoCache in Offline mode.
  • CACHE Statements: You can use the CACHE statement to explicitly cache the content of any table targeted by a SELECT query.

CData Python Connector for Marketo

CacheProvider

The namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to ADO.NET providers saved in your ADO.NET global assembly cache (GAC).

CData ADO.NET providers automatically register themselves with the GAC during installation, so you don't need to do so manually.

Third-party ADO.NET providers may or may not automatically register themselves with the GAC during installation. If you want to cache to a third-party ADO.NET provider, consult the documentation for that provider to determine what steps (if any) you must take to register them with the GAC. Once they have been registered, you can supply their namespace in this connection property.

You must also set the CacheConnection connection property to provide a connection string for the specified ADO.NET provider.

The following sections show connection examples and address other requirements for several popular database providers. Refer to CacheConnection for more information on typical connection properties.

SQLite

You can use the Microsoft ADO.NET Provider for SQLite to cache to SQLite databases.

CacheProvider=Microsoft.Data.Sqlite;CacheConnection='DataSource=C:\\Users\\Public\\cache.db;'URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

MySQL

To cache to MySQL, you can use the CData ADO.NET Provider for MySQL:
Cache Provider=System.Data.CData.MySQL;Cache Connection='Server=localhost;Port=3306;Database=cache;User=root;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

SQL Server

You can use the Microsoft .NET Framework Provider for SQL Server, included in the .NET Framework, to cache to SQL Server:

Cache Provider=System.Data.SqlClient;Cache Connection="Server=MyMACHINE\MyInstance;Database=SQLCACHE;User Id=root;Password=admin";URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

Oracle

To cache to Oracle, you can use the Oracle Data Provider for .NET, as shown in the following example:

Cache Provider=Oracle.DataAccess.Client;Cache Connection='User Id=scott;Password=tiger;Data Source=ORCL';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

The Oracle Data Provider for .NET also requires the Oracle Database Client. When you download the Oracle Database Client, ensure that its bitness matches the bitness of your machine. When you install, select either the Runtime or Administrator installation type. The Instant Client is not sufficient.

PostgreSQL

To cache to PostgreSQL, you can use the CData ADO.NET Provider for PostgreSQL:
Cache Provider=System.Data.CData.PostgreSQL;Cache Connection='Server=localhost;Port=5432;Database=cache;User=postgres;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

CData Python Connector for Marketo

CacheDriver

The driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to any database for which you have a JDBC driver, including CData JDBC drivers.

Note: You must add the JAR file of the specified JDBC driver to the classpath. For CData JDBC drivers, you can find this JAR file in the "lib" subfolder of that driver's installation directory.

You must also set the CacheConnection connection property to provide a connection string for the specified JDBC driver.

For Linux systems and macOS, you need to create a config.ini file on the installation path of the driver (site-packages/cdata). The config.ini file has the following format (the driver and the path of the JDBC driver):

[salesforce.cpython-38-x86_64-linux-gnu.so]
CLASSPATH = /home/usrname/Downloads/lib/cdata.jdbc.postgresql.jar

Examples

The following examples show how to cache to several major databases. For more information on the JDBC URL syntax and typical connection properties, see CacheConnection.

Derby and Java DB

Java DB is the Oracle distribution of Derby. You must add the Derby JDBC driver's JAR file, derbytools.jar, to your classpath to cache to Java DB.

The Derby JDBC driver's JAR file is bundled in db-derby-10.17.1.0-bin.zip, which you can download from this page. You can find derbytools.jar in the "lib" subfolder of this zip file.

After adding derbytools.jar to the classpath, you can cache to a Java DB database as follows:

jdbc:marketo:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:sample';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;
To cache to an in-memory database, use a JDBC URL like the following:
jdbc:marketo:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:memory';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

SQLite

The following is a JDBC URL for the SQLite JDBC driver:

jdbc:marketo:CacheDriver=org.sqlite.JDBC;CacheConnection='jdbc:sqlite:C:/Temp/sqlite.db';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

MySQL

The following is a JDBC URL for the CData JDBC Driver for MySQL:

  jdbc:marketo:Cache Driver=cdata.jdbc.mysql.MySQLDriver;Cache Connection='jdbc:mysql:Server=localhost;Port=3306;Database=cache;User=root;Password=123456';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;
  

SQL Server

The following JDBC URL uses the Microsoft JDBC Driver for SQL Server:

jdbc:marketo:Cache Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver;Cache Connection='jdbc:sqlserver://localhost\sqlexpress:7437;user=sa;password=123456;databaseName=Cache';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

Oracle

The following is a JDBC URL for the Oracle Thin Client:

jdbc:marketo:Cache Driver=oracle.jdbc.OracleDriver;CacheConnection='jdbc:oracle:thin:scott/tiger@localhost:1521:orcldb';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;
NOTE: If using a version of Oracle older than 9i, the cache driver will instead be oracle.jdbc.driver.OracleDriver .

PostgreSQL

The following JDBC URL uses the official PostgreSQL JDBC driver:

jdbc:marketo:CacheDriver=cdata.jdbc.postgresql.PostgreSQLDriver;CacheConnection='jdbc:postgresql:User=postgres;Password=admin;Database=postgres;Server=localhost;Port=5432;';URL=https://MyMarketoURL.mktorest.com/;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;

CData Python Connector for Marketo

CacheConnection

Specifies the connection string for the specified cache database.

Data Type

string

Default Value

""

Remarks

The target cache database is determined by a combination of this connection property and the CacheProvider connection property. Both properties are required to use the specified cache database.

The connection string specified in this connection property is passed directly to the specified in the CacheProvider connection property. Consult the documentation for the specified for more information on its available connection properties.

Examples of common cache database settings can be found below.

SQLite

MySQL

The following are typical connection properties:

  • Server: The IP address or domain name of the server hosting the MySQL database that you want to cache to.
  • Port: The port on the specified server where your MySQL instance is running.
  • Database: The name of the MySQL database that you want to cache to. Must match the name of a MySQL database hosted on the specified server.
  • User: The username of a user registered with the selected MySQL database.
  • Password: The password associated with the specified MySQL user.

SQL Server

The following are typical SQL Server connection properties:

  • Server: The name or network address of the computer running SQL Server. To connect to a named instance instead of the default instance, specify the host name and the instance name, separated by a backslash.
  • Port: The port on the specified server where your SQL Server instance is running.
  • Database: The name of the SQL Server database you want to cache to. Must match the name of a SQL Server database hosted on the specified server.
  • Integrated Security: To use the current Windows account for authentication, set this option to True. To authenticate with User and Password instead, set this option to False.
  • User Id: The username of a user registered with the selected SQL Server database. This property is only needed if you are not using integrated security.
  • Password: The password associated with the specified SQL Server user. This property is only needed if you are not using integrated security.

Oracle

The following are typical connection properties:

  • Data Source: The connect descriptor that identifies the Oracle database. This can be a TNS connect descriptor, an Oracle Net Services name that resolves to a connect descriptor, or, after version 11g, an Easy Connect naming (the host name of the Oracle server with an optional port and service name).

  • User Id: The username of a user registered with the selected Oracle database.
  • Password: The password associated with the specified Oracle user.

PostgreSQL

The following are typical connection properties:

  • Host: The address of the server hosting the PostgreSQL database.
  • Port: The port on the specified host server where your PostgreSQL database is hosted.
  • Database: The name of the PostgreSQL database you want to cache to. Must match the name of a PostgreSQL database hosted on the specified server.
  • User name: The username of a user registered with the selected PostgreSQL database.
  • Password: The password associated with the specified user.

CData Python Connector for Marketo

CacheLocation

Specifies the path to the cache when caching to a file.

Data Type

string

Default Value

"%APPDATA%\\CData\\Marketo Data Provider"

Remarks

The CacheLocation is a simple, file-based cache.

If left unspecified, the default location is %APPDATA%\\CData\\Marketo Data Provider, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

See Also

  • AutoCache: Set to implicitly create and maintain a cache for later offline use.
  • CacheMetadata: Set to persist the Marketo catalog in CacheLocation.

CData Python Connector for Marketo

CacheTolerance

Notes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.

Data Type

int

Default Value

600

Remarks

When you execute a query for tables in the cache, the connector checks the time elapsed since the last update to the cache.

If the last update to the cache is older than the value of this connection property (measured in seconds), the connector refreshes the cache.

Otherwise, the connector returns data directly from the cache.

CData Python Connector for Marketo

Offline

Gets the data from the specified cache database instead of live Marketo data.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, all queries execute against the cache database instead of the live Marketo data.

In this mode, some SQL operations like INSERT, UPDATE, DELETE, and CACHE are disabled.

CData Python Connector for Marketo

CacheMetadata

Determines whether the provider caches table metadata to a file-based cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, as you execute queries, table metadata in the Marketo catalog is cached to the cache database specified by CacheConnection and CacheProvider, or, if those connection properties are not set, to the user's home directory.

The location of your home directory varies by platform:

PlatformHome Directory
Windows %APPDATA%\\CData\\Marketo Data Provider
Mac ~/Library/Application Support/CData/Marketo Data Provider
Unix ~/.config/CData/Marketo Data Provider

A table's metadata is retrieved only once, when the table is queried for the first time.

When to Use CacheMetadata

When there are a large number of Marketo tables and columns for the connector to retrieve during metadata discovery, the connector may take a while to list all table metadata.

You may experience slow metadata retrieval when:

  • Your Marketo instance naturally has a large table count.
  • The connector has been configured, via its connection properties, to discover more tables than it would under its default configuration.
  • You make many short-lived connections to the connector.
With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Marketo.

When Not to Use CacheMetadata

The connector automatically persists metadata in memory for up to an hour when you first discover the metadata for a table or view, so CacheMetadata is generally not necessary.

CacheMetadata is not ideal in scenarios where you are working with volatile metadata. The first time you query a table, the connector caches its metadata to the cache database file. This cache is not dynamically updated to reflect updates to the table schema, so you must delete and rebuild the cache database file to pick up new, changed, or deleted columns.

CData Python Connector for Marketo

Miscellaneous

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


PropertyDescription
DownloadChunkSizeThe size of chunks (in bytes) when downloading large files.
IsCRMEnabledSet to true to avoid pushing tables that are not available when CRM is enabled in Marketo.
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
MaxThreadsSpecifies the number of concurrent requests.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeSpecifies the maximum number of records per page the provider returns when requesting data from Marketo.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Marketo from the provider.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UploadChunkSizeThe size of chunks (in bytes) when uploading large files.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
CData Python Connector for Marketo

DownloadChunkSize

The size of chunks (in bytes) when downloading large files.

Data Type

string

Default Value

"3000000"

Remarks

The size of chunks (in bytes) to use when downloading large files, defaults to 3MB. To download the entire file in one chunk, set this value to -1.

CData Python Connector for Marketo

IsCRMEnabled

Set to true to avoid pushing tables that are not available when CRM is enabled in Marketo.

Possible Values

Auto, True, False

Data Type

string

Default Value

"Auto"

Remarks

True Tables that are not available when CRM is enabled in Marketo will not be pushed.
False The driver will push all tables normally.
Auto The driver will execute a probe query to check if CRM is enabled or not.

CData Python Connector for Marketo

MaxRows

Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.

Data Type

int

Default Value

-1

Remarks

The default value for this property, -1, means that no row limit is enforced unless the query explicitly includes a LIMIT clause. (When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting.)

Setting MaxRows to a whole number greater than 0 ensures that queries do not return excessively large result sets by default.

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

CData Python Connector for Marketo

MaxThreads

Specifies the number of concurrent requests.

Data Type

string

Default Value

"5"

Remarks

This property allows you to issue multiple requests simultaneously, thereby improving performance.

CData Python Connector for Marketo

Other

Specifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.

Data Type

string

Default Value

""

Remarks

This property allows advanced users to configure hidden properties for specialized situations, with the advice of our Support team. These settings are not required for normal use cases but can address unique requirements or provide additional functionality. To define multiple properties, use a semicolon-separated list.

Note: It is strongly recommended to set these properties only when advised by the Support team to address specific scenarios or issues.

Caching Configuration

PropertyDescription
CachePartial=TrueCaches only a subset of columns, which you can specify in your query.
QueryPassthrough=TruePasses the specified query to the cache database instead of using the SQL parser of the connector.

Integration and Formatting

PropertyDescription
DefaultColumnSizeSets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMT=TrueConverts date-time values to GMT, instead of the local time of the machine. The default value is False (use local time).
RecordToFile=filenameRecords the underlying socket data transfer to the specified file.

CData Python Connector for Marketo

Pagesize

Specifies the maximum number of records per page the provider returns when requesting data from Marketo.

Data Type

int

Default Value

300

Remarks

When processing a query, instead of requesting all of the queried data at once from Marketo, the connector can request the queried data in pieces called pages.

This connection property determines the maximum number of results that the connector requests per page.

Note: Setting large page sizes may improve overall query execution time, but doing so causes the connector to use more memory when executing queries and risks triggering a timeout.

CData Python Connector for Marketo

PseudoColumns

Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.

Data Type

string

Default Value

""

Remarks

This property allows you to define which pseudocolumns the connector 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 Python Connector for Marketo

Readonly

Toggles read-only access to Marketo from the provider.

Data Type

bool

Default Value

false

Remarks

When set to True, the connector allows only SELECT queries. Attempting an INSERT, UPDATE, DELETE, or stored procedure query fails with an error message.

CData Python Connector for Marketo

RTK

Specifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.

Data Type

string

Default Value

""

Remarks

This property is typically unnecessary, as most configurations support a standard licensing mechanism.

Warning: The value of this property takes precedence over all existing licensing information. To avoid licensing errors, ensure the provided runtime key is correct.

CData Python Connector for Marketo

Timeout

Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.

Data Type

int

Default Value

300

Remarks

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.

Timeout is set to 60 seconds by default. To disable timeouts, set this property to 0.

Disabling the timeout allows 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.

Note: Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.

CData Python Connector for Marketo

UploadChunkSize

The size of chunks (in bytes) when uploading large files.

Data Type

string

Default Value

"10000000"

Remarks

The size of chunks (in bytes) to use when uploading large files, defaults to 10MB. To upload the entire file in one chunk, set this value to -1.

CData Python Connector for Marketo

UserDefinedViews

Specifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.

Data Type

string

Default Value

""

Remarks

UserDefinedViews allows you to define and manage custom views through a JSON-formatted configuration file called UserDefinedViews.json. These views are automatically recognized by the connector and enable you to execute custom SQL queries as if they were standard database views. The JSON file defines each view as a root element with a child element called "query", which contains the SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM Leads WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}

You can use this property to define multiple views in a single file and specify the filepath. For example:

UserDefinedViews=C:\Path\To\UserDefinedViews.json
When you specify a view in UserDefinedViews, the connector only sees that view.

For further information, see User Defined Views.

CData Python Connector for Marketo

Third Party Copyrights

LZMA from 7Zip LZMA SDK

LZMA SDK is placed in the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

LZMA2 from XZ SDK

Version 1.9 and older are in the public domain.

Xamarin.Forms

Xamarin SDK

The MIT License (MIT)

Copyright (c) .NET Foundation Contributors

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

NSIS 3.10

Copyright (C) 1999-2025 Contributors THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:

i) changes to the Program, and

ii) additions to the Program;

where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.

"Contributor" means any person or entity that distributes the Program.

"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.

2. GRANT OF RIGHTS

a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.

b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.

c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.

d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:

a) it complies with the terms and conditions of this Agreement; and

b) its license agreement:

i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;

ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;

iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and

iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.

When the Program is made available in source code form:

a) it must be made available under this Agreement; and

b) a copy of this Agreement must be included with each copy of the Program.

Contributors may not remove or alter any copyright notices contained within the Program.

Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

AdoptOpenJDK / Adoptium Temurin JRE 17.0.18_8

Copyright (c) Eclipse Foundation AISBL. All Rights Reserved.

Apache License, Version 2.0

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

  1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
  2. You must cause any modified files to carry prominent notices stating that You changed the files; and
  3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
  4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

Eclipse Distribution License - v 1.0

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Eclipse Public License - v 2.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS "Contribution" means:

  • a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and
  • b) in the case of each subsequent Contributor:
    • i) changes to the Program, and
    • ii) additions to the Program;
    where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution "originates" from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works.
"Contributor" means any person or entity that Distributes the Program. "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions Distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors.

"Derivative Works" shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship.

"Modified Works" shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof.

"Distribute" means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy.

"Source Code" means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Secondary License" means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor.

2. GRANT OF RIGHTS

  • a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works.
  • b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
  • c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to Distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
  • d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
  • e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3).

3. REQUIREMENTS 3.1 If a Contributor Distributes the Program in any form, then:

  • a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and
  • b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license:
    • i) effectively disclaims on behalf of all other Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
    • ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
    • iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and
    • iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3.
3.2 When the Program is Distributed as Source Code:
  • a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and
  • b) a copy of this Agreement must be included with each copy of the Program.
3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability (‘notices') contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices.

4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be Distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to Distribute the Program (including its Contributions) under the new version.

Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement.

Exhibit A – Form of Secondary Licenses Notice "This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}."

Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses.

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.

You may add additional accurate notices of copyright ownership.

GNU Classpath

Classpath is distributed under the terms of the GNU General Public License with the following clarification and special exception.

Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.

As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.

As such, it can be used to run, create and distribute a large class of applications and applets. When GNU Classpath is used unmodified as the core class library for a virtual machine, compiler for the java languge, or for a program written in the java programming language it does not affect the licensing for distributing those programs directly.

OpenJDK Assembly Exception

The OpenJDK source code made available by Oracle America, Inc. (Oracle) at openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License <http://www.gnu.org/copyleft/gpl.html> version 2 only ("GPL2"), with the following clarification and special exception.

Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.

As a special exception, Oracle gives you permission to link this OpenJDK Code with certain code licensed by Oracle as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Oracle.

As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655