我已成功将RDS数据库连接为Google Data Studio上的数据源。表中的表和字段也显示正确的数据类型。
但是在尝试使用此数据源创建报告时,Time Dimension
维度会出错:
Failed to execute connection with error: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
我尝试在连接时将zeroDateTimeBehavior=convertToNull
添加到数据库名称字段,但Google Data Studio不接受连接。
当某些时间戳为0000-00-00 00:00:00
时,知道如何让它工作吗?
答案 0 :(得分:0)
您可以尝试使用SQL解决它,但是您将丢失一些数据。例如:
SELECT * FROM table
WHERE date != 0;