I have a CMS database (SQL Server) that stores around 2 million documents PDF, Word, Excel etc. averaging 2MB in size.
I want to move these docs and upload them into Google Drive, get an Id back, and store this as a reference in SQL Server.
Has anyone done this or knows of possible problems with this approach?
Thanks.
You won’t be able to do it directly via SQL Server, but you can write a simple .NET (or other) app that does what you’re after.
Here is the drive API documentation, API clients, and specific instructions for uploading files.
Kyle