How to find a MySQL data base object ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dhaval PatelPosted Nov 11, 2011, 5:43 AM
and @arjun 's question is how to find objects
Prashant ChaudharyPosted Nov 11, 2011, 5:31 AM
CREATE [DEFINER = {user| CURRENT_USER }] PROCEDUREsp_name([proc_parameter[,...]]) [characteristic...]routine_bodyCREATE [DEFINER = {user| CURRENT_USER }] FUNCTIONsp_name([func_parameter[,...]]) RETURNStype[characteristic...]routine_bodyproc_parameter: [ IN | OUT | INOUT ]param_nametypefunc_parameter:param_nametypetype:Any valid MySQL data typecharacteristic: COMMENT 'string' | LANGUAGE SQL | [NOT] DETERMINISTIC | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } | SQL SECURITY { DEFINER | INVOKER }Dhaval PatelPosted Nov 11, 2011, 5:29 AM
please find below link about database object
Stored procedure to Find database objects
http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects
This post help you then mark as "Accepted Answer"