select le.entry_id,
le.project_id,
le.variable_id,
le.value,
le.time_stamp,
le.description,
ao.creation_user,
ao.creation_date
from logger_entries le,
acs_objects ao
where le.entry_id = :entry_id
and le.entry_id = ao.object_id
update logger_entries
set value = :value,
time_stamp = :time_stamp,
description = :description
where entry_id = :entry_id
select current_timestamp when 1 = 0