New Member
Since ‎01-18-2019
‎05-20-2023

My Stats

  • 42 Posts
  • 1 Solutions
  • 12 Likes given
  • 4 Likes received

vfx1's Bio

Badges vfx1 Earned

View all badges

Recent Activity

GCS documentation states time_zone can be used as JDBC connection string parameter. Testing Bigquery connection confirms:Can connectJDBC string: jdbc:BQDriver::xxxxxxx/looker_scratch?withServiceAccount=true&...&time_zone=Asia/Kolkata&readTimeout=2400...
I came across the need to show a floating point coefficient in the rows and then use it in a calculation to generate a measure. Due to a known limitation of BigQuery - floats can’t be used in PARTITION BY - Looker shows an SQL error. Consider the fol...
Consider the following code: view: datetime { derived_table: { sql: SELECT CURRENT_DATETIME as dt;; # Bigquery dialect } dimension_group: dt { type: time timeframes: [ date, month ] sql: ${TABLE}.dt ;; datatype: datetime } } explore: datetime {} This...