Find all MySQL Stored Procedure calls?

后端 未结 3 765
灰色年华
灰色年华 2021-02-07 14:16

For a given MySQL DB that I use and modify occasionally I had to recently make some changes to some tables and stored procedures. There are places in this DB where procedures m

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-07 14:43

    Wow this is awesome! I'm using this to search for text in my MySQL database:

    SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_DEFINITION LIKE "%search_string%";
    

提交回复
热议问题