SHOW RESOURCES
This statement is used to display resources that the user has permission to use. Ordinary users can only display resources with permission, and root or admin users will display all resources.
grammar:
SHOW RESOURCES [ WHERE [NAME [ = "your_resource_name" | LIKE "name_matcher"]] [RESOURCETYPE = ["SPARK"]] ] | [LIKE "pattern"] [ORDER BY...] [LIMIT limit][OFFSET offset];
illustrate:
Display all resources that the current user has permissions to
SHOW RESOURCES;
Display the specified Resource, the name contains the string “20140102”, and display 10 attributes
SHOW RESOURCES WHERE NAME LIKE "2014_01_02" LIMIT 10;
Display the specified Resource, specify the name as “20140102” and sort by KEY in descending order
SHOW RESOURCES WHERE NAME = "20140102" ORDER BY `KEY` DESC;
Using LIKE to match the resource
SHOW RESOURCES LIKE "jdbc%";
SHOW, RESOURCES