Data Removal
Data removal
The AIMMS database interface offers limited capabilities to manage the
tables in a database. Such management is typically done through the use
of stored procedures within a database. AIMMS, however, offers you the
possibility to remove data from a database table by means of the
EMPTY
or TRUNCATE
statement.
Empty database columns
The EMPTY
statement can remove data from a database table in two
manners.
When you use a database table identifier in the identifier selection in an
EMPTY
statement, AIMMS will remove all data from that table.When you use a database table identifier behind the
IN
clause in anEMPTY
statement, AIMMS will empty all columns in the corresponding database table which are mapped onto the AIMMS identifiers in the identifier selection of thatEMPTY
statement.
For more details on the EMPTY
statement, refer to
Data Control.
Examples
The examples in this paragraph illustrate various uses of the EMPTY
statement applied to database tables.
The following statement removes all data from the table
CityTable
.empty CityTable ;
The following statement removes the data from the table
CityTable
that maps onto the AIMMS identifierDemand
.empty Demand in CityTable ;
The following statement removes the data associated with the version
OldVersion
from the indexed tableRouteTable(v)
. The data associated with other versions will remain intact.empty RouteTable(OldVersion) ;
The following statement removes the data from the table
RouteTable(v)
for all versionsv
in the setVersions
.empty RouteTable;
The following statement removes the data from the table
RouteTable(v)
for all versionssv
in the subsetSelectedVersions
of the setVersions
.empty RouteTable(sv);
The following statement removes the data in the column mapped onto the AIMMS identifier
Transport
and associated with the versionLatestVersion
from the indexed tableRouteTable(v)
.empty Transport in RouteTable(LatestVersion) ;
Truncate database tables
Depending on the type of the underlying data source you are connecting
to, you can use the TRUNCATE
statement to empty the database table
in a very fast way. The drawbacks of the TRUNCATE
statement are that
not all type of data sources support the TRUNCATE
statement and
rollback support for the TRUNCATE
operation is also depending on the
type of data source you are connecting to. In case the underlying data
source does not support truncating, depending on the setting of the
option Warning_truncate_table
a warning is issued and AIMMS will use
the slower EMPTY
statement to empty the table.
Example
The following statement removes all data from the table CityTable
at
once.
truncate table CityTable ;