blob: e322107fa93674b7e0d5eba59fdf0d7ae60626d3 [file] [log] [blame]
CREATE OR REPLACE FUNCTION NOW RETURN TIMESTAMP IS
/**
* Get the current date
*/
BEGIN
RETURN (SYSDATE);
END;
/
exit;