Comments
Sort by recent activity
Here's a another instance that just occurred equally annoying.
I'm trying to enter the following line in SSMS:
GRANT EXECUTE ON [insertduckreturneditemsv41] TO webserver
I type in:
GRANT EXECUTE ON [insertduckreturneditemsv41]
at which point SQL Prompt pops up its windows trying to show me the possible choices, the first stored procedure it shows is a completely different one.
When a press the space key at the end of the above (right after the desired stored procedure name that i had typed in), SQL Prompt appends the name of the other stored procedure and I end up with:
grant execute on [insertduckreturneditemsv41][dbo].[accountpoolcleanupgetallreserved]
which is of course wrong. I must then go in and manually delete what SQL Prompt added.
thx.
r- / comments
Here's a another instance that just occurred equally annoying.
I'm trying to enter the following line in SSMS:
GRANT EXECUTE ON [insertduckreturneditemsv41] TO webserver
I type in:
GRANT EXECUTE ON...