<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Settings for Index Schema? in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2479180#M12552</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110970"&gt;@Heinvandenheuvel&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125525"&gt;@DesmondWOO&lt;/a&gt;&amp;nbsp;, thanks for your Help! With this internal Parameter:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;parameter: $info.query_syntax.create_index
value: CREATE UNIQUE INDEX ${QO}${TABLE_OWNER}${QC}.${QO}${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )
&lt;/LI-CODE&gt;
&lt;P&gt;my Task is working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also searched with the Command my Syntax for Db2LUW:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;command getprovidersyntax response:
{
	"provider_syntax":	{
		"name":	"DB2",
		"query_syntax":	{
			"truncate_table":	"ALTER TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} activate not logged initially with empty table",
			"modify_column":	"ALTER TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ALTER COLUMN ${QO}${COLUMN_NAME}${QC} SET DATA TYPE ${COLUMN_TYPE}",
			"rename_table":	"RENAME TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} TO ${QO}${NEW_TABLE_NAME}${QC}",
			"reorg":	"CALL ADMIN_CMD('REORG TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC}')",
			"error_code_constraint_violation":	"-803",
			"error_code_data_failure":	"-461,-121,-206",
			"drop_index":	"DROP INDEX ${QO}${CONSTRAINT_NAME}${QC}",
			"timestamp_to_date":	"DATE(${COLUMN_NAME})",
			"string_to_timestamp":	"TIMESTAMP('${COLUMN_NAME}')",
			"row_number_function":	"ROW_NUMBER() OVER()",
			"mod_function":	"MOD(${COLUMN_NAME1}, ${COLUMN_NAME2})",
			"pseudo_source":	"SYSIBM.SYSDUMMY1"
		},
		"data_type_mapping":	[{
				"rep_type":	"kAR_DATA_TYPE_BLOB",
				"provider_data_type":	"BLOB(2G) NOT LOGGED",
				"casting_data_type":	"BLOB(2G)"
			}, {
				"rep_type":	"kAR_DATA_TYPE_CLOB",
				"provider_data_type":	"CLOB(2G) NOT LOGGED",
				"casting_data_type":	"CLOB(2G)"
			}],
		"odbc_col_attr":	[{
				"sql_type":	-99,
				"bind_db_type":	-8,
				"rep_type":	"kAR_DATA_TYPE_CLOB",
				"buffer_length":	"${LOB_SIZE}*2",
				"bind_len":	"${LOB_SIZE}*2+2",
				"is_lob":	true,
				"attributes":	4114
			}, {
				"sql_type":	-98,
				"bind_db_type":	-2,
				"rep_type":	"kAR_DATA_TYPE_BLOB",
				"buffer_length":	"${LOB_SIZE}+2",
				"bind_len":	"${LOB_SIZE}+2",
				"is_lob":	true,
				"attributes":	4096
			}]
	}
}
[getprovidersyntax command] Succeeded&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;And here is the "create_index" missing. so i seached for other Syntaxes and only found the&amp;nbsp;GenericWithoutSchema:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;command getprovidersyntax response:
{
	"provider_syntax":	{
		"name":	"GenericWithoutSchema",
		"query_syntax":	{
			"create_schema":	"",
			"create_table":	"CREATE TABLE ${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )",
			"create_index":	"CREATE UNIQUE INDEX ${QO}${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )",
			"create_primary_key":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ADD CONSTRAINT ${QO}${CONSTRAINT_NAME}${QC} PRIMARY KEY ( ${COLUMN_LIST} )",
			"drop_table":	"DROP TABLE ${QO}${TABLE_NAME}${QC}",
			"truncate_table":	"TRUNCATE TABLE ${QO}${TABLE_NAME}${QC}",
			"add_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ADD COLUMN ${QO}${COLUMN_NAME}${QC} ${COLUMN_TYPE}",
			"drop_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} DROP COLUMN ${QO}${COLUMN_NAME}${QC}",
			"rename_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} RENAME COLUMN ${QO}${COLUMN_NAME}${QC} TO ${QO}${NEW_COLUMN_NAME}${QC}",
			"modify_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ALTER COLUMN ${QO}${COLUMN_NAME}${QC} ${COLUMN_TYPE}",
			"rename_table":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} RENAME TO ${QO}${NEW_TABLE_NAME}${QC}",
			"use_owner_name":	false
		}
	}
}
[getprovidersyntax command] Succeeded
&lt;/LI-CODE&gt;
&lt;P&gt;So i think there is a combination with the 2 syntaxes, but the Table got the Schemaname from the Tasksettings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is also the requested Endpointdefinition with the Qlikversion:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;		"databases":	[{
				"name":	"DB2ZOS-S-DBTS",
				"description":	"HOST DBT24",
				"role":	"SOURCE",
				"is_licensed":	true,
				"type_id":	"DB2ZOS_NATIVE_COMPONENT_TYPE",
				"db_settings":	{
					"$type":	"Db2zosSettings",
					"additionalConnectionProperties":	"enableACR=\"true\";enableWLB=\"false\"",
					"username":	"TUDBTCDC",
					"password":	"xxxxx",
					"databaseAlias":	"DBT24SSL",
					"provider":	"IBM DB2 ODBC DRIVER - DB2COPY1",
					"SetDataCaptureChanges":	false,
					"ifi306SpName":	"QLIKCDC.QLIKUDFT"
				},
				"override_properties":	{
				}
			}, {
				"name":	"DB2LUW-T-DTSSCHAD",
				"description":	"DB DTSSCHAD",
				"role":	"TARGET",
				"is_licensed":	true,
				"type_id":	"ODBC_COMPONENT_TYPE",
				"db_settings":	{
					"$type":	"OdbcSettings",
					"additionalConnectionProperties":	"Driver={IBM DB2 ODBC DRIVER - DB2COPY1};DBALIAS=STSSCHAD;",
					"syntax":	"DB2",
					"username":	"svcdb2cdcb",
					"password":	"xxx"
				},
				"override_properties":	{
				}
			}]
	},
	"_version":	{
		"version":	"2024.5.0.247",
		"version_major":	2024,
		"version_minor":	5,
		"version_revision":	247,
		"fips":	0&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will open a case to extend the default DB2 Syntaxprovider.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: Sorry for the delayed answer, i was on Holiday.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Sep 2024 15:31:09 GMT</pubDate>
    <dc:creator>micpage</dc:creator>
    <dc:date>2024-09-02T15:31:09Z</dc:date>
    <item>
      <title>Settings for Index Schema?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2477999#M12481</link>
      <description>&lt;P&gt;Hello Qlik Community,&lt;/P&gt;
&lt;P&gt;i have a problem during "Reload Table" - "CREATE TABLE" with the Index Creation on Db2 LUW. The &lt;STRONG&gt;Schema&lt;/STRONG&gt; &lt;STRONG&gt;is missing&lt;/STRONG&gt; on the CREATE INDEX Command and so is will be use the Username for Index Schema, but this is not the right.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="rColor"&gt;CREATE UNIQUE INDEX "TA_DH_CDWH_TATXT08K_TA_DH_CDWH_TATXT08K_PK" ON "POC_CDC_QLIK"."TA_DH_CDWH_TATXT08K" ( "TXT08K_ID" )&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="rColor"&gt;is mapped by Db2 to Usersname&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="rColor"&gt;CREATE UNIQUE INDEX &lt;STRONG&gt;"SVCDB2CDCB".&lt;/STRONG&gt;"TA_DH_CDWH_TATXT08K_TA_DH_CDWH_TATXT08K_PK" ON "POC_CDC_QLIK"."TA_DH_CDWH_TATXT08K" ( "TXT08K_ID" )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="rColor"&gt;but it schould the same like the Table:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="rColor"&gt;CREATE UNIQUE INDEX &lt;STRONG&gt;"POC_CDC_QLIK".&lt;/STRONG&gt;"TA_DH_CDWH_TATXT08K_TA_DH_CDWH_TATXT08K_PK" ON "POC_CDC_QLIK"."TA_DH_CDWH_TATXT08K" ( "TXT08K_ID" )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create the Index in the same Schema from the Table. Are there are hidden "&lt;STRONG&gt;More Options&lt;/STRONG&gt;" to set the Index Schema?&lt;/P&gt;
&lt;P&gt;i tested some options, but the do not work:&lt;/P&gt;
&lt;P&gt;I have set the Schema with "Task Settings" - "Metadata" - "Target Metadata" - "Target table schema".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also defined a "Global Rule" to rename schema.&lt;/P&gt;
&lt;P&gt;i also set it on the "Table Settings" - "General" - "Map to target table" - "Table Schema"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the Errormessage:&lt;/P&gt;
&lt;DIV id="txtView126" class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects textRecordSelected" tabindex="20126"&gt;00001012: 2024-08-26T12:43:28 [TASK_MANAGER ]I: Start loading table 'TS'.'TATXT08K' (Id = 12) by subtask 1. Start load timestamp 00062093CB8471C0 (replicationtask_util.c:761)&lt;/DIV&gt;
&lt;DIV id="txtView127" class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20127"&gt;&lt;SPAN class="rColor"&gt;00004928: 2024-08-26T12:43:30 [TARGET_LOAD ]E: Failed (retcode -1) to execute statement: CREATE UNIQUE INDEX "TA_DH_CDWH_TATXT08K_TA_DH_CDWH_TATXT08K_PK" ON "POC_CDC_QLIK"."TA_DH_CDWH_TATXT08K" ( "TXT08K_ID" ) [1022502] (ar_odbc_stmt.c:5082) &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV id="txtView128" class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20128"&gt;&lt;SPAN class="rColor"&gt;00004928: 2024-08-26T12:43:30 [TARGET_LOAD ]E: RetCode: SQL_ERROR SqlState: 42502 NativeError: -552 Message: [IBM][CLI Driver][DB2/LINUXX8664] SQL0552N "SVCDB2CDCB" verfügt nicht über die Berechtigung, die Operation "IMPLICIT CREATE SCHEMA" auszuführen. SQLSTATE=42502 [1022502] (ar_odbc_stmt.c:5090) &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV id="txtView129" class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20129"&gt;&lt;SPAN class="rColor"&gt;00004928: 2024-08-26T12:43:30 [TARGET_LOAD ]E: execute create primary key failed, statement CREATE UNIQUE INDEX "TA_DH_CDWH_TATXT08K_TA_DH_CDWH_TATXT08K_PK" ON "POC_CDC_QLIK"."TA_DH_CDWH_TATXT08K" ( "TXT08K_ID" ) [1022502] (odbc_endpoint_imp.c:6814) &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV id="txtView130" class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20130"&gt;&lt;SPAN class="rColor"&gt;00004928: 2024-08-26T12:43:30 [TARGET_LOAD ]E: Handling new table 'POC_CDC_QLIK'.'TA_DH_CDWH_TATXT08K' failed [1022502] (endpointshell.c:3001)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20130"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20130"&gt;&lt;SPAN class="rColor"&gt;Best Regards&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="tvRow ng-binding ng-scope ng-isolate-scope fontEffects" tabindex="20130"&gt;&lt;SPAN class="rColor"&gt;Michael&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Aug 2024 11:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2477999#M12481</guid>
      <dc:creator>micpage</dc:creator>
      <dc:date>2024-08-26T11:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Settings for Index Schema?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2478774#M12540</link>
      <description>&lt;P&gt;On the one hand, this feels like a bug. On the other hand, it feels like too big a bug - that is this would never work for non-default target schemas. What version are you using? What was the target DB type chosen? Can you share the 'databases' part of the task export?&lt;/P&gt;
&lt;P&gt;The naming suggest this is 'just' a POC and indeed the attempted configuration is not supported. Is someone (Qlik) guiding the POC? Let them figure it out? Get paid for assistance if need be... it's worth it! Is DB2-LUW even supported as target?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is just using a default schema perhaps a workaround worth testing? Make the task use "POC_CDC_QLIK" as username instead of "SVCDB2CDCB"&lt;/P&gt;
&lt;P&gt;You can potentially use REPCTL to 'see' (and replace) the syntax used. For example:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;C:\scripts&amp;gt;repctl -d \Replicate\data getprovidersyntax syntax_name=db2zos
command getprovidersyntax response:
{
        "provider_syntax":      {
                "name": "db2zos",
                "query_syntax": {
                        "create_schema":        "",
                        "create_index": "CREATE UNIQUE INDEX ${QO}${TABLE_OWNER}_${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )",
                        "create_primary_key":   "ALTER TABLE  ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ADD PRIMARY KEY ( ${COLUMN_LIST} )",
                        "drop_column":  "ALTER TABLE  ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} DROP COLUMN ${QO}${COLUMN_NAME}${QC} RESTRICT",
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;This however does no look exactly like:&amp;nbsp;&lt;SPAN&gt;CREATE UNIQUE INDEX "&lt;FONT color="#339966"&gt;TA_DH_CDWH_TATXT08K&lt;/FONT&gt;_TA_DH_CDWH_TATXT08K_PK" ON...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;That's an awfully long constraint name. It looks more like that was generated&amp;nbsp; with:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"CREATE UNIQUE INDEX ${QO}${&lt;FONT color="#339966"&gt;TABLE_NAME&lt;/FONT&gt;}_${CONSTRAINT_NAME}${QC} ON...&lt;/P&gt;
&lt;P&gt;This does not match the syntax export I showed above:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;"CREATE UNIQUE INDEX ${QO}${&lt;FONT color="#FF0000"&gt;TABLE_OWNER&lt;/FONT&gt;}_${CONSTRAINT_NAME}${QC} ON...&lt;/P&gt;
&lt;P&gt;And you seem to suggest you need that underscore replace by close-quote, period, open-quote.&lt;/P&gt;
&lt;P&gt;"CREATE UNIQUE INDEX ${QO}${&lt;FONT color="#339966"&gt;TABLE_OWNER&lt;/FONT&gt;}&lt;FONT color="#FF00FF"&gt;${QC}.${QO}&lt;/FONT&gt;${CONSTRAINT_NAME}${QC} ON...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll probably need to create a support case. Be sure to provide all I suggested in the opening.&lt;/P&gt;
&lt;P&gt;Hein&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 21:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2478774#M12540</guid>
      <dc:creator>Heinvandenheuvel</dc:creator>
      <dc:date>2024-08-29T21:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Settings for Index Schema?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2478866#M12543</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/303374"&gt;@micpage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;In your DB2LUW target endpoint, go to "Advanced" setting and click "Internal Parameters". Then please add following information:&lt;/P&gt;
&lt;PRE class="td-content"&gt;parameter: $info.query_syntax.create_index&lt;BR /&gt;value:&amp;nbsp;CREATE UNIQUE INDEX ${QO}${TABLE_OWNER}${QC}.${QO}${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )&lt;/PRE&gt;
&lt;DIV class="td-content"&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DesmondWOO_0-1725011783439.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/171136i7F1A0B0BC328F4A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DesmondWOO_0-1725011783439.png" alt="DesmondWOO_0-1725011783439.png" /&gt;&lt;/span&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 30 Aug 2024 10:00:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2478866#M12543</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-08-30T10:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Settings for Index Schema?</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2479180#M12552</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110970"&gt;@Heinvandenheuvel&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125525"&gt;@DesmondWOO&lt;/a&gt;&amp;nbsp;, thanks for your Help! With this internal Parameter:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;parameter: $info.query_syntax.create_index
value: CREATE UNIQUE INDEX ${QO}${TABLE_OWNER}${QC}.${QO}${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )
&lt;/LI-CODE&gt;
&lt;P&gt;my Task is working.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also searched with the Command my Syntax for Db2LUW:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;command getprovidersyntax response:
{
	"provider_syntax":	{
		"name":	"DB2",
		"query_syntax":	{
			"truncate_table":	"ALTER TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} activate not logged initially with empty table",
			"modify_column":	"ALTER TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} ALTER COLUMN ${QO}${COLUMN_NAME}${QC} SET DATA TYPE ${COLUMN_TYPE}",
			"rename_table":	"RENAME TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC} TO ${QO}${NEW_TABLE_NAME}${QC}",
			"reorg":	"CALL ADMIN_CMD('REORG TABLE ${QO}${TABLE_OWNER}${QC}.${QO}${TABLE_NAME}${QC}')",
			"error_code_constraint_violation":	"-803",
			"error_code_data_failure":	"-461,-121,-206",
			"drop_index":	"DROP INDEX ${QO}${CONSTRAINT_NAME}${QC}",
			"timestamp_to_date":	"DATE(${COLUMN_NAME})",
			"string_to_timestamp":	"TIMESTAMP('${COLUMN_NAME}')",
			"row_number_function":	"ROW_NUMBER() OVER()",
			"mod_function":	"MOD(${COLUMN_NAME1}, ${COLUMN_NAME2})",
			"pseudo_source":	"SYSIBM.SYSDUMMY1"
		},
		"data_type_mapping":	[{
				"rep_type":	"kAR_DATA_TYPE_BLOB",
				"provider_data_type":	"BLOB(2G) NOT LOGGED",
				"casting_data_type":	"BLOB(2G)"
			}, {
				"rep_type":	"kAR_DATA_TYPE_CLOB",
				"provider_data_type":	"CLOB(2G) NOT LOGGED",
				"casting_data_type":	"CLOB(2G)"
			}],
		"odbc_col_attr":	[{
				"sql_type":	-99,
				"bind_db_type":	-8,
				"rep_type":	"kAR_DATA_TYPE_CLOB",
				"buffer_length":	"${LOB_SIZE}*2",
				"bind_len":	"${LOB_SIZE}*2+2",
				"is_lob":	true,
				"attributes":	4114
			}, {
				"sql_type":	-98,
				"bind_db_type":	-2,
				"rep_type":	"kAR_DATA_TYPE_BLOB",
				"buffer_length":	"${LOB_SIZE}+2",
				"bind_len":	"${LOB_SIZE}+2",
				"is_lob":	true,
				"attributes":	4096
			}]
	}
}
[getprovidersyntax command] Succeeded&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;And here is the "create_index" missing. so i seached for other Syntaxes and only found the&amp;nbsp;GenericWithoutSchema:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;command getprovidersyntax response:
{
	"provider_syntax":	{
		"name":	"GenericWithoutSchema",
		"query_syntax":	{
			"create_schema":	"",
			"create_table":	"CREATE TABLE ${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )",
			"create_index":	"CREATE UNIQUE INDEX ${QO}${CONSTRAINT_NAME}${QC} ON ${QO}${TABLE_NAME}${QC} ( ${COLUMN_LIST} )",
			"create_primary_key":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ADD CONSTRAINT ${QO}${CONSTRAINT_NAME}${QC} PRIMARY KEY ( ${COLUMN_LIST} )",
			"drop_table":	"DROP TABLE ${QO}${TABLE_NAME}${QC}",
			"truncate_table":	"TRUNCATE TABLE ${QO}${TABLE_NAME}${QC}",
			"add_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ADD COLUMN ${QO}${COLUMN_NAME}${QC} ${COLUMN_TYPE}",
			"drop_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} DROP COLUMN ${QO}${COLUMN_NAME}${QC}",
			"rename_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} RENAME COLUMN ${QO}${COLUMN_NAME}${QC} TO ${QO}${NEW_COLUMN_NAME}${QC}",
			"modify_column":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} ALTER COLUMN ${QO}${COLUMN_NAME}${QC} ${COLUMN_TYPE}",
			"rename_table":	"ALTER TABLE ${QO}${TABLE_NAME}${QC} RENAME TO ${QO}${NEW_TABLE_NAME}${QC}",
			"use_owner_name":	false
		}
	}
}
[getprovidersyntax command] Succeeded
&lt;/LI-CODE&gt;
&lt;P&gt;So i think there is a combination with the 2 syntaxes, but the Table got the Schemaname from the Tasksettings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is also the requested Endpointdefinition with the Qlikversion:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;		"databases":	[{
				"name":	"DB2ZOS-S-DBTS",
				"description":	"HOST DBT24",
				"role":	"SOURCE",
				"is_licensed":	true,
				"type_id":	"DB2ZOS_NATIVE_COMPONENT_TYPE",
				"db_settings":	{
					"$type":	"Db2zosSettings",
					"additionalConnectionProperties":	"enableACR=\"true\";enableWLB=\"false\"",
					"username":	"TUDBTCDC",
					"password":	"xxxxx",
					"databaseAlias":	"DBT24SSL",
					"provider":	"IBM DB2 ODBC DRIVER - DB2COPY1",
					"SetDataCaptureChanges":	false,
					"ifi306SpName":	"QLIKCDC.QLIKUDFT"
				},
				"override_properties":	{
				}
			}, {
				"name":	"DB2LUW-T-DTSSCHAD",
				"description":	"DB DTSSCHAD",
				"role":	"TARGET",
				"is_licensed":	true,
				"type_id":	"ODBC_COMPONENT_TYPE",
				"db_settings":	{
					"$type":	"OdbcSettings",
					"additionalConnectionProperties":	"Driver={IBM DB2 ODBC DRIVER - DB2COPY1};DBALIAS=STSSCHAD;",
					"syntax":	"DB2",
					"username":	"svcdb2cdcb",
					"password":	"xxx"
				},
				"override_properties":	{
				}
			}]
	},
	"_version":	{
		"version":	"2024.5.0.247",
		"version_major":	2024,
		"version_minor":	5,
		"version_revision":	247,
		"fips":	0&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will open a case to extend the default DB2 Syntaxprovider.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: Sorry for the delayed answer, i was on Holiday.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2024 15:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Settings-for-Index-Schema/m-p/2479180#M12552</guid>
      <dc:creator>micpage</dc:creator>
      <dc:date>2024-09-02T15:31:09Z</dc:date>
    </item>
  </channel>
</rss>

