Image | Audio | Video |
---|---|---|
X |
Disables a column for video (DB2Video data) so that it cannot hold video data. The contents of the column entries are set to NULL, and the metadata associated with this column is dropped. All the triggers defined by the video extender for this column are also dropped. New rows can be inserted into the table that contains the disabled column, and the new rows can include data defined with type DB2Video, but there is no metadata (in the administrative support tables) associated with the new rows. The application must be connected to a database before calling this API.
Authorization
Control, Alter, SYSADM, DBADM
Library file
OS/2 and Windows | AIX, HP-UX, and Solaris |
---|---|
dmbvideo.lib | libdmbvideo.a (AIX) |
| libdmbvideo.sl (HP-UX) |
| libdmbvideo.so (Solaris) |
Include file
dmbvideo.h
Syntax
long DBvDisableColumn( char *tableName, char *colName, );
Parameters
Error codes
Examples
Disable the tv_ads column in the employee table for video (DB2Video data):
#include <dmbvideo.h> rc = DBvDisableColumn("employee", "tv_ads");