{"id":311,"date":"2009-12-05T20:43:34","date_gmt":"2009-12-05T15:13:34","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=311"},"modified":"2015-01-03T16:48:39","modified_gmt":"2015-01-03T16:48:39","slug":"stored-procedure-to-find-database-objects","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects","title":{"rendered":"Stored procedure to Find database objects"},"content":{"rendered":"<p>This procedure lists available database objects under passed database name.<\/p>\n<p>It lists present Tables, Views, Stored Procedures, Functions and Triggers under particular database.<br \/>\nIt also lists storage engine of tables.<br \/>\nIt uses information schema database to gather information and storing in a temporary table.<\/p>\n<p>Usage: call xplore(database-name);<br \/>\n&#8211; Procedure will search through information schema for database objects under database-name.<\/p>\n<p><strong>Download Stored Procedure: <a href=\"http:\/\/kedar.nitty-witty.com\/wp-content\/uploads\/2009\/12\/explore-database.sql\">explore-database<\/a><\/strong><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">DELIMITER $$<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">DROP PROCEDURE IF EXISTS `xplore` $$<br \/>\nCREATE DEFINER=`root`@`localhost` PROCEDURE `xplore`(IN_DB varchar(100))<br \/>\nBEGIN<br \/>\nDECLARE DB VARCHAR(100);<br \/>\nDECLARE NO_TABLES INT(10);<br \/>\nDECLARE NO_VIEWS INT(10);<br \/>\nDECLARE NO_FUNCTIONS INT(10);<br \/>\nDECLARE NO_PROCEDURES INT(10);<br \/>\nDECLARE NO_TRIGGERS INT(10);<br \/>\nDECLARE SUMMARY VARCHAR(200);<br \/>\nSET DB=IN_DB;<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">drop temporary table if exists objects;<br \/>\ncreate temporary table objects<br \/>\n(<br \/>\nobject_type varchar(100),<br \/>\nobject_name varchar(100),<br \/>\nobject_schema varchar(100)<br \/>\n)<br \/>\nengine=myisam; <\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">INSERT INTO objects<br \/>\n\/* query for triggers *\/<br \/>\n(SELECT &#8216;TRIGGER&#8217;,TRIGGER_NAME ,TRIGGER_SCHEMA<br \/>\nFROM information_schema.triggers<br \/>\nWHERE TRIGGER_SCHEMA like DB)<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">UNION<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* query for views*\/<br \/>\n(SELECT &#8216;VIEW&#8217;, TABLE_NAME,TABLE_SCHEMA<br \/>\nFROM information_schema.tables<br \/>\nWHERE table_type=&#8217;VIEW&#8217; and TABLE_SCHEMA like DB)<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">UNION<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* query for procedure*\/<br \/>\n(SELECT &#8216;PROCEDURE&#8217;, SPECIFIC_NAME, ROUTINE_SCHEMA<br \/>\nFROM information_schema.routines<br \/>\nWHERE routine_type=&#8217;PROCEDURE&#8217; and ROUTINE_SCHEMA like DB)<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">UNION<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* query for function*\/<br \/>\n(SELECT &#8216;FUNCTION&#8217;, SPECIFIC_NAME, ROUTINE_SCHEMA<br \/>\nFROM information_schema.routines<br \/>\nWHERE routine_type=&#8217;FUNCTION&#8217; and ROUTINE_SCHEMA like DB)<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">UNION<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* query for tables*\/<br \/>\n(SELECT concat(ENGINE,&#8217; TABLE&#8217;), TABLE_NAME, TABLE_SCHEMA<br \/>\nFROM information_schema.tables<br \/>\nWHERE table_type=&#8217;BASE TABLE&#8217; and TABLE_SCHEMA like DB<br \/>\nGROUP BY ENGINE, TABLE_NAME);<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* show gathered information from temporary table *\/<br \/>\nSELECT object_name,object_type,object_schema<br \/>\nFROM objects;<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">\/* Prepare and show summary *\/<br \/>\nSELECT object_schema AS `DATABASE`,<br \/>\nSUM(IF(object_type like &#8216;%TABLE&#8217;, 1, 0)) AS &#8216;TABLES&#8217;,<br \/>\nSUM(IF(object_type=&#8217;VIEW&#8217;, 1, 0)) AS &#8216;VIEWS&#8217;,<br \/>\nSUM(IF(object_type=&#8217;TRIGGER&#8217;, 1, 0)) AS &#8216;TRIGGERS&#8217;,<br \/>\nSUM(IF(object_type=&#8217;FUNCTION&#8217;, 1, 0)) AS &#8216;FUNCTIONS&#8217;,<br \/>\nSUM(IF(object_type=&#8217;PROCEDURE&#8217;, 1, 0)) AS &#8216;PROCEDURES&#8217;<br \/>\nFROM objects<br \/>\nGROUP BY object_schema;<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">END $$<\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #888888;\">DELIMITER ;<\/span><\/p>\n<p><span style=\"color: #888888;\"> <\/span><\/p>\n<p><span style=\"color: #888888;\"><span style=\"color: #000000;\"> <\/span><\/span><\/p>\n<div id=\"_mcePaste\" style=\"position: absolute; left: -10000px; top: 1315px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;\">I have also published this as an article on EE.<\/div>\n<div id=\"_mcePaste\" style=\"position: absolute; left: -10000px; top: 1315px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;\">http:\/\/www.experts-exchange.com\/articles\/Database\/MySQL\/Finding-tables-views-functions-procedures-and-triggers-in-MySQL-Database.html<\/div>\n<p>I have also published this as an article on EE.<\/p>\n<p>http:\/\/www.experts-exchange.com\/articles\/Database\/MySQL\/Finding-tables-views-functions-procedures-and-triggers-in-MySQL-Database.html<\/p>\n","protected":false},"excerpt":{"rendered":"This procedure lists available database objects under passed database name. It lists present Tables, Views, Stored Procedures, Functions and Triggers under particular database. It also lists storage engine of tables.&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[8,378,6],"tags":[24,427,108,426],"class_list":["post-311","post","type-post","status-publish","format-standard","category-mysql","category-mysql-scripts-mysql","category-technical","tag-code","tag-mysql","tag-stored-procedure","tag-technical"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"MySQL stored procedure to find database objects\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"find database objects,mysql procedure,mysql,find,search,code,stored procedure,technical\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"MySQL stored procedure to find database objects\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-12-05T15:13:34+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-01-03T16:48:39+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"MySQL stored procedure to find database objects\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#article\",\"name\":\"MySQL Stored procedure to Find\\\/search database objects | Change Is Inevitable\",\"headline\":\"Stored procedure to Find database objects\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2009-12-05T20:43:34+00:00\",\"dateModified\":\"2015-01-03T16:48:39+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#webpage\"},\"articleSection\":\"MySQL, MySQL-Scripts, Technical, code, MySQL, stored procedure, Technical\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"position\":2,\"name\":\"MySQL\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-scripts-mysql#listItem\",\"name\":\"MySQL-Scripts\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-scripts-mysql#listItem\",\"position\":3,\"name\":\"MySQL-Scripts\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-scripts-mysql\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#listItem\",\"name\":\"Stored procedure to Find database objects\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql#listItem\",\"name\":\"MySQL\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#listItem\",\"position\":4,\"name\":\"Stored procedure to Find database objects\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/mysql\\\/mysql-scripts-mysql#listItem\",\"name\":\"MySQL-Scripts\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects\",\"name\":\"MySQL Stored procedure to Find\\\/search database objects | Change Is Inevitable\",\"description\":\"MySQL stored procedure to find database objects\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/stored-procedure-to-find-database-objects#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2009-12-05T20:43:34+00:00\",\"dateModified\":\"2015-01-03T16:48:39+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable","description":"MySQL stored procedure to find database objects","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects","robots":"max-image-preview:large","keywords":"find database objects,mysql procedure,mysql,find,search,code,stored procedure,technical","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#article","name":"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable","headline":"Stored procedure to Find database objects","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2009-12-05T20:43:34+00:00","dateModified":"2015-01-03T16:48:39+00:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#webpage"},"articleSection":"MySQL, MySQL-Scripts, Technical, code, MySQL, stored procedure, Technical"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","position":2,"name":"MySQL","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql#listItem","name":"MySQL-Scripts"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql#listItem","position":3,"name":"MySQL-Scripts","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#listItem","name":"Stored procedure to Find database objects"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql#listItem","name":"MySQL"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#listItem","position":4,"name":"Stored procedure to Find database objects","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql#listItem","name":"MySQL-Scripts"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects","name":"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable","description":"MySQL stored procedure to find database objects","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2009-12-05T20:43:34+00:00","dateModified":"2015-01-03T16:48:39+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable","og:description":"MySQL stored procedure to find database objects","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects","article:published_time":"2009-12-05T15:13:34+00:00","article:modified_time":"2015-01-03T16:48:39+00:00","twitter:card":"summary","twitter:title":"MySQL Stored procedure to Find\/search database objects | Change Is Inevitable","twitter:description":"MySQL stored procedure to find database objects"},"aioseo_meta_data":{"post_id":"311","title":"MySQL Stored procedure to Find\/search database objects | #site_title","description":"MySQL stored procedure to find database objects","keywords":[{"label":"find database objects","value":"find database objects"},{"label":"mysql procedure","value":"mysql procedure"},{"label":"mysql","value":"mysql"},{"label":"find","value":"find"},{"label":"search","value":"search"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:44:53","updated":"2025-08-16 19:03:00","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\" title=\"MySQL\">MySQL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql\" title=\"MySQL-Scripts\">MySQL-Scripts<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tStored procedure to Find database objects\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"MySQL","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql"},{"label":"MySQL-Scripts","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/mysql\/mysql-scripts-mysql"},{"label":"Stored procedure to Find database objects","link":"https:\/\/kedar.nitty-witty.com\/blog\/stored-procedure-to-find-database-objects"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/311","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=311"}],"version-history":[{"count":3,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/311\/revisions"}],"predecessor-version":[{"id":1998,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/311\/revisions\/1998"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}