By using this website, you agree to our Terms of Use (click here)
Notifications
Clear all
Votes Received: 1
AugSQL
0
Posts
1
Users
1
Reactions
71
Views
June 26, 2023 11:19 pm
This was a problem in version 0.4.0, but it's no longer a problem in version 0.6.0; all of the queries below now work in version 0.6.0.
Still though, I'm documenting it here in case it happens again.
This query runs:
SELECT * FROM sys.procedures
This query runs:
SELECT TOP 10 * FROM sys.procedures
This query runs:
SELECT TOP 10 * FROM sys.procedures WHERE name LIKE 'sp%'
But this query spins and spins and spins:
SELECT * FROM sys.procedures WHERE name LIKE 'sp%'