Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

334
Views
Using node.js to automatically update MSSQL table on Google Spreadsheet data change

I would like to ask if there is any way to use node.js or javascript to automatically detect google spreadsheet data change and update the changes in MSSQL database table?

I have read several articles but it all requires the usage of third party applications.

Any help will be appreciated. Thank you!

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can subscribe to changes to a file by using the Watch method in NodeJS.

  const res = await drive.files.watch({
    acknowledgeAbuse: false,
    fileId: 'id-value',
    supportsAllDrives: false,   
    requestBody: {
     "address": "my_address",
     "expiration": "my_expiration",
     "id": "my_id",
     "kind": "my_kind",
     "params": {},
     "payload": false,
     "resourceId": "my_resourceId",
     "resourceUri": "my_resourceUri",
     "token": "my_token",
     "type": "my_type"
     }
    },
  });
  console.log(res.data);

You can check how to implement the service from the Node JS documentation on https://googleapis.dev/nodejs/googleapis/latest/drive/classes/Resource$Files-1.html#watch

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!