To resolve the issue follow the steps below.
1). Open the configuration tool for the installed TIBCO Spotfire Server.
2). Enter the password when prompted.
3). Go to the configuration tab.
4). Choose Data-Source Templates.
5). Mark the Teradata template so thqt you can see its contents.
6). Change the following:
<create-temp-table-command>CREATE GLOBAL TEMPORARY TABLE $$name$$ $$column_list$$ ON COMMIT PRESERVE ROWS</create-temp-table-command>
<drop-temp-table-command>TRUNCATE TABLE $$name$$;DROP TABLE $$name$$</drop-temp-table-command>
To the following:
<create-temp-table-command>CREATE VOLATILE TABLE $$name$$ $$column_list$$ ON COMMIT PRESERVE ROWS; ET; /create-temp-table-command>
<drop-temp-table-command>DROP TABLE $$name$$</drop-temp-table-command>
7). Save configuration to a database.
8). Restart the TIBCO Spotfire Server.
This will resolve the issues on any new data source elements created using this template. To ensure that already existing data source elements are updated, you need to go into Information Designer and edit and re-save all existing data source elements that uses this template.