Ok.. First, thanks to jal4470.. I want, however, the user to be able to enter the date, enter the time_began and enter the time_ended in 3 different fields, rather than these times be generated for me. I understand that in Oracle, the date field will hold both the date and time. so, here is what I have attempted:<br><br>First, I created the following two fields of type date in my Oracle table.:<br>work_date_begin<br>work_date_end <br><br>Gathered user info via form fields... Tried to set these field values to a string like so:<br><br><CFSET Full_time_begin = FORM.work_date & " " & FORM.time_begin_work & " " & FORM.begin_am><br><CFSET Full_time_end = FORM.work_date & " " & FORM.time_end_work & " " & FORM.end_am><br><br>The output of these cfset variables looks like this:<br>Full_time_begin: 08-11-00 9:30 A.M.<br>Full_time_end: 08-11-00 10:30 P.M.<br><br>I then tried to insert these variables using the function to_date as follows:<br><br><CFQUERY datasource="Intranet"><br>INSERT INTO jami.work_performed<br>(EMP_ID_FKEY, WORK_DATE_BEGIN, WORK_CLIENTID_FKEY, WORK_DATE_END, WORK_LOG, WORK_PERF_DESC)<br>VALUES (#Cookie.emp_id#, TO_DATE('#Full_time_begin#', 'MM-DD-YY HH:MI A.M.'), WORK_CLIENTID_FKEY, TO_DATE('#Full_time_end#', 'MM-DD-YY HH:MI A.M.'), '#WORK_LOG#', '#WORK_PERF_DESC#')<br></CFQUERY><br><br>This results in this error:<br><br>Oracle Error Code = 984<br><br>ORA-00984: column not allowed here <br><br>The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (14:1) to (14:31).<br><br>Is this because you cannot use a variable within the to_date function? Don't know. Any help? Would be greatly appreciated!!