can i create a spool file ,in same way, at server end for each client login to SQL.
with following details in it :
computer name or IP of that client,
session time, &
user name.
You can have an audit trail in the DB, or on the filesystem. It will be alot quicker than manually coding it for yourself. In 10g Release 2, you can product XML output for the audit trail.
I would also advise giving the date expression a format mask like the one you mentioned so you know what you're getting. For example if the default format ever happens to be "DD/MM/YYYY" the script would break on Unix.
column whichdate new_value whichday noprint
can i create a spool file ,in same way, at server end for each client login to SQL.
with following details in it :
computer name or IP of that client,
session time, &
user name.
You can use sys_context to get almost any kind of information for
your spool file name:
Bookmarks