1

Does Azure offer any services to import data from a REST API into SQL Azure? Worse case we can do this via .NET, but I thought there might be an easier way.

Thanks in advance.

Daniel Mackay
  • 2,298
  • 1
  • 15
  • 19
  • What do you mean by import data from rest api? Will rest api not publish it to some store ? – TusharJ May 27 '16 at 01:23
  • We access to a 3rd party rest api. We wish to pull some of this into our own DB for reporting purposes. – Daniel Mackay May 27 '16 at 07:44
  • @DanielMackay Did you find a solution yet? I am using Function App to bring the data in. – DhruvJoshi Feb 21 '19 at 16:17
  • @DhruvJoshi - no solution yet. Was trying to find a simple solution via DataFactory or LogicApps, but nothing good so far. It's possible for both, but I feel like there should be an easier way. – Daniel Mackay Feb 23 '19 at 09:39
  • @DanielMackay I posted a new question to seek answers [https://stackoverflow.com/questions/54812089/bringing-incremental-data-in-from-rest-apis-into-sql-azure]. – DhruvJoshi Feb 23 '19 at 13:54
  • I also posted in Azure slack channel, hoping to get some answers – DhruvJoshi Feb 23 '19 at 13:58

1 Answers1

-2

The documentation link below explains how to use REST API to import data into your Azure SQL Database. https://msdn.microsoft.com/en-us/library/azure/mt683388.aspx

Is this helpful?

nnuemah
  • 289
  • 1
  • 2