Home > Contents > Index >
UNTRACKTABLE
Stops tracking a table.
Syntax
<UNTRACKTABLE TABLE="TABLE_NAME"/>Parameters
TABLE (required)
- Name of table to stop tracking
Description
The
UNTRACKTABLE
tag stops tracking a table. Revision-tracking operations are then no longer available on the table.Error Numbers
The possible values of
errno
include:
Value Description -1000 Command failure. Check theerrdetail
variable for the specific error.Example
This example assumes all
UNTRACKTABLE
parameters are exposed on an HTML form. It first checks whether the parameters exist, clears any values fromerrno
, then removes revision tracking from the table.
<!-- Make sure required parameters exist --> <IF
COND="IsVariable.tablename=false"> <THEN> <SETVAR
NAME="tablename" VALUE=""/> </THEN> </IF> <!-- clear out errno --> <SETVAR
NAME="errno" VALUE="0"/> <!-- do the untrack --> <UNTRACKTABLE TABLE="Variables.tablename"/> <!-- See if untrack succeeded --> <IF
COND="Variables.errno=0"> <THEN> <!-- if succeeded, note it--> UntrackTable succeeded for <CSVAR
NAME="Variables.tablename"> <BR/> </THEN> <ELSE> <!-- otherwise, call an error reporting element --> UnTrackTable failed.<BR/> </ELSE> </IF>
Home > Contents > Index > Oracle XML Tag Reference
Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.