SELECT routine_schema, routine_name, *
FROM information_schema.routines
WHERE routine_definition LIKE '%KEYWORD%'
AND routine_type = 'PROCEDURE'
-- View all the columns in tables + views with full table/view name
SELECT *
FROM information_schema.columns
WHERE table_name = 'table_name'
-- stored procedure / function parameters
SELECT *
FROM information_schema.parameters
WHERE specific_name = 'stored_procedure_name'
-- output columns for table valued functions (NOT stored procedures)
SELECT *
FROM information_schema.routine_columns
WHERE table_name = 'table_valued_function_name'
-- list of tables
SELECT *
FROM information_schema.tables