Home > Net >  Automate data loading to Google Sheet from PostgreSQL database
Automate data loading to Google Sheet from PostgreSQL database

Time:10-11

I would like to create an automated data pulling from our PostgreSQL database to a Google sheet. I've tried JDBC service, but it doesn't work, maybe incorrect variables/config. Does anyone already try doing this? I'd also like to schedule the extraction every hour.

CodePudding user response:

According the the documentation, only Google Cloud SQL MySQL, MySQL, Microsoft SQL Server, and Oracle databases are supported by Apps Script's JDBC. You may have to either move to a new database or develop your own API services to handle the connection.

As for scheduling by the hour, you can use Apps Script's installable triggers.

  • Related