04 Oct 2024 09:27 AM
Hi,
I like the new Custom Extensions Creator to simplify db queries. However, I get error when trying to run a stored procedure. Error message is: Query must start with select
Is that only for the Extensions Creator App? I hope it is still possible to run stored procedures to databases.
Anyone else having issues with stored procedures?
Solved! Go to Solution.
14 Oct 2024 01:11 PM
Dear @holst
You didn't give detailed information about your query.
Maybe you can use procedure in SELECT statement:
sql - How to SELECT FROM stored procedure - Stack Overflow
SELECT * INTO #tmp FROM OPENQUERY(YOURSERVERNAME, 'EXEC MyProc @parameters')
Best Regards
Michał
14 Oct 2024 06:52 PM