Alternatively, you can modify your .TWB file (which is really just an xml file) and add the following parameters to the odbc-connect-string-extras property.
- UseDeclareFetch = 0;
- FETCH = 0;
You would have something like:
<connection class='redshift' dbname='yourdb' odbc-connect-string-extras='UseDeclareFetch=0;FETCH=0' port='0000' schema='schm' server='any.redshift.amazonaws.com' [...] >
Unfortunately, there is no way to change this behavior through the application, you have to edit the file directly.
You should be aware of the spectacular effects of this. Although this greatly improves debugging, there should be a reason why Tableau chose not to allow these settings to be modified through the application.
source share