I am attempting to alter an existing stored procedure with the command
ALTER \'name_of_stored\"procedure\'
however the name is highlighted in red noting it i
I had the same issue, the problem was that I had a select statement from stored proc who's name was similar to table's name, so instead of
select * from Table_Test
I was writing this in the stored procedure
select * from Proc_Test --selecting from Stored proc, yikes!!
maybe this helps