ALTER DATABASE Statement
Upgrades a database created with a previous version of the software or adds or removes jConnect™ for JDBC™ support. Run this statement with Interactive SQL.
ALTER DBSPACE Statement
Changes the read/write mode, changes the size, or extends an existing dbspace.
ALTER DOMAIN Statement
Renames a user-defined domain or data type. Does not rename Java types.
ALTER EVENT Statement
Changes the definition of an event or its associated handler for automating predefined actions. Also alters the definition of scheduled actions.
ALTER FUNCTION Statement
Modifies an existing function. Include the entire modified function in the ALTER FUNCTION statement.
ALTER INDEX Statement
Renames indexes in base or global temporary tables and foreign key role names of indexes and foreign keys explicitly created by a user.
ALTER LOGIN POLICY Statement
This statement performs two functions. It can modify option values for existing login policies in the database or configure logical server access.
ALTER LS POLICY Statement
Modifies some or all option values for the existing root logical server policy in the database.
ALTER PROCEDURE Statement
Replaces an existing procedure with a modified version. Include the entire modified procedure in the ALTER PROCEDURE statement, and reassign user permissions on the procedure.
CREATE JOIN INDEX Statement
Creates a join index, which defines a group of tables that are prejoined through specific columns, to improve performance of queries using tables in a join operation.
CREATE SCHEMA Statement
Creates a schema, which is a collection of tables, views, and permissions and their associated permissions, for a database user.
CREATE VIEW Statement
Creates a view on the database. Views are used to give a different perspective on the data even though it is not stored that way.
DESCRIBE Statement [ESQL]
Gets information about the host variables required to store data retrieved from the database or host variables used to pass data to the database.
FROM Clause
Specifies the database tables or views involved in a SELECT statement.
GET DESCRIPTOR Statement [ESQL]
Retrieves information about variables within a descriptor area, or retrieves actual data from a variable in a descriptor area.
GRANT Statement
Gives permissions to specific users and creates new user IDs.
IF Statement
Provides conditional execution of SQL statements.
IF Statement [T-SQL]
Provides conditional execution of a Transact-SQL statement, as an alternative to the Sybase IQ IF statement.
INCLUDE Statement [ESQL]
Includes a file into a source program to be scanned by the SQL source language preprocessor.
INSERT Statement
Inserts into a table either a single row (Syntax 1) or a selection of rows (Syntax 2) from elsewhere in the current database. Inserts a selection of rows from another database (Syntax 3).