-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DateTime('UTC') is not recognized as timestamp in Tableau #39
Comments
hi @vlauzeckas |
but thats a bit of a problem. if data type "DateTime with timezone" tableau does not recognize. you can force it to cast, but that's big overhead and lead to not optimal queries. |
I understand, but have neither a fix nor a workaround (other than obvious CASTing), sorry. |
@yurifal how does it works previously? :) @vlauzeckas did you met after upgrade driver or after upgrading Tableau? |
@gonchik how does it works previously? :) |
@yurifal Noted, let me push back the BI team :) |
@gonchik you're welcome. |
Sorry, where did i mentioned upgrade?:) |
@vlauzeckas it's my mistake, it's a pity that I failed the exam in clairvoyance. |
Any news? The same problem Tableau Desktop v2023.3.x (and WebView on Server v2023.3.x) |
Not sure it issue with the connector or JDBC driver itself, but i noticed strange behavior:
Add such query as custom SQL:
select toDateTime('2022-08-23 02:52:53') as tz, toTypeName(tz) as tz_type, toDateTime('2022-08-23 02:52:53', 'UTC') as tz_utc, toTypeName(tz_utc) as tz_utc_type
tz_utc - is not recognized as Timesstamp in tableau. You can change it on tableau level, but that would add huge overhead of casting string to datetime.
The text was updated successfully, but these errors were encountered: