Re: UNIX nice Command Good/Bad

2002-08-08 Thread Anjo Kolk
Not sure if this has been mentioned some where, but it used to be that UNIX would lower priority of processes that had accumulated a lot of CPU time. So the Oracle Background processes would get lower priority over time. Stopping and starting an instance will fix this again ;-) Cary Millsap

RE: UNIX nice Command Good/Bad

2002-08-08 Thread DENNIS WILLIAMS
Anjo - The way that I would put it is that the operating system (any multitasking o.s.) must make a decision on which process to give which processor next and for how long. It is more complex than the o.s. just picking the highest priority process from the run queue (processes that are available

Re: Unix at command ???

2002-04-03 Thread Ron Rogers
: Sent by: Subject: Unix at command ??? [EMAIL PROTECTED

Unix at command ???

2002-04-02 Thread Janet Linsy
Hi all, I'd like to run a file (r2) at 15:10 Apr 2. Below was what I did and I could not get out of at normally. /export/home/oracle/test$ at 15:10 Apr 2 at r2 at EOF at EOF at EOT at EOT at ^Z[19] + Stopped (SIGTSTP)at 15:10 Apr 2 I tried EOF according to the on-line doc, and also

Re: Unix at command ???

2002-04-02 Thread Alex
try control-C or a period or a control-D On Tue, 2 Apr 2002, Janet Linsy wrote: Hi all, I'd like to run a file (r2) at 15:10 Apr 2. Below was what I did and I could not get out of at normally. /export/home/oracle/test$ at 15:10 Apr 2 at r2 at EOF at EOF at EOT at EOT at

Re: Unix at command ???

2002-04-02 Thread Brian_P_MacLean
: Sent by: Subject: Unix at command ??? [EMAIL PROTECTED] om

OT: Unix tee command

2001-07-11 Thread Erik Williams
I do not understand the difference between these two commands: script_file log_file script_file | tee log_file As I understand, the first runs and redirects its standard output to a log file. The second runs and pipes its standard output to the tee command, which copies its

RE: Unix tee command

2001-07-11 Thread Guy Hammond
The tee command simply does what you say: it writes a copy to a file as well as writing it to the console. You could get a similar result by tail -f log_file script_file log_file Are you writing a script that needs to have two stream outputs? Or is it important that you watch the script as it

RE: Unix tee command

2001-07-11 Thread Kevin Lange
The TEE command basically duplicates the output. It sends a copy to the file specified and a copy to the standard output. This is the difference in just redirecting it. When you redirect it, none goes to standard out, just to the file specified. -Original Message- Sent: Wednesday,

RE: Unix tee command

2001-07-11 Thread Lord, David - CS
tee copies its standard input to its standard output AND the log_file. HTH David Lord -Original Message- Sent: 11 July 2001 15:12 To: Multiple recipients of list ORACLE-L I do not understand the difference between these two commands: script_file log_file script_file

RE: Unix tee command

2001-07-11 Thread Norrell, Brian
The tee command duplicates its input, sending one copy to the file, and the other to the screen (or the next command in the pipe). You get to see your data and save it too. Brian Norrell Manager, MPI Development QuadraMed 511 E John Carpenter Frwy, Su 500 Irving, TX 75062 (972) 831-6600

RE: Unix tee command

2001-07-11 Thread Vergara, Michael (TEM)
Erik: This is from the HP-UX man page for tee: DESCRIPTION The tee command transcribes the standard input to the standard output and makes copies in the files. What this means in relative English is that the output is recorded to a file (as in script_file log_file) but you see it

Re: OT: Unix tee command

2001-07-11 Thread Jared . Still
: OT: Unix tee command [EMAIL PROTECTED] om

Re: OT: Unix tee command

2001-07-11 Thread Oliver Artelt
tee copies it's standard input both to standard output and the file. You can see what it does and have a log file after that. BTW man tee is faster than putting this onto the list oli [EMAIL PROTECTED] wrote: I do not understand the difference between these two commands: