Saturday 21 October 2017

MSSLQ - Query to load all stored procedures that start with particular name

Watch this example on YouTube




Select * FROM Company.Information_Schema.routines
Where routine_type= 'PROCEDURE'
AND routine_name Like ('User%')

No comments:

Post a Comment