This Snap allows you to execute arbitrary SQL.
Valid JSON paths that are defined in the where clause for queries/statements will be substituted with values from an incoming document. Documents will be written to the error view if the document is missing a value to be substituted into the query/statement.
If a select query is executed, the query's results are merged into the incoming document and any existing keys will have their values overwritten. On the other hand, the original document is written if there are no results from the query.
Snap type: | Write | |||||||
---|---|---|---|---|---|---|---|---|
Description: | ||||||||
Prerequisites: | [None] | |||||||
Support and limitations: |
| |||||||
Account: | This Snap uses account references created on the Accounts page of SnapLogic Manager to handle access to this endpoint. See PostgreSQL Account for information on setting up this type of account. | |||||||
Views: |
| |||||||
Settings | ||||||||
Label | Required. The name for the Snap. You can modify this to be more specific, especiallyif you have more than one of the same Snap in your pipeline. | |||||||
SQL statement | Required. Specifies the SQL statement to execute on the server.
Scenario 1: Executing SQL statements without expressions
For example: Additionally, the JSON path is allowed only in the WHERE clause. If the SQL statement starts with SELECT (case-insensitive), the Snap regards it as a select-type query and executes once per input document. If not, it regards it as write-type query and executes in batch mode. Scenario 2: Executing SQL queries with expressions
Table name and column names must not be provided as bind parameters. Only values can be provided as bind parameters. For example:
The non-expression form uses bind parameters, so it is much faster than executing N arbitrary SQL expressions. With the SQL statement property set as an expression, the Snap can be exposed to SQL injection. Please use this feature with caution. Known issue: The SQL statement will return a PGObject when returning non-standard types. Non-standard types include standard PostgreSQL extensions such as JSON or XML, types defined in third party extensions such as PostGIS, or types defined via CREATE TYPE color AS ENUM (RED, GREEN, BLUE). They can be converted to strings using CAST(x AS TEXT) where 'x' is the name of the column. Default value: [None] | |||||||
Pass through | If selected, the input document will be passed through to the output view under the key 'original'. This property applies only to the Execute Snaps with SELECT statement. Default value: Selected | |||||||
Ignore empty result | If selected, no document will be written to the output view when a SELECT operation does not produce any result. If this property is not selected and the Pass through property is selected, the input document will be passed through to the output view. Default value: Not selected | |||||||
Execute during preview | Enables you to execute the Snap during the Save operation so that the output view can produce the preview data. Default value: Not selected |