Previous Topic

Next Topic

Help

Valid in: SQL

The Help statement displays information about database objects and SQL statements, including object name, owner, and type for all tables, views, and indexes to which the user has access, and all synonyms owned by the user. System tables and temporary tables are not listed. Information is displayed in a one-line-per-object format.

In general, to display high-level information, specify help objectname (for example, help mytable). To display detailed information, specify help objecttype objectname (for example, help table mytable).

The asterisk wildcard character can be used in object name specifications to display information about a selected set of objects. For details, see Wildcards and Help.

Previous Topic

Next Topic

Syntax

The Help statement has the following format:

HELP [[schema.]objectname {, [schema.]objectname}]
HELP COMMENT COLUMN [schema.]table column_name {, column_name}
HELP COMMENT TABLE [schema.]table {, [schema.]table }
HELP CONSTRAINT [schema.]table_name  
              {, [schema.]constraint_name}
HELP DEFAULT [schema.]table_name
HELP HELP
HELP INDEX [schema.]indexname {, [schema.]indexname}
HELP INTEGRITY [schema.]table_name {, [schema.]table_name}
HELP PERMIT ON DBEVENT
               [schema.]objectname  {, [schema.]objectname}
HELP PERMIT ON PROCEDURE | TABLE | VIEW
               [schema.]object_name  {, [schema.]object_name}
HELP PROCEDURE [schema.]procedurename
              {, [schema.]procedurename}
HELP REGISTER [schema.]objectname 
HELP RULE [schema.]rulename, {[schema.]rulename}
HELP SECURITY_ALARM [ON TABLE] table_name
HELP SECURITY_ALARM ON DATABASE database_name
HELP SECURITY_ALARM ON CURRENT INSTALLATION
HELP SQL [sql_statement]
HELP SYNONYM [schema.]synonym {, [schema.]synonym}
HELP TABLE [schema.]table_name {, [schema.]table_name}
HELP TABLE|INDEX name
HELP VIEW [schema.]view_name {, [schema.]view_name}


© 2007 Ingres Corporation. All rights reserved.