1--if you want to hardcode the time stamp:
2
3insert
4into tablename (timestamp_value)
5values (TO_TIMESTAMP(:ts_val, 'YYYY-MM-DD HH24:MI:SS'));
6
7--if you want the current time stamp to be inserted then:
8
9insert
10into tablename (timestamp_value)
11values (CURRENT_TIMESTAMP);