Thursday, July 7, 2011

fnd_sessions script

insert into fnd_sessions (SESSION_ID, EFFECTIVE_DATE) values(USERENV('SESSIONID'), trunc(SYSDATE));

1 comment:

  1. Hello,

    Why at last we have to do? If we do insert in table, will Oracle automatically purge it ?
    INSERT INTO FND_SESSIONS VALUES
    (USERENV('sessionid'),TRUNC(sysdate)
    );

    ReplyDelete