Collections:
Testing Local Temporary Stored Procedures in SQL Server
Can Another User Execute Your Local Temporary Stored Procedures in SQL Server Transact-SQL?
✍: FYIcenter.com
Can another user execute your local temporary stored procedures? The answer is no.
To test this out, continue with the exercise from the previous tutorial. Keep that user session running and open a new client session with sqlcmd.exe. Then run the tutorial script below:
-- Executing permanent procedure -- created by another user session EXECUTE Hello 'fyicenter.com'; GO Welcome to moc.retneciyf -- Executing local temporary procedure -- created by another user session EXECUTE #Hello 'fyicenter.com'; GO Msg 2812, Level 16, State 62, Line 1 Could not find stored procedure '#Hello'.
⇒ Using User Defined Functions in SQL Server Transact-SQL
⇐ Creating Local Temporary Stored Procedures in SQL Server
2016-12-28, 2824🔥, 0💬
Popular Posts:
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How Run SQL*Plus Commands That Are Stored in a Local File in Oracle? If you have a group of commands...