Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert Date for Log

Status
Not open for further replies.

cwsstins

MIS
Aug 10, 2004
412
0
0
US
I've got a .sql script running from a UNIX ksh shell script. Part of the .sql includes a SPOOL command to a log file. I'd like to include the date/time in the log file so it is a little more useful.

Here's my code:
Code:
DEFINE LOG_DIR=&1
SPOOL &&LOG_DIR/file.log
ALTER SYSTEM FLUSH SHARED_POOL
@@Date
/
TRUNCATE TABLE tblname
/
SPOOL OFF
EXIT

Please advise on how I can add the date/time to the log file being generated.

Also, I keep getting this error when I run the .sql from the UNIX shell script...does this mean the SQL login I'm using to run this doesn't have access to run that command?:

ALTER SYSTEM FLUSH SHARED_POOL
*
ERROR at line 1:
ORA-01031: insufficient privileges
 
Well, I've got this...

Code:
DEFINE LOG_DIR=&1
SPOOL &&LOG_DIR/file.log
ALTER SYSTEM FLUSH SHARED_POOL
@@Date
/
TRUNCATE TABLE tblname;
[b]select sysdate from dual;[/b]
/
SPOOL OFF
EXIT

and it works, but it prints the date twice, which I don't understand. And I don't know how to find the date...
 
Try this.

column dcol new_value mydate noprint
select 'mylog_' || to_char(sysdate,'YYYYMMDD') || '.log' dcol from dual;

spool &mydate
etc ...
 
Thanks for the reply. I actually ended up using this:

select to_char(sysdate, 'mm/dd/yyyy hh24:mi:ss') from dual;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top