Adaptive Server 15.7 contains new and changed commands.
Command | Description |
---|---|
alter login | Changes the attributes of a login account |
alter login profile | Changes the attributes of a login profile |
alter...modify owner | Transfers the ownership of database objects from one owner to another |
alter thread pool | Alters a thread pool |
create login | Creates a login account; specifies a password, a login profile for the account, and user-supplied parameters to be assigned to the account |
create login profile | Creates a login profile with specified attributes |
create thread pool | Creates a user-defined thread pool |
deallocate locator | Deletes a large object (LOB) stored in memory and invalidates its LOB locator |
drop login | Drops a login account or list of accounts |
drop login profile | Drops a login profile or list of login profiles |
drop thread pool | Drops a user-defined pool |
merge | Transfers rows from a source table into a target table |
select for update | Exclusively locks rows for subsequent update within the same transaction |
truncate lob | Truncates a LOB to a specified length |
Command | Change |
---|---|
alter database changes |
|
alter encryption key |
|
alter table |
|
Concatenation operators |
The + and || Transact-SQL operators accept LOB locators as expressions for a concatenation operation. The result of a concatenation operation involving one or more locators is a new LOB locator with the same datatype as that referenced by the input locator. |
create database |
|
create encryption key |
|
create table ... [ in row [(length)] | off row ] | allows you to create a compressed table create table lets you specify that the data in a LOB column be kept in the row, instead of stored off-row. |
declare cursor ... [release_locks_on_close]] | Allows you to configure the lock-releasing behavior of each cursor so that the shared locks can be released when the cursor is closed, even if the transaction is active. |
drop encryption key | [dual] master – indicates you are dropping a master or dual master key |
dump database ... with shrink_log | Allows you to remove any holes at the end of a database, regardless of whether the database is in a dump sequence. |
like clause in a where clause |
where clause accepts text and unitext LOB locators, but not image LOB locators, for the variables expression and match_string. |
select into ... [in row [(length)] | off row ] |
Sets or changes the in-row chracteristics for the text columns in the target table. If you do not specify length, Adaptive Server uses the configured default in-row length. |
set | set adds
|
where clause extension to support LOBs |
where clauses in select, insert, update, and delete statements can include a condition for null large objects (LOBs). |
See the Reference Manual: Commands.