You can do it as follows:
update bns_bess_messages set stream_time = trunc(sysdate);
Or, if you want to get the exact time:
update bns_bess_messages set stream_time = sysdate;
To check, you can use the following query:
select sysdate from dual;
source
share