No cache version.

Caching disabled. Default setting for this page:enabled (code DEF204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher dans le manuel MySQL

13.7.6.28 SHOW PROCEDURE STATUS Syntax

  1.     [LIKE 'pattern' | WHERE expr]

This statement is a MySQL extension. It returns characteristics of a stored procedure, such as the database, name, type, creator, creation and modification dates, and character set information. A similar statement, SHOW FUNCTION STATUS, displays information about stored functions (see Section 13.7.6.20, “SHOW FUNCTION STATUS Syntax”).

The LIKE clause, if present, indicates which procedure or function names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in Section 25.42, “Extensions to SHOW Statements”.

  1. mysql> SHOW PROCEDURE STATUS LIKE 'sp1'\G
  2. *************************** 1. row ***************************
  3.                   Db: test
  4.                 Name: sp1
  5.                 Type: PROCEDURE
  6.              Definer: testuser@localhost
  7.             Modified: 2018-08-08 13:54:11
  8.              Created: 2018-08-08 13:54:11
  9.        Security_type: DEFINER
  10.              Comment:
  11. character_set_client: utf8mb4
  12. collation_connection: utf8mb4_0900_ai_ci
  13.   Database Collation: utf8mb4_0900_ai_ci

character_set_client is the session value of the character_set_client system variable when the routine was created. collation_connection is the session value of the collation_connection system variable when the routine was created. Database Collation is the collation of the database with which the routine is associated.

Stored routine information is also available from the INFORMATION_SCHEMA PARAMETERS and ROUTINES tables. See Section 25.16, “The INFORMATION_SCHEMA PARAMETERS Table”, and Section 25.23, “The INFORMATION_SCHEMA ROUTINES Table”.


Find a PHP function

Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-show-procedure-status.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:en Manuel MySQL : https://dev.mysql.com/

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut