In some scenarios, a Strategy report must select some data into memory, perform some calculations, and insert the results into an intermediate table in the data warehouse. These scenarios include:
One INSERT statement is issued for each result row:
SQL
insert into TABLE_NAME values (col0, col1, col2…);
Enabling parameterized queries in the Strategy database connection object can improve the performance of these repeated inserts. Without parameterized queries, the database may have to parse the INSERT statements individually and generate a separate execution plan for each. By contrast, a parameterized query is parsed only once, and repeatedly executed according to the same execution plan with different values for the input parameters. Response time is faster without the overhead of parsing structurally identical statements for every row.
Enabling parameterized queries in the Strategy Database Connection object
To use parameterized queries, the Strategy Database Connection object, which holds connection parameters to the database, must enable the option. This option is visible in Strategy Developer by the following steps.

Database platform support for parameterized queries
Not all databases support parameterized queries. Following is a list of the database platforms supported in Strategy 10.x, according to their level of support for parameterized queries.
Databases that support parameterized queries without additional Data Source Name (DSN) settings
Databases that support parameterized queries after enabling additional Data Source Name (DSN) settings
The following databases require "Enable Describe Parameters" to be configured in the DSN.
Strategy ODBC Driver for Oracle Wire Protocol:

Strategy ODBC Driver for Sybase ASE Wire Protocol:

Note: For Strategy Intelligence Server Universal running under UNIX/Linux, the following line should be added to the DSN definitions in odbc.ini, located in the Strategy home directory chosen during installation. This line is valid for the Strategy ODBC drivers for both Oracle and Sybase ASE.
EnableDescribeParam=1
The following databases require Teradata ODBC Driver version 12.00.00.00 or later, with the "Enable Extended Statement Information" parameter checked.

Note: For Strategy Intelligence Server Universal running under UNIX/Linux, the following line should be added to the Teradata DSN definition(s) in odbc.ini:
EnableExtendedStmtInfo=Yes
Databases that do not support parameterized queries