DEV Community

Cover image for MariaDB Quick-tip #7 - Find stored procedure
Allan Simonsen
Allan Simonsen

Posted on

3 1

MariaDB Quick-tip #7 - Find stored procedure

MariaDB tips and tricks

This is part of a series of quick tips and tricks I have accumulated over the year, that I think can be useful for others.
If you have similar short tips and tricks please leave a comment.

Find stored procedure

When working on large databases there can in some projects be hundreds or even thousands of stored procedures, so if your task is to find all stored procedures that query a specific table then finding it could be quite a headache.
This query below has helped me many times and I hope it will help you too.

SELECT r.ROUTINE_SCHEMA  as "Database",
       r.ROUTINE_NAME  
  FROM information_schema.routines r
 WHERE r.ROUTINE_TYPE  = 'PROCEDURE'
   AND r.ROUTINE_DEFINITION LIKE '%departments%'
 ORDER BY r.ROUTINE_SCHEMA ASC,
       r.ROUTINE_NAME ASC;
Enter fullscreen mode Exit fullscreen mode

DBeaver screenshot

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay