Using the very old utility Error Lookup, I find that error 0x80070008 is Not enough memory resources are available to process this command.
How much RAM do you have on your machine?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Ik kan geen rest endpoint aanroepen uit SQL 2025 naar LocalHost (HTTPS)
Microsoft SQL Server Enterprise Developer (64-bit) / Windows 11 Home /
We hebben de volgende procedure gevolgd
https://devblogs.microsoft.com/azure-sql/getting-started-with-ai-in-sql-server-2025-on-windows/
DECLARE @ret AS INT, @response AS NVARCHAR (MAX) ;
EXECUTE @ret = sp_invoke_external_rest_endpoint @url = N'https://localhost',
@method = 'GET',
@response = @response OUTPUT;
SELECT @ret AS ReturnCode,
@response AS Response;
Geeft volgende Fout
Msg 31608, Level 16, State 29, Procedure sys.sp_invoke_external_rest_endpoint_internal, Line 1 [Batch Start Line 0]
An error occurred, failed to communicate with the external rest endpoint. HRESULT: 0x80070008.
Using the very old utility Error Lookup, I find that error 0x80070008 is Not enough memory resources are available to process this command.
How much RAM do you have on your machine?
The error message HRESULT: 0x80070008 indicates a failure to communicate with the external REST endpoint, which could be due to several reasons. Here are some steps to troubleshoot the issue:
https://localhost is running and reachable. You can verify this by accessing the URL directly in a web browser on the same machine.localhost with 127.0.0.1 in your sp_invoke_external_rest_endpoint call. This can help avoid any issues related to name resolution.If these steps do not resolve the issue, further investigation into the SQL Server logs or additional documentation may be necessary for more specific troubleshooting guidance.