If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I want to change the date to timestamp format in db2 udb datbase table which is running in V8.1 , Please provide me
best possible solution .Its urgent. Please help
Built-in functions are provided with the database manager; they return a single
result value, and are identified as part of the SYSIBM schema. Built-in functions
include column functions (such as AVG), operator functions (such as “+”), casting
functions (such as DECIMAL), and others (such as SUBSTR).
User-defined functions are registered to a database in SYSCAT.ROUTINES (using the
CREATE FUNCTION statement). User-defined functions are never part of the
SYSIBM schema. One such set of functions is provided with the database manager
in a schema called SYSFUN, and another in a schema called SYSPROC.