About 820,000 results
Open links in new tab
  1. GitHub - geral2/SQL-APIConsumer: Database Project with …

    It's Database Project built in C# whose main purpose it's allow consuming API GET/POST methods on SQL Server through CLR generics stored procedures. Keep in mind that it was developed and tested on SQL Server 2016 and later versions .

  2. Calling an API from SQL Server stored procedure

    Mar 29, 2020 · Today there is an easier way to call a REST endpoint from Azure SQL database (support for SQL Server and Azure SQL MI will come in future), thanks to the newly introduced system stored procedure sp_invoke_external_rest_endpoint:

  3. Making REST-API call from SQL Server procedure - SQL

    Sep 23, 2022 · We had REST-API open at a particular endpoint so any other service can consume the API and fetch data for inserting/updating into tables in SQL Server. For this purpose, I ended up creating a stored procedure using the OLE Automation procedure, which will make an HTTP request call and we can be able to perform GET and POST request methods.

  4. How to Utilize SQL-APIConsumer for API Integration in SQL Server

    May 7, 2023 · This powerful tool is designed for seamless API consumption via SQL Server, specifically built using C#. Whether you’re a developer looking to enhance data accessibility or a data analyst seeking quick insights, this guide will help you get started with SQL-APIConsumer.

  5. SQL-APIConsumer/API_Consumer/Procedures/APICaller_GET.cs at …

    Database Project with generic procedures to consume API through GET/POST methods. - geral2/SQL-APIConsumer

  6. Calling REST API From SQL Server Stored Procedure

    Oct 26, 2020 · There are various predefined procedures provided by SQL server using which we can use to consume API in a stored procedure: sp_OACreate lets you create an instance of an OLE object. The newly...

  7. Call REST API Directly From SQL Server - Brian Bonk

    Jan 5, 2023 · Among those releases we got the ability to call an external REST API directly from the SQL server in Azure. The feature is, at this post is written, in public preview, so you might see or experience some minor problems.

  8. Calling Http endpoints in T-SQL using CURL extension

    Dec 21, 2020 · One of the most popular tool for calling API on http endpoints is curl . CURL can be executed from the command line to send HTTP request to some endpoint. In the following example you can see how to call curl from PowerShell: $endpoint= "http://......" $header= "aeg-sas-key: ....." $body= "....."

  9. Calling REST API From SQL Server Stored Procedure

    Nov 28, 2024 · SQL Server doesn't have built-in functionality to directly make HTTP requests, so you'll typically use SQL Server's sp_OACreate and related procedures to interact with COM objects for HTTP requests. Here's a simplified example of how you might use sp_OACreate to call an API from a stored procedure.

  10. Calling REST API Service From SQL Server Using C# SQL CLR

    In this post, you'll learn how to call a REST Service from a SQL Server stored procedure. Solution. Before going to the implementation we will understand what C# SQL CLR is all about and how can we use it. Since .NET Framework 2.0, we have a SQL CLR which is a small part of the complete Framework CLR.

  11. Some results have been removed