RE: UNIX OT: exclude files in tar

2003-11-25 Thread Ross Collado
iling list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other infor

UNIX OT: exclude files in tar

2003-11-24 Thread Ross Collado
this right? Thanks, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hostin

UNIX OT: deleting file starting with --

2003-10-30 Thread Ross Collado
Hi, How do I delete a file named --cart ? Thanks, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web

RE: Coalescing tablespace

2003-10-26 Thread Ross Collado
b, > sys.ts$t > wheret.name = '' > and a.ts# = t.ts# > and a.ts# = b.ts# > and a.file# = b.file# > and (a.block# + a.length) = b.block# > group by t.ts#; > > The purpose of the "LEAST(C

Coalescing tablespace

2003-10-26 Thread Ross Collado
Hi, For those like me still working on an Oracle 716 (hold the laughs), how do we coalesce a tablespace? Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http

My Proc may not be using bind vars.

2003-10-14 Thread Ross Collado
r3||'x'|| -- addr_rec.sub_dist||'x'||addr_rec.pcode); end loop; close cv; exception when others then dbms_output.put_line(sqlcode||sqlerrm); end by_key; -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [

RE: Correct method of auto starting standby db

2003-07-31 Thread Ross Collado
taining: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services

RE: make utility in Solaris 8

2003-03-25 Thread Ross Collado
-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hosting services - To REMOVE yo

OT: make utility in Solaris 8

2003-03-24 Thread Ross Collado
Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hostin

RE: Out of topic -Unx question

2002-12-22 Thread Ross Collado
. You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California

RE: OT ksh day of week yesterday

2002-11-13 Thread Ross Collado
Tue instead of Wed) I man'd date, but it was no help. Thanks for any help. Barb _ Do you Yahoo!? U2 on <http://rd.yahoo.com/launch/mailsig/*http://launch.yahoo.com/u2> LAUNCH - Exclusive medley & videos from Greatest Hits CD -- Please see the official ORACLE-L FAQ: http://www.or

RE: Unix Q: Substring-ing an output.

2002-10-28 Thread Ross Collado
t; ps -ef | grep smon | grep -v grep | awk -F_ '{ print $3 }' > > Is one way of many to get your result. > > > > > > Ross Collado

RE: Unix Q: Substring-ing an output.

2002-10-28 Thread Ross Collado
ep|cut -c49- |awk -F_ '{ 'print $3 }' > > I replaced the first awk w/ cut. the -c option says to cut > that output > from position 49 to the end of the line. You may have to adjust the > value from 49 to something else. > > That ought to work for you. > >

RE: Unix Q: Substring-ing an output. (CLOSED)

2002-10-27 Thread Ross Collado
umber of fields in a ps -ef output is not consistent. > As you can see > I've just restarted RMAN and now it only has 8 fields as > compared to 9 for > the others. > > Any suggestions? Or another way of doing it? > Using KSH on Solaris 8. > > Thanks. > Ro

RE: Unix Q: Substring-ing an output.

2002-10-27 Thread Ross Collado
Browsing through my Sed and Awk book following up on Mark's lead, I came up with this: ps -ef|grep pmon|grep -v grep|awk '{ print $NF }'|awk -F_ '{ print $3 }' TLDEV TLQA TLQAVAR DBMON RMAN PRDINF TLDVVAR That'll do fine ! Thanks again. Ross > -----Original

RE: Unix Q: Substring-ing an output.

2002-10-27 Thread Ross Collado
7;{ print $3 }' -- parse the program name on the '_' and return > the third field, the database name. > > Hope that helps, > > -Mark > > On Sun, 2002-10-27 at 20:43, Ross Collado wrote: > > > > Hi All, > > > > I want to feed m

Unix Q: Substring-ing an output.

2002-10-27 Thread Ross Collado
s -ef output is not consistent. As you can see I've just restarted RMAN and now it only has 8 fields as compared to 9 for the others. Any suggestions? Or another way of doing it? Using KSH on Solaris 8. Thanks. Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author:

RE: Actual table size (Has been posted/discussed before)

2002-10-16 Thread Ross Collado
> end ; > / > > prompt > prompt > prompt > set feed on > undef 1 2 > > -Original Message- > Sent: Wednesday, October 16, 2002 10:39 PM > To: Multiple recipients of list ORACLE-L > > > Hi All, > > It has previously been discussed i

Actual table size (Has been posted/discussed before)

2002-10-16 Thread Ross Collado
uch of the 50M has data in it? On 817. Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- 858-538-5051 http://www.fatcity.com San Diego, California-- Mailing list and web hostin

CLOSED: UNIX OT: Strange Unix behavior

2002-08-27 Thread Ross Collado
list ORACLE-L > > Subject: RE: UNIX OT: Strange Unix behavior > > > > > > This directory might be under the control of the automount > > daemon. If you > > want locally managed home directories you need to remove > > /home from the > > automountd. >

RE: UNIX OT: Strange Unix behavior

2002-08-26 Thread Ross Collado
home from the > automountd. > > Erik > > > -Original Message- > > From: Ross Collado [SMTP:[EMAIL PROTECTED]] > > Sent: Monday, August 26, 2002 3:58 AM > > To: Multiple recipients of list ORACLE-L > > Subject:UNIX OT: Strange Unix behavio

RE: UNIX OT: Strange Unix behavior

2002-08-26 Thread Ross Collado
directory might be under the control of the automount > daemon. If you > want locally managed home directories you need to remove > /home from the > automountd. > > Erik > > > -Original Message- > > From: Ross Collado [SMTP:[EMAIL PROTECTED]] &g

UNIX OT: Strange Unix behavior

2002-08-25 Thread Ross Collado
rning chmod: WARNING: can't change home I find it very strange that root can't do this. Has anyone experienced this before? If so, how did you get around it? Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] F

RE: UNIX Q: How do I delete files beginning with # - THEY'RE GONE

2002-07-31 Thread Ross Collado
like: > #Column > #This > # > > How do I get rid of these 3? > > Rgds, > Ross > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Ross Collado > INET: [EMAIL

UNIX Q: How do I delete files beginning with #

2002-07-31 Thread Ross Collado
Hi, I have files like: #Column #This # How do I get rid of these 3? Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California

RE: ... And another RMAN Q.

2002-07-30 Thread Ross Collado
tag b_db_full > filesperset 3 > format '/oracle1/oracle/admin/RMAN/backup/df/dfset_%s_%t.%d' > database; > execute script rel_all_disks; > execute script archive_log_current; > execute script backup_al_all; > } > --- > --- > > Rgds, > Ro

RE: ... And another RMAN Q.

2002-07-30 Thread Ross Collado
ot; > what do you mean? are they run on BoxA or BoxB? If they are > run on BoxA, > then the backup files will be created on BoxA. > > Tom Mercadante > Oracle Certified Professional > > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Coll

RE: ... And another RMAN Q.

2002-07-30 Thread Ross Collado
gt; full > > skip inaccessible > > tag b_db_full > > filesperset 3 > > format '/oracle1/oracle/admin/RMAN/backup/df/dfset_%s_%t.%d' > > database; > > execute script rel_all_disks; > > execute script archive_log_current; > > execute script

... And another RMAN Q.

2002-07-29 Thread Ross Collado
up/df/dfset_%s_%t.%d' database; execute script rel_all_disks; execute script archive_log_current; execute script backup_al_all; } --- --- Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Networ

Case Closed: Unix Q: ksh scripting

2002-07-24 Thread Ross Collado
sqlplus / < -Original Message- > From: Ross Collado > Sent: Wednesday, 24 July 2002 14:53 > To: Multiple recipients of list ORACLE-L > Subject: Unix Q: ksh scripting > > > Hi all, > Can any of our Unix gurus here transform my script below to > work properly? &

Unix Q: ksh scripting

2002-07-23 Thread Ross Collado
hor: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list, send a

RE: Exp & Imp & User ?

2002-06-18 Thread Ross Collado
the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ros

Maintaining Simulated Standby DB on 7.1.6.0

2002-06-05 Thread Ross Collado
logs where is it applying the transactions to? 3. Since there is no '... offline drop' in this version, is there any other way to get around this apart from completely recreating the standby? Any input much appreciated. Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.or

RE: Problem with standby database & listener

2002-02-21 Thread Ross Collado
? Any direction would be appreciated. Thanks Stephen Andert Scottsdale, Arizona -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, Ca

RE: Creating a missing datafile

2002-02-05 Thread Ross Collado
; noresetlogs mode at this time .. however i have seen > that it does not .. so here is the workaround .. > > SQL> alter database backup controlfile to trace; > SQL> create controlf file ..< from ur trace> > SQL> recover database; -- takes one sec to complete > SQL> Al

Creating a missing datafile

2002-02-05 Thread Ross Collado
TIA, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists -

Deferred appliction of arch logs in Standby DB

2001-12-03 Thread Ross Collado
-- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists To REMOVE yourself from this mailing list

RE: simple sql problem

2001-12-03 Thread Ross Collado
in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author

RE: OT:Unix Q - Solved

2001-08-27 Thread Ross Collado
Thanks. That's it. > -Original Message- > From: Jared Still [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 28 August 2001 12:15 > To: [EMAIL PROTECTED]; Ross Collado > Subject: Re: OT:Unix Q > > > > do a 'man ssh-keygen' > > Jared > &

OT:Unix Q

2001-08-27 Thread Ross Collado
To all Unix gurus, What's the command to generate an "identity.pub" file for use in ssh ? Rgds, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538

OT:(Unix Q): Re-executing an old command

2001-08-02 Thread Ross Collado
anks, Ross -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mai

RE: How to create 2 unique indexes (Field1, Field2) and (Field1,

2001-05-30 Thread Ross Collado
containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross Collado INET: [EMAIL PROTECTED] Fat City Ne

RE: catrep.sql

2001-05-29 Thread Ross Collado
procedures as stated in the oracle installation guide. my problem is when it comes to the step (pp 4-2 of the installation guide) that says run the catrep.sql. where can i find this sql script? thanks! oracle newbie -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ross