> I've tried to come up with a statement that this user could issue in his > R:BASE database to change the DATE column to DATETIME, but so far I haven't > been able to get the syntax worked out.
ALTER TABLE TableName ALTER COLUMN ColumnName DATETIME This will not work if ColumnName is in more than one table, or if ColumnName IN TableName is indexed. -- Larry

