Transfer information is stored in spt_TableTransfer or monTableTransfer.
spt_TableTransfer – results from table transfers are stored in, and retrieved from, spt_TableTransfer
monTableTransfer – contains historical transfer information for tables, for transfers currently in progress, and for those that are completed
transfer table mytable for csv
The next time you transfer table mytable, the transfer command, by default uses for csv and the same row and column separators.
Each database has its own version of spt_TableTransfer. The table stores history only for table transfers for tables in its same database that are marked for incremental transfer.
The max transfer history configuration parameter controls how many transfer history entries SAP ASE retains in the spt_TableTransfer table in each database. See, Setting Configuration Parameters, in the System Administration Guide, Volume 1.
Database owners use sp_setup_table_transfer to create the spt_TableTransfer table. sp_setup_table_transfer takes no parameters, and works in the current database.
spt_TableTransfer stores historical information about both successful and failed transfers. It does not store information for in-progress transfers.
spt_TableTransfer is a user table, rather than a system table. It is not created when you create SAP ASE, but SAP ASE automatically creates it in any database that has tables that are eligible for transfer, if you do not use sp_setup_transfer_table to manually create it (creating it manually may allow you to avoid unexpected errors that can occur when SAP ASE creates the table automatically).
sp_help reports incremental transfer as a table attribute.
The columns in spt_TableTransfer are:
Column |
Datatype |
Description |
---|---|---|
end_code |
unsigned smallint not null |
The transfer’s ending status. 0 – success. error code – failure. |
id |
int not null |
The object ID of the transferred table. |
ts_floor |
bigint not null |
The beginning transaction timestamp. |
ts_ceiling |
bigint not null |
The transaction timestamp after which rows are uncommitted, and therefore not transferred. |
time_begin |
datetime not null |
|
time_end |
datetime not null |
|
row_count |
bigint not null |
The number of rows transferred. |
byte_count |
bigint not null |
The number of bytes written. |
sequence_id |
int not null |
A number that tracks this transfer, unique to each transfer of a table. |
col_order |
tinyint not null |
A number representing the column order of the output:
|
output_to |
tinyint not null |
A number representing the output format:
|
tracking_id |
int null |
An optional customer-supplied tracking ID. If you do not use with tracking_id = nnn, this column is null. |
pathname |
varchar (512) null |
The output file name. |
row_sep |
varchar (64) null |
The row separator string used for for csv. |
col_sep |
varchar(64) null |
The column separator used for for csv. |
Historical transfer information for tables for which SAP ASE currently holds transfer information in memory. This is true for any table accessed since the most recent SAP ASE restart, unless you have not configured SAP ASE memory large enough to hold all current table information that:
Are marked for incremental transfer
Have been involved in at least one transfer since you restarted SAP ASE.
Have descriptions you have not used for other tables. monTableTransfer does not search through every database looking for every table that was ever transferred; it searches only an active set of tables that have recent transfers.
See monTableTransfer in the Reference Manual: Tables.