Displays the syntax of Transact-SQL statements, system procedures, utilities, and other routines for Adaptive Server, depending on which products and corresponding sp_syntax scripts exist on your server.
sp_syntax word [, mod][, language]
is the name or partial name of a command or routine; for example, “help”, to list all system procedures providing help. To include spaces or Transact-SQL reserved words, enclose the word in quotes.
is the name or partial name of one of the modules such as “Transact-SQL” or “Utility”. Each sp_syntax installation script adds different modules. Use sp_syntax without any parameters to see which modules exist on your server.
is the language of the syntax description to be retrieved. language must be a valid language name in the syslanguages table.
Displays all sp_syntax modules available on your server:
sp_syntax
sp_syntax provides syntax help for Sybase products. These modules are installed on this Server: Module -------------------- OpenVMS Transact-SQL UNIX Utility System Procedure Usage: sp_syntax command [, module [, language]]
Displays the syntax and functional description of all routines containing the word or word fragment “disk”. Since “disk” is a Transact-SQL reserved word, enclose it in quotes:
sp_syntax "disk"
The text for sp_syntax is in the database sybsyntax. Load sp_syntax and the sybsyntax database onto Adaptive Server with the installation script described in configuration documentation for your platform. If you cannot access sp_syntax, see your System Administrator for information about installing it on your server.
You can use wildcard characters within the command name you are searching for. However, if you are looking for a command or function that contains the literal “_”, you may get unexpected results, since the underscore wildcard character represents any single character.
Any user can execute sp_syntax.
Values in event and extrainfo columns from the sysaudits table are:
Event |
Audit option |
Command or access audited |
Information in extrainfo |
---|---|---|---|
38 |
exec_procedure |
Execution of a procedure |
|
sybsyntax..sybsyntax
System procedures sp_helpdb
Copyright © 2005. Sybase Inc. All rights reserved. |