Re: list of common ORA errors users get

2001-02-28 Thread Paul Drake

Several of these errors you could read on Metalink - without logging in
;)

unable to resolve service_name
unable to connect to destination

so here is a start.
Mostly, I see 904 and 942 in untested code.

ORA-0 normal, successful completion - not an error - but appears
that way when creating JAVA SYSTEM
ORA-1 unique constraint (string.string) violated - RI is good.
ORA-00018 maximum number of sessions exceeded - send more $$$ to Redwood
Shores
ORA-00028 your session has been killed - this is usually accompanied by
the sound of a BOFH's evil laugh.
ORA-00054 resource busy and acquire with NOWAIT specified - I hear you
knocking but you can't come in.
ORA-00060 deadlock detected while waiting for resource - most likely
seen in the Alert log.
ORA-00257 archiver error. Connect internal only, until freed. - larger
hard drives tend to delay this problem
ORA-00600 internal error code, arguments: [string], [string], [string],
[string], [string], [string], [string], [string]
ORA-00904 Invalid column name
ORA-00942 Table or View does not exist
ORA-01001 invalid cursor - usually due to a lost dial-up connection
ORA-01014 ORACLE shutdown in progress - someone decided to press the red
button that says "DO NOT TOUCH"
ORA-01017 invalid username/password; logon denied 
ORA-01019 unable to allocate memory in the user side - typical for Mac
SQL*Net Clients
ORA-01031 insufficient privileges - tried to connect as internal with
the wrong password
ORA-01033 ORACLE initialization or shutdown in progress
ORA-01034 ORACLE not available
ORA-01035 ORACLE only available to users with RESTRICTED SESSION
privilege - DB is likely being exported
ORA-01041 internal error. hostdef extension doesn't exist - can get this
over bad WAN connection
ORA-01045: user username lacks CREATE SESSION privilege; logon denied
ORA-01078 failure in processing system parameters - rookie DBA tried a
new parameter without success - revert to old init.ora
ORA-01400 cannot insert NULL into (string) - NOT NULL constraint up -
column value is NULL
ORA-01401 inserted value too large for column - front end accepts
unbounded data. The solution is not to use type LONG.
ORA-01552 cannot use system rollback segment for non-system tablespace
'string' - need public rollback segs.
ORA-01650 unable to extend rollback segment string by string in
tablespace string - datafile size is bounded, either by size or extents
ORA-01652 unable to extend temp segment by string in tablespace string -
datafile size is bounded, either by size or extents
ORA-12154: TNS:could not resolve service name
ORA-12560  TNS Protocol Adapter error
ORA-03113  end of file on communication channel - many manifestations

Paul

John Dailey wrote:
 
 Hi again List... hope everyone is having a pleasant
 afternoon/evening/morning:
 
 I'm looking for a list of common questions about Oracle errors that
 end-users might encounter.  For example, basic stuff like "no listener",
 "Archiver error", "Oracle not available", "max # of extents reached", etc,
 etc.  What I'm looking for is a decent list I can use to help me set up a
 help desk support site for my client.  We are pretty much building the DBA
 group  from the ground up here.If I had a nice list, I could put that in
 their current help desk support software so the users could route their
 specific requests and error messages to the DBA group (So we can ignore them
 properly) :-) .  Does anyone know of or can point me to such a list?  I know
 I could put on my thinking cap and make a list, but I'm really pressed for
 time (who isn't) and don't want to re-invent the wheel if I don't have to.
 Besides, I'm enjoying the hilarious commentary on Metalink's woes too much.
 
 I'd eventually like to have an auto-response email that says:
 
 "don't bother me, I'm busy...
 open up FDISK in a DOS Window and delete all your partitions"
 
 sent out to answer each request, but I'll save that functionality for
 later
 
 :-)
 
 TIA
 
 John Dailey, MCSE/MCP+I
 Consultant
 Concept Solutions, LLC
 *Your Business Intelligence Partner*
 www.concept-solutions.com
 
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: John Dailey
   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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Paul Drake
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing 

RE: forgot Passwords

2001-02-28 Thread Rahul

just create the password file again using orapwd utilitylogin to
internal
and reset all the passwords

if u are on NT the password might be in registery(DBA_AUTHORIZATION) ? 

 --
 From: Sreelatha[SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 2:12 PM
 To:   [EMAIL PROTECTED]
 Subject:  forgot Passwords
 
 I am using 8i datbase. If i forget internal password,sys password and
 system password. Is there any way to find out the passwords?
  
 Thanks 
 Sreelatha
 
  
 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rahul
  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 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 information (like subscribing).



RE: cache buffer chains contention

2001-02-28 Thread Trassens, Christian

Have a look of the hot blocks. The most probable reason for cache buffer
chains are SQLs with bad performance. Don't discard contention on higher
level latches as redo allocation.

So to look for those hot blocks, use one of the S.Adams scripts:
hot_hash_blocks.sql ( www.ixora.com.au) and these one too:

select  hladdr "LATCH ADDRESS",
dbafil "FILE#",
dbablk "BLOCK#",
state,
gets,
lc.sleeps
from x$bh bh,
v$latch_children lc
where lc.addr=bh.hladdr and
state!=0
and sleeps1
order by sleeps;

Then search for the objects in the dba_extents and then run after the SQLs
with top_ten stmts similar to the app of materialdreams or the ones from
S.Adams site.

Again from S.Adams site you can read some answers of these problems.

Regards.



 -Mensaje original-
 De:   elain he [SMTP:[EMAIL PROTECTED]]
 Enviado el:   mircoles 28 de febrero de 2001 0:31
 Para: Multiple recipients of list ORACLE-L
 Asunto:   cache buffer chains contention
 
 Does anyone have any advice on reducing cache buffer chains latch 
 contention?
 
 From v$latch_children, I found the children with the highest sleeps and 
 narrowed that to two tables. A method of reducing the contention is
 probably 
 to reduce the number of records per block but that would also mean that
 now 
 there will be more blocks to read. Is there any other ways of reducing the
 
 contention? I've tried increasing/reducing _db_block_hash_buckets but that
 
 did not help.
 
 db_block_buffers=40960
 _db_block_hash_buckets=db_block_buffers/4
 db_block_size=8K
 tables' pctfree=30, pctused=40
 
 thanks.
 
 elain
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: elain he
   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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Trassens, Christian
  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 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 information (like subscribing).



RE: ORA-00059: maximum number of DB_FILES exceeded

2001-02-28 Thread Trassens, Christian

Well, that is correct for an Oracle 7 release. But through 8.X you only need
to increase the parameter: db_files because when the controlfile reach the
limit of MAXDATAFILES, it will increase automatically. Hence, it isn't
necessary to recreate controlfiles.

Regards.

 -Mensaje original-
 De:   John Dailey [SMTP:[EMAIL PROTECTED]]
 Enviado el:   mircoles 28 de febrero de 2001 6:16
 Para: Multiple recipients of list ORACLE-L
 Asunto:   RE: ORA-00059: maximum number of DB_FILES exceeded 
 
 Hi Charlie...  the parameter DB_FILES is set in the init file... you have
 to
 bounce the instance after you increase it.
 
 The parameter you are thinking of is MAXDATAFILES which is in the control
 file. And you are correct; you would need to ALTER DATABASE BACKUP
 CONTROLFILE TO TRACE, edit that MAXDATAFILES parameter, and recreate the
 controlfile if it were exceeded.  Sounds like you just need to change
 DB_FILES though considering your error.   DB_FILES and MAXDATAFILES can be
 different; might generate the trace file anyway just to check that the
 MAXDATAFILES setting is ok.  I don't know of any other way to check it;
 somebody else may have a better method.
 
 BTW... is San Diego still as sunny as ever?   I'm still hooking and
 jabbing
 here in DC... send me some more pictures of the Pacific.
 
 :-)
 
 John Dailey, MCSE/MCP+I
 Consultant
 Concept Solutions, LLC
 *Your Business Intelligence Partner*
 www.concept-solutions.com
 
 
 
 
 
 -Original Message-
 Mengler
 Sent: Tuesday, February 27, 2001 10:50 PM
 To: Multiple recipients of list ORACLE-L
 
 
 I just got the following -
 
   SYS: DBW.WORLDALTER TABLESPACE DAILY_SALES_TBL
 2  ADD DATAFILE '/db19/oracle/DBW/daily_sales_tbl.dbf' SIZE
 1802272768
 3  /
   ALTER TABLESPACE DAILY_SALES_TBL
   *
   ERROR at line 1:
   ORA-00059: maximum number of DB_FILES exceeded
 
 
 I fixed a similar problem about 4-5 years ago  I have a vague
 recollection of what to do.
 
 I need to do -
 ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
 
 I then find the trace file  edit it.
 Besides increasing the line where the number of datafiles is specified;
 what else do I need to do?
 
 The exactly how do I use this file to start the instance?
 If anyone can point me at some softcopy or hardcopy
 documentation on this whole process, I'd appreciate it.
 
 TIA!
 
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Charlie Mengler
   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 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 information (like subscribing).
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: John Dailey
   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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Trassens, Christian
  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 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 information (like subscribing).



dbms_stats

2001-02-28 Thread Lord David

Hi list

Does anyone have any tales to tell of using MONITORING and the 'GATHER
STALE' option of the dbms_stats.gather* procedures?  Someone here has
suggested that we use it for a new product we're developing, but I am a
little concerned over whether the monitoring has any significant performance
impact.

TIA
David Lord
Senior DBA, Hays Commercial Services, IT Solutions
[EMAIL PROTECTED]

 
**
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they   
are addressed. If you have received this email in error please notify 
the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Lord David
  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 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 information (like subscribing).



Optimizer / Analyze Statistics w.r.t. Partitions

2001-02-28 Thread VIVEK_SHARMA


Oracle 817 on DEC 5.1 (TruUnix 64)

For Partitioned Tables , is it Advisable to Analyze Compute the Respective
Tables ?

Would there be Any Loss if the respective Tables are NOT Analyzed ?

Any Best Practices , Docs , Links etc on the way of the Optmizer in such
Cases ?


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: VIVEK_SHARMA
  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 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 information (like subscribing).



Re: Table Storage Estimates

2001-02-28 Thread paquette stephane

Your estimate comes to around 1 row per block. 
What is the average row lenght once data is in the db
? Do you have row chaining ?

What is your block size ? Can you increase it ?

If a lot of queries do not need the long raw column
you can put it in another table with a 1 to 1
relationship with the parent table.

If your planning to have 200 rows of 1 block each, I
do not understand why you are adding datafiles as the
data should not occupied more than 3200K if you
blocksize is 16K. Increase the size of the initial
datafile instead of adding new ones.

--- Sanjay Kumar [EMAIL PROTECTED] a crit: 
Hi,
 
 I have a table which has a structure similar to the
 following.
 
 MID NOT NULL
 VARCHAR2(24)
 NAME  
 VARCHAR2(512)
 PRIORITY  
 NUMBER(38)
 PERSISTENT
 CHAR(1)
 EXP_DATE
 DATE
 BODY   
 LONG RAW
 
 
 I estimated the table storage for this table using
 the formula given in the Oracle documentation. It
 comes to around 1 rows per block.
 
 It is estimated that the number of rows for this
 table will not exceed 200.
 
 My questions are 
 
 1. Doesnt this lead to fragmentation.?
 2. I have added three datafiles to this tablespace
 as of now and it seems like this might require more
 space. How do I effectively redesign this
 table to avoid contention and chaining?
 
 3. Moreover, initially when there were 105 rows
 inserted, I issued a count(*) and it took about 5
 minutes? How do I reduce the time taken to execute
 the query?
 
 
 I would highly appreciate if someone comes forward
 to help me on this.
 
 I am using Oracle 8.1.6 on Solaris
 
 Sanjay
 
 
 


=
Stephane Paquette
DBA Oracle
[EMAIL PROTECTED]

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: =?iso-8859-1?q?paquette=20stephane?=
  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 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 information (like subscribing).



Re: Optimizer / Analyze Statistics w.r.t. Partitions

2001-02-28 Thread paquette stephane

I do not understand what respective tables mean.

If your question is can I analyzed a single partition
the answer is yes. 


--- VIVEK_SHARMA [EMAIL PROTECTED] a crit:  
 Oracle 817 on DEC 5.1 (TruUnix 64)
 
 For Partitioned Tables , is it Advisable to Analyze
 Compute the Respective
 Tables ?
 
 Would there be Any Loss if the respective Tables are
 NOT Analyzed ?
 
 Any Best Practices , Docs , Links etc on the way of
 the Optmizer in such
 Cases ?
 
 
 -- 
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com
 -- 
 Author: VIVEK_SHARMA
   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 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 information
 (like subscribing).


=
Stephane Paquette
DBA Oracle
[EMAIL PROTECTED]

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: =?iso-8859-1?q?paquette=20stephane?=
  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 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 information (like subscribing).



Re: anyone interested in XML

2001-02-28 Thread Marin Dimitrov




Just follow the installation instructions under the /lib 
directory of the PL/SQL XML parser distribution and u'll have all the necessary 
objects installed.

The pl/sql parser itself relies on the java one, so it's much 
slower in my opinion

hth,

 Marin
"When someone is seeking, it happens quite easily that he only 
sees the thing that he is seeking; that he is unable to find anything, 
unable to absorb anything, because he is only thinking of the thing he is 
seeking,because he is obsessed with his goal. Seeking means: to have a goal; 
but finding means: to be free, to be receptive, to have no goal. ..." 

 
Herman Hesse, "Siddhartha"


  - Original Message - 
  From: 
  MacGregor, 
  Ian A. 
  To: Multiple recipients of list ORACLE-L 
  Sent: Tuesday, February 27, 2001 
  18:02
  Subject: RE: anyone interested in 
  XML
  
  Where does one find the dbms_xml 
  package?
  
  Ian 
  MacGregor
  Stanford Linear Accelerator 
Center
  [EMAIL PROTECTED]


run SQL command and not wait for result

2001-02-28 Thread John Dunn

I am looking for a way to run a SQL command or package/procedure/function
without waiting for it to finishbit like running a unix command in the
background.

Other than using dbms_job or running kivking off and external procedure to
run sqlplus, is there anyway to do this?

John


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: John Dunn
  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 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 information (like subscribing).



Resend : Datawarehouse datamodeling : 3 questions

2001-02-28 Thread paquette stephane

I had no feedback on this one. 
There must be some datawarehousers on this list.

Hi,
 
I'm currently testing the Oracle 8i new
datawarehousing functionnalities. Are you using
materialised view for aggregate dimension ?
 
The second question is what do you do with yes/no
flags. They can be put in the fact table or they can
be put in a profile dimension. Is there another way ?

The third question is do you restrained the numeric
fields in the DW. I've used number in the past. The
analyst here has put number(15,2). For me this is
nonsense. The DW do not care if the measure is
232000 or 0.56. If they are quality filters they
should be in the ETL processes not in the database
structure. Do you agree that all numeric fiels should
be number and not number (x,y) ?

TIA




=
Stephane Paquette
DBA Oracle
[EMAIL PROTECTED]

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: =?iso-8859-1?q?paquette=20stephane?=
  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 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 information (like subscribing).



Re: smon Q?

2001-02-28 Thread K Gopalakrishnan

Hi !!

--- [EMAIL PROTECTED] wrote:
 Hi All,
 
 
 Last night we were trying to bring down one of our
 databases with Shutdown
 immediate.
 We waited about 20 minutes before we finally did an
 abort.
 
 We found this entry in the alert log "Waiting for
 smon to disable tx
 recovery." before the shutdown abort entry. It looks
 like this was the
 cause for our wait. Does anybody know what this
 means? (The database was
 restarted succesfully in case you're wondering)
 

Hi !

I guess you have very smaller extents or doing more
dynamic space allocation, I have seen this in many
databases. Normally SMON does coalescs (if you call
it) the extents and cleans up the temporary extents
during the shutdown-normal/immediate life cycle.

It will scan the UET$ and FET$ and i think there is an
excellent article in Jonathan Lewis site
(http://www.jlcomp.demon.co.uk) which describes the
entire clean up process. Though it it littel outdated
most of the things still applicabel for the current
versions,.

You can safely ignore the message if you not bothered
too much 


=
Have a nice day !!

Best Regards,
K Gopalakrishnan,
Bangalore, INDIA.

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: K Gopalakrishnan
  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 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 information (like subscribing).



FW: Oracle DBA evolution path - please share your opinion

2001-02-28 Thread O'Neill, Sean

 
-Original Message-
Sent: Wednesday, February 28, 2001 09:20
To: 'andrey'; 'List, [EMAIL PROTECTED]'


Where do i go to from here ?
Where do you want to be career wise in 5 years time?
 
Do you like DBAing?.  If so, unless you are quite exceptional and have
crammed that two years with loads of experience and lots of reading, I'd
imagine that if DBAing appeals to you then there is lots more to learn.  A
possible pointer might be to go for DBA OCP.  If you find this a total
breeze then thats feedback of some kind.  If not, it certainly won't hurt
learning more about Oracle.  Oracle corp have quite a range of large
products out there with what I would consider are long learning curves and
even longer experience curves.
 
Having said above I'm not much longer at Oracle than yourself.
 
As for the more GUI interfaces they are a fact of life, but at the end of
the day it's all SQL.
 
They are some of my thoughts shared!
 

Sean :)

Rookie Data Base Administrator
[0%] OCP Oracle8i DBA
[0%] OCP Oracle9i DBA
 
Organon (Ireland) Ltd.
E-mail: [EMAIL PROTECTED]   [subscribed: Digest Mode]

Visit: http://groups.yahoo.com/group/Oracle-OCP-DBA
http://groups.yahoo.com/group/Oracle-OCP-DBA 

"They tell me nothing, but expect me to know everything!"



 

-Original Message-
Sent: Monday, February 26, 2001 16:41


Dear List !
Some background : i've been around Oracle for several years , i'm DBAing for
2+ years now , i have written some java code (jdbc , some XML etc) , perl ,
PL/SQL , Tcl/Tk , a lot of UNIX scripting .
.Where do i go to from here ?
 
Many people say that the profession of Oracle DBA is going to be less
demanded in future , because of : 
1) either other DB ( like less-expensive MS SQL Server or free MySQL) will
occupy the market , especially in small enterprises ; 
2) or Oracle will "improve" the DB management and make it "point and click"
, so you do not need a dedicated Oracle DBA at all or you need less Oracle
DBAs .
 
So , the bottom line is : what should i learn now ? how can i extend my
expertise ? In which fields ?
 
Please share your thoughts !
Thanks a lot in advance !
 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: O'Neill, Sean
  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 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 information (like subscribing).



Exploring Oracle

2001-02-28 Thread O'Neill, Sean

Looking for feedback/opinions on quality, content, and value for money of
'Exploring Oracle' magazine by elementK journals. 

Sean :)

Rookie Data Base Administrator
[0%] OCP Oracle8i DBA
[0%] OCP Oracle9i DBA
  
Organon (Ireland) Ltd.   
http://www.organon.ie
E-mail: [EMAIL PROTECTED]   [subscribed: Digest Mode]

Visit: http://groups.yahoo.com/group/Oracle-OCP-DBA

"They tell me nothing, but expect me to know everything!"

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: O'Neill, Sean
  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 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 information (like subscribing).



RE: dbms_stats

2001-02-28 Thread Trassens, Christian

Well, that is what I said. Try not to use dbms_stats with the parameter
GATHER STALE o GATHER EMPTY. With GATHER I haven't had any problem yet. 

And the monitoring feature is runing well. Therefore, if you are not sure of
dbms_stats, use monitoring but with analyze or dbms_utility or dbms_ddl.

Regards.

 -Mensaje original-
 De:   paquette stephane [SMTP:[EMAIL PROTECTED]]
 Enviado el:   mircoles 28 de febrero de 2001 11:01
 Para: Multiple recipients of list ORACLE-L
 Asunto:   Re: dbms_stats
 
 I've test it with Oracle 815 and there were several
 bugs with it. I do not remember if the bugs were fix
 in 816 or in 817. You'd better check on Metalink.
 
 
 --- Lord David [EMAIL PROTECTED] a crit :  Hi
 list
  
  Does anyone have any tales to tell of using
  MONITORING and the 'GATHER
  STALE' option of the dbms_stats.gather* procedures? 
  Someone here has
  suggested that we use it for a new product we're
  developing, but I am a
  little concerned over whether the monitoring has any
  significant performance
  impact.
  
  TIA
  David Lord
  Senior DBA, Hays Commercial Services, IT Solutions
  [EMAIL PROTECTED]
  
   
 
 **
  This email and any files transmitted with it are
  confidential and 
  intended solely for the use of the individual or
  entity to whom they   
  are addressed. If you have received this email in
  error please notify 
  the system manager.
  
  This footnote also confirms that this email message
  has been swept by 
  MIMEsweeper for the presence of computer viruses.
  
  www.mimesweeper.com
 
 **
  -- 
  Please see the official ORACLE-L FAQ:
  http://www.orafaq.com
  -- 
  Author: Lord David
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 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 information
  (like subscribing).
 
 
 =
 Stephane Paquette
 DBA Oracle
 [EMAIL PROTECTED]
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail. 
 http://personal.mail.yahoo.com/
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: =?iso-8859-1?q?paquette=20stephane?=
   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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Trassens, Christian
  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 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 information (like subscribing).



RE: Restore Scenario

2001-02-28 Thread Martin Kendall

Hi Jared,

LOL, but I take it that we cannot offer our friend here any udder
alternative..

Sorry :-)

Martin Kendall (Oracle DBA during the week - Flight Instructor during the
w/end !?!)

-Original Message-
Sent: 27 February 2001 18:22
To: Multiple recipients of list ORACLE-L


On Tue, 27 Feb 2001 [EMAIL PROTECTED] wrote:


 If archivelog database perform online dairy backup (all tablespaces
datafiles, controlfile to trace  binary), dairy archived redo logs to tape.
Only perform full backup (offline, archivelog on) once a year.

 If it happened that all datafiles, controlfiles  redologs gone, which
copies of backup are needed for restore ?


Online dairy backups are very hard to perform, especially if the bovines
in question are enqueued for their daily chow.

Getting a large queue of cows to back up is a feat akin to magic.

Jared


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Martin Kendall
  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 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 information (like subscribing).



MetaLink is back

2001-02-28 Thread Boivin, Patrice J

FYI

I logged a TAR this morning, it seems to be running well again.

(a bit slow as usual, but it runs)

: )

Patrice Boivin
Systems Analyst (Oracle Certified DBA)

Systems Admin  Operations | Admin. et Exploit. des systmes
Technology Services| Services technologiques
Informatics Branch | Direction de l'informatique 
Maritimes Region, DFO  | Rgion des Maritimes, MPO

E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Boivin, Patrice J
  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 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 information (like subscribing).



RE: MetaLink is back

2001-02-28 Thread Kevin Kostyszyn

yes, I have noticed this as well.  It booted me off when I went to download
a patch with some pretty ugly errors.  Then I logged back on and it was like
I was in this magical place with T1 lines and ultra fast servers!!  I
thought I had made a mistake, but it was Metaslouch

-Original Message-
Patrice J
Sent: Wednesday, February 28, 2001 8:55 AM
To: Multiple recipients of list ORACLE-L


FYI

I logged a TAR this morning, it seems to be running well again.

(a bit slow as usual, but it runs)

: )

Patrice Boivin
Systems Analyst (Oracle Certified DBA)

Systems Admin  Operations | Admin. et Exploit. des systmes
Technology Services| Services technologiques
Informatics Branch | Direction de l'informatique
Maritimes Region, DFO  | Rgion des Maritimes, MPO

E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Boivin, Patrice J
  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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kevin Kostyszyn
  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 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 information (like subscribing).



Re: MetaSlop -- More Screeching and Droning.

2001-02-28 Thread Ruth Gramolini

I laughed out loud, while waiting for my hour glass to go away!  RBG
- Original Message -
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 4:26 PM


 Our own esteemed Paul Baumgartel wants to know how our
 equally esteemed Kevin would have handled the MetaCrack
 announcement.



 There are several possibilities, depending on what is ACTUALLY
 going on in the Armani Sweatshop on Ellison Lane.

 Scenario One:

 ATTENTION:  Oracle Customers -- Special DBA Announcement.

 PASS THIS TO YOUR DBA!

 No doubt you have recently seen performance on MetaLink do
 down like a career hooker on a Presidential candidate. There
 is a reason for this, and here it is:

 We had a cowboy DBA who stayed up too late one night reading
 "Oracle Latches, Waits, and Blinking Lights" by Tom Swift.
 (Doubtless you are aware of this classic review of oracle internals.)
 Unfortunately, aforementioned cowboy badly misinterpreted the settings of
 the _db_block_write_flush_or_scan_depth_increment_rigidity parameter
 and really screwed up our systems. After out "Global IT Group" got on
 the problem ( ok, the "other" cowboy rookie DBA we have ) he tried
 everything
 he could, and actually worsened things by setting the
 "_please_make_it_better"
 parameter to TRUE, as opposed to IMMEDIATE. As you may know, this undoc
 parameter only works in TRUE mode for Oracle8, and MetaLink is still
running
 on Oracle 7.2.3.4.2.

 Finally, we called in someone competent from our front line support. She
had
 actually quit, and was packing her desk in disgust (at not being allowed
to
 properly address customer requests ever since the "iTar" process performed
 auto-deletes on all online requests) but was stopped by an alert middle
 manager
 for "one last favor". After she set the "_divert_funds_from_marketing"
 parameter
 to TRUE, everything came back for a handful of minutes.

 During this brief operational period, we had a "staggering" number of
 requests
 hit our front end webservers ( Apache on Linux-based Palm Pilots ) and
 MetaLink
 could not respond to the seven requests simultaneously.

 We are currently throwing hardware at the problem, and hope to be able to
 provide
 roughly the same level of service you'd expect at a local Seven-Eleven any
 day now.

 So Long, and Thanks for All the Power Units

    END METALINK MESSAGE
 ###


 There are other scenarios, but my hourglass just returned from my metalink
 search, so i've got to go now.



 -Original Message-
 Sent: Tuesday, February 27, 2001 3:21 PM
 To: Multiple recipients of list ORACLE-L


 And if you were running a comparable system, what would *you* say?


 Paul Baumgartel
 InstiPro, Inc.
 [EMAIL PROTECTED]
 212 813-0829 x103 (office)
 917 549-4717 (mobile)


 -Original Message-
 Sent: Tuesday, February 27, 2001 2:51 PM
 To: Multiple recipients of list ORACLE-L


 Man, these guys just invite the wise-ass comment, don't they?  Such as:

 Well maybe if the product worked better/was less confusing/had better
 documentation we wouldn't all be in Metalink!
 Oh no!  If 4 new servers brought the system to its knees just think how
bad
 it'll be when the rest of the hardware arrives!
 4 new top-of-the-line servers, just think what that'll do to their power
 unit charges!

 Plus I can't rid myself of the image of us all 'staggering' to Metalink
for
 help.

 Jim

  [EMAIL PROTECTED] 02/27/01 01:21PM 
 For those interested, right from the horses mouth, or other orifice as you
 desire:

 News  Notes
   MetaLink Performance - An Update



   We apologize for the slow response times recently on MetaLink. All over
 the
 world our customers are coming to and using this valuable
   knowledge base in staggering numbers. Our Global IT team are working
these
 performance issues as their number one priority.

   What is Being Done
   This week four new front-end web servers were brought on line to help
 manage
 the load. Additional hardware has been purchased and will
   arrive soon which will make a significant improvement in performance.

   We appreciate your patience during this time of significant growth in
 MetaLink
 usage.

   Thanks,
   The MetaLink Team

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   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 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 information (like subscribing).

 --
 Please see the official 

For you Parallel Sever fans out there

2001-02-28 Thread dgoulet

** Oracle Licensing Compaq Software For 9i Product

Hoping to make its upcoming Oracle 9i Real Application Clusters 
software as attractive to as wide an audience as possible, Oracle 
will build pieces of Compaq Computer's TruCluster technology into 
the Oracle product under a new licensing deal announced Tuesday. 
The move will add management capabilities to Real Application 
Clusters and make the software more portable, according to 
Oracle.

While clustering might sound like technology that only a geek 
could love, it's critical to management efforts to improve the 
availability and scalability of IT systems. Real Application 
Clusters, perhaps the most significant component of the Oracle 9i 
database due out around mid-year, will allow the database to run
over a cluster of servers without changing the applications that 
run on the database--especially online-transaction-processing 
software. Oracle's current clustering technology, Oracle Parallel 
Server, has been a slow seller because it requires making complex 
changes to application code.

The TruCluster Server code is expected to first appear in the 
second release of Real Application Clusters, due out by year's 
end. Oracle and Compaq already have a tight development 
relationship: Compaq's Tru64 Unix OS is the development platform 
for Real Application Clusters. "We recognize that they have 25 
years' experience with clustering," says Juan Jones, VP of 
Oracle's systems platform division. He was referring to Digital 
Equipment Corp., which developed advanced clustering technology 
long before its 1998 acquisition by Compaq. - Rick Whiting, InformationWeek
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



RE: How do i Cofigure oracle 8 i?

2001-02-28 Thread Mark Leith

First off, go and get the Installation Guide for your specific platform -
www.technet.oracle.com
Then go ahead and find the Oracle 8i Reference Guide -
www.technet.oracle.com
Then the Net8 Admin Guide - www.technet.oracle.com
Then the Oracle8i Admin Guide.. from www.tecblah.debaldeblah.com
You get the picture. We cannot answer every question that you may come
accross while doing this, so your best bet is to get the guides, read them,
attempt your task, try to find the answer in the manual, and then if you
fail, come to list..



-Original Message-
Ranjan
Sent: Wednesday, February 28, 2001 09:36
To: Multiple recipients of list ORACLE-L


Hi guys,

I have to use Oracle 8i for one of my project.
I have work on oracle7 , but Oracle 8i is bit confusing for me.

First the installation there are two installer OracleClient and OracleNet .
Each has got foure different type of installation like programmer,
administrator, etc.

I have installed custom type on my interanet server of OracleNet and custom
type on my machine of OracleClient .

Now I need to know what kind of cofiguration i need to do on both the
machine.
how do i create and where do i create my database.
And how do i comuunicate with my database?


I don't know how and where to start?



Thanx in advance
rajiv


--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Rajiv Ranjan
  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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Mark Leith
  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 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 information (like subscribing).



Oracle's Updates Subscription Service

2001-02-28 Thread Weaver, Walt

Say, is it just me or has the cost of the Updates Subscription Service gone
up considerably in the past six months or so? 

We're currently pricing out what it'll cost us to purchase 8.1.7 Standard
Edition and the numbers we're getting are a heck of a lot higher than they
were in November.

Has the cost of CD-ROM's gone up that much? Is the economy now in an
inflationary period? Where's Allen Greenspan when you need him?

Whatever happened to those hazy, golden, halcyon days when upgrades were
included in product support?

Sometimes, Oracle just sucks. I'm seriously considering getting on track for
a MySQL certification.   :)

--Walt Weaver
  Bozeman, Montana, USA
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Weaver, Walt
  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 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 information (like subscribing).



Re:ODS

2001-02-28 Thread dgoulet

Murali,

Since we use what I really believe is an Operational Data Store or ODS, I'll
provide the insight from here, others may have their own opinion.

We are a manufacturer of power components, little modules that fit into
larger power supplies, like the one in your PC.  As a result we have a number of
manufacturing lines each building different or the same product at the same
time.  Each of these lines has a number of automatic testers that test the
product.  These testers need data on the specifications that they are to test
the modules to at each point in the process and they also need a location where
they send the results of those tests.  On top of all that we also collect
statistical process control data and failure analysis data when a technicians
repair a defective module, at least before it gets filled with epoxy.  All of
this data is flowing through the factory all day, 24x7.  On top of that
engineers are looking at the results data looking for trends in both tester
performance from lost of angles, and module behavior.  Yes this ODS does feed
into our Data Warehouse on a daily basis, but of more importance is the
real-time monitoring that occurs to keep yields in line with company
expectations.

What size is this monster, 100GB and growing at about 20% per year (who said
anything about a recession).  We use EMC disk with mirroring, a HP9000 K570 as
the processor with redundant processors and power supplies, and the box will be
getting EMC's PowerPath software in a month or so.  The block size is 8K and the
SGA is running around 500MB, believe it or not the biggest performance boost we
gave the instance was to raise the shared pool to 150M.  We use 4 DBWR slaves
and 10M logfiles to keep the recovery granularity fairly fine, although we
haven't had to recover this db in over 4 years.  This system is running 24x7,
gets quarterly cold backup with weekly hot backups, runs in archivelog mode, and
dedicated server.  One note, the predecessor to the current computer set the
company record for uptime on a HP-UX box at 18 months, including the database. 
On an average day I'd estimate that this system takes in half to 1GB of data and
sends out better than 10GB in answer to user requests. We also "retire" to tape
approximately 100MB of data a day and dump 300MB of redundant data each day too.

Dick Goulet

Reply Separator
Author: "Murali Vallath" [EMAIL PROTECTED]
Date:   2/27/2001 12:39 PM


Hello Everyone,

This new term Operational Data Store(ODS) has many definitions, like staging 
area to the data warehouse, data mart, A data warehouse or reporting 
database,  a archive area etc etc. updated almost real time.

From your experience, is this being used in the Oracle world. What size are 
these databases? What configuration is this on? What is the uptime?

I have a requirement that this should be a 24*7 database. Anyone would like 
to share their experiences.

Regards,

Murali Vallath

_
Get your FREE download of MSN Explorer at http://explorer.msn.com

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Murali Vallath
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



8.1.6 upgrade

2001-02-28 Thread Kevin Kostyszyn

Hi all,
Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0?  I have done
exactly what oracle said to do and it appears as though it is missing a .dll
and without the installation is hosed.  Do you have to upgrade to some other
version first?  The instance I upgraded was 8.1.6.1, then when it crashed I
tried a reinstall and it still gives me the same error.  Any help would be
great, I see nothing in the documentaition with the patch that says I have
to be at anything other than 8.1.6.

Sincerely,
Kevin Kostyszyn
DBA
Dulcian, Inc
www.dulcian.com
[EMAIL PROTECTED]

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kevin Kostyszyn
  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 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 information (like subscribing).



RE: Creating activity in a database

2001-02-28 Thread Mohan, Ross
Title: RE: Creating activity in a database





Can you illustrate pt. 3 please; 


|| i'd have to do the same thing you will, namely, pull
 an RTFM on the logminer facility..


some one told me that I must run the database in ARCHIVELOG mode in order to get a good activity in there. Is that true? 

|| Was he wearing an Armani suit? Did he smell like Eau de Ferrari? I think you can easily
 pop out a few redo logs thru logminer w/o running in A/L mode...and, btw, if you are
 doing a performance test...for a PRODUCTION database...you'll be in A/L mode *anyway*.
 Unless, of course, you are a up-and-coming benchmark engineer, and you'll be running
 without any logging.


How does it matter?


|| This is the kind of question Eric Pierce handles with aplomb. My best answer
 would be to refer you to him. 





Re: Connection manager

2001-02-28 Thread Don Jerman

Been there -- I don't know about availability, but this is what we have to
do for people working at home through their ISP.  I'm assuming NAT
produces similar problems.  You can use CMAN for firewall tunnelling with
or without MTS, don't know about connection concentration, though, as we
don't need it yet.

Background: on NT and some other OS's, Oracle listeners use a different
port for reply (like FTP does), so the NAT server doesn't equate the
incoming reply packets with the outgoing connection.  Most NAT servers
recognize and compensate for FTP connections, but not for Oracle.  CMAN
will not redirect its clients to another port, so the server-side redirect
is hidden and the client remains connected.

Fix: On the server subnet, establish a CMAN server with a fixed address
and (if necesary) make the firewall server route all incoming connections
to 1620 (or whatever port you're using) to it.  You'll need to use a
different port than the Oracle listener if you're running CMAN on the
oracle server.  See the docs to configure CMAN appropriately for your
network security needs. By default it's fairly promiscuous so you'll
probably want to make sure it only connects to Oracle servers inside your
subnets, and you may want to restrict the outside addresses it will
serve.  Once I copied the sample config files into the ADMIN directory I
was able to get it running with no complications, but I did revisit the
routing issue for our site.

In the TNSNAMES file of the client (or in the naming service, whatever
you're using) add (SOURCE_ROUTE=ON) and add an address line for each CMAN
server needed to reach the oracle server (if, for instance, you have
multiple DMZ layers you may need multiple CMAN servers to make connections
visible.).  The CMAN servers will be sent the description information and
will establish the connection to the next leg of the route (another CMAN
server or the data server).  Naturally, each CMAN server needs to be able
to resolve the address of the server that comes after it in the route.

Since you didn't list the errors, I assume this will work.  It's possible
the client needs a CMAN server on the back side of their NAT server, too,
but probably not, unless you're doing server-to-server connections.  If
they do, just add it to the address list in the appropriate order.

Here's a sample TNSNAMES entry (this is what gave me the most trouble):
MYSERVER.MY.ORG =
  (DESCRIPTION =
(SOURCE_ROUTE = ON)
(ADDRESS_LIST =
  (ADDRESS = (PROTOCOL = TCP)(HOST = FIREWALL.MY.ORG )(PORT = 1620))
  (ADDRESS = (PROTOCOL = TCP)(HOST = MYSERVER.MY.ORG)(PORT = 1521))
)
(CONNECT_DATA =
  (SERVICE_NAME = MY_SERVICE.MY.ORG)
)
  )

Hope that helps!


[EMAIL PROTECTED] wrote:

 Looking for some help with Connection  Manager.
 Suddenly got hit with a NAT issue from a customer site.

 Any suggestions on the use of Connection manager to alleviate this
 situation would be appreciated.

 Also:

 a)   Does Connection manager require the use of MTS?

 b)   Is Connection manager available with both Standard edition and
 Enterprise edition?

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   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 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 information (like subscribing).


begin:vcard 
n:Jerman;Don
tel;work:919.508.1886
x-mozilla-html:TRUE
org:Database Management Service,Information Technology,Division of Highways
version:2.1
email;internet:[EMAIL PROTECTED]
title:Database Administrator
adr;quoted-printable:;;Database Management Service,Information Technology,Division of Highways=0D=0A104 Fayetteville Street Mall;Raleigh;NC;27699-1521;USA
x-mozilla-cpt:;-9536
fn:Don Jerman
end:vcard



Re: 8.1.6 upgrade

2001-02-28 Thread TCarlson


We have done this on several machines without a problem. Don't use the
patch on server running Designer 6.5. Bad Mojo.
I have an open iTAR with Oracle about this.

Todd Carlson
Oracle 8  8i Certified DBA
Bunge Corporation


   
   
"Kevin 
   
Kostyszyn"   To: Multiple recipients of list ORACLE-L  
   
kevin@dulcia[EMAIL PROTECTED]
   
n.com   cc:   
   
Sent by: Subject: 8.1.6 upgrade
   
root@fatcity.  
   
com
   
   
   
   
   
02/28/2001 
   
09:25 AM   
   
Please 
   
respond to 
   
ORACLE-L   
   
   
   
   
   




Hi all,
   Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0?  I have
done
exactly what oracle said to do and it appears as though it is missing a
.dll
and without the installation is hosed.  Do you have to upgrade to some
other
version first?  The instance I upgraded was 8.1.6.1, then when it crashed I
tried a reinstall and it still gives me the same error.  Any help would be
great, I see nothing in the documentaition with the patch that says I have
to be at anything other than 8.1.6.

Sincerely,
Kevin Kostyszyn
DBA
Dulcian, Inc
www.dulcian.com
[EMAIL PROTECTED]

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kevin Kostyszyn
  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 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 information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



RE: Oracle's Updates Subscription Service

2001-02-28 Thread Mohan, Ross
Title: RE: Oracle's Updates Subscription Service





Walt, you have just shattered my picture of you as a gentle man
surrounded by docile ruminants, never uddering a discouraging word. 


Yes, it's amazing, the price of the software. My line to folks
is: For your money, Oracle is the best database...if it were my
money, it would be almost anything but..


MySQL *is* tunable.could be fun


-Original Message-
From: Weaver, Walt [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 10:21 AM
To: Multiple recipients of list ORACLE-L
Subject: Oracle's Updates Subscription Service



Say, is it just me or has the cost of the Updates Subscription Service gone
up considerably in the past six months or so? 


We're currently pricing out what it'll cost us to purchase 8.1.7 Standard
Edition and the numbers we're getting are a heck of a lot higher than they
were in November.


Has the cost of CD-ROM's gone up that much? Is the economy now in an
inflationary period? Where's Allen Greenspan when you need him?


Whatever happened to those hazy, golden, halcyon days when upgrades were
included in product support?


Sometimes, Oracle just sucks. I'm seriously considering getting on track for
a MySQL certification. :)


--Walt Weaver
 Bozeman, Montana, USA
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Weaver, Walt
 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 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 information (like subscribing).





RE: ODS

2001-02-28 Thread Mohan, Ross
Title: RE: ODS





Dick, 


100gb allocated or actually used?


thx


Ross


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 10:05 AM
To: Multiple recipients of list ORACLE-L
Subject: Re:ODS



Murali,


 Since we use what I really believe is an Operational Data Store or ODS, I'll
provide the insight from here, others may have their own opinion.


 We are a manufacturer of power components, little modules that fit into
larger power supplies, like the one in your PC. As a result we have a number of
manufacturing lines each building different or the same product at the same
time. Each of these lines has a number of automatic testers that test the
product. These testers need data on the specifications that they are to test
the modules to at each point in the process and they also need a location where
they send the results of those tests. On top of all that we also collect
statistical process control data and failure analysis data when a technicians
repair a defective module, at least before it gets filled with epoxy. All of
this data is flowing through the factory all day, 24x7. On top of that
engineers are looking at the results data looking for trends in both tester
performance from lost of angles, and module behavior. Yes this ODS does feed
into our Data Warehouse on a daily basis, but of more importance is the
real-time monitoring that occurs to keep yields in line with company
expectations.


 What size is this monster, 100GB and growing at about 20% per year (who said
anything about a recession). We use EMC disk with mirroring, a HP9000 K570 as
the processor with redundant processors and power supplies, and the box will be
getting EMC's PowerPath software in a month or so. The block size is 8K and the
SGA is running around 500MB, believe it or not the biggest performance boost we
gave the instance was to raise the shared pool to 150M. We use 4 DBWR slaves
and 10M logfiles to keep the recovery granularity fairly fine, although we
haven't had to recover this db in over 4 years. This system is running 24x7,
gets quarterly cold backup with weekly hot backups, runs in archivelog mode, and
dedicated server. One note, the predecessor to the current computer set the
company record for uptime on a HP-UX box at 18 months, including the database. 
On an average day I'd estimate that this system takes in half to 1GB of data and
sends out better than 10GB in answer to user requests. We also retire to tape
approximately 100MB of data a day and dump 300MB of redundant data each day too.


Dick Goulet


Reply Separator
Author: Murali Vallath [EMAIL PROTECTED]
Date: 2/27/2001 12:39 PM



Hello Everyone,


This new term Operational Data Store(ODS) has many definitions, like staging 
area to the data warehouse, data mart, A data warehouse or reporting 
database, a archive area etc etc. updated almost real time.


From your experience, is this being used in the Oracle world. What size are 
these databases? What configuration is this on? What is the uptime?


I have a requirement that this should be a 24*7 database. Anyone would like 
to share their experiences.


Regards,


Murali Vallath


_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Murali Vallath
 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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
 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 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 information (like subscribing).





RE: 8.1.6 upgrade

2001-02-28 Thread Boivin, Patrice J

I just upgraded my test server from 8.1.6.1.1. to 8.1.6.3.0, then up to
8.1.6.3.1..  You can get 8.1.6.3.1. at
ftp://oracle-ftp.oracle.com/server/patchsets/wgt_tech/server/windowsNT/81pat
chsets/81631/ 

I had previously installed a trial version of Savant QDiagnostics, but after
de-installing the thing I am left with a QDBA account that cannot be
deleted.

Drop user qdba cascade hangs whether I do it from DBA Studio, SQL*Plus or
svrmgrl.

I logged a TAR with Oracle, their response was to ask me a dozen questions,
as if they haven't seen this before.

I created a dummy user, created a table, inserted some records into it, then
successfully dropped the table and the user.  So I think this has to do with
either memory shortage on my test machine, or the QDBA user itself.  Perhaps
those "compressed" packages it owns in the database.

Anyway, I had no apparent problems, except now the Oracle Management Server
service refuses to start, it says something like "the environment pointers
have changed".  I haven't logged a TAR regarding that yet, I have to answer
the dozen questions Oracle Support threw at me.

Let me know if you find out anything more, we plan to upgrade to 8.1.6 this
summer and I have to verify that this version is actually stable.

Regards,
Patrice Boivin
Systems Analyst (Oracle Certified DBA)

Systems Admin  Operations | Admin. et Exploit. des systmes
Technology Services| Services technologiques
Informatics Branch | Direction de l'informatique 
Maritimes Region, DFO  | Rgion des Maritimes, MPO

E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 



-Original Message-
From:   Kevin Kostyszyn [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 28, 2001 11:26 AM
To: Multiple recipients of list ORACLE-L
Subject:8.1.6 upgrade

Hi all,
Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0?  I
have done
exactly what oracle said to do and it appears as though it is
missing a .dll
and without the installation is hosed.  Do you have to upgrade to
some other
version first?  The instance I upgraded was 8.1.6.1, then when it
crashed I
tried a reinstall and it still gives me the same error.  Any help
would be
great, I see nothing in the documentaition with the patch that says
I have
to be at anything other than 8.1.6.

Sincerely,
Kevin Kostyszyn
DBA
Dulcian, Inc
www.dulcian.com
[EMAIL PROTECTED]

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kevin Kostyszyn
  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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Boivin, Patrice J
  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 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 information (like subscribing).



Re:ODS

2001-02-28 Thread Bill Conner


i have used ODS, mostly to get data off the production server for report 
generation,
but sense it was there i also used it to data loads into a DWH.  This cut 
out the
impact on the production server on the data scrubbing part of loading the DWH.


Hello Everyone,

This new term Operational Data Store(ODS) has many definitions, like staging
area to the data warehouse, data mart, A data warehouse or reporting
database,  a archive area etc etc. updated almost real time.

 From your experience, is this being used in the Oracle world. What size are
these databases? What configuration is this on? What is the uptime?

I have a requirement that this should be a 24*7 database. Anyone would like
to share their experiences.

Regards,

Murali Vallath

_
Get your FREE download of MSN Explorer at http://explorer.msn.com

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Murali Vallath
   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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
   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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Bill Conner
  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 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 information (like subscribing).



2/28/01 - PL/SQL Syntax Request

2001-02-28 Thread Gorden-Ozgul, Patricia E

I need help.  I'm sorry if this is a cross-posting for you.

I'd like to see some example PL/SQL code, perhaps a procedure, that will
pass
through each record of a table, test for combinations of column values and
based upon
a specific value (which would be determined by an IF... THEN... matrix), set
a variable.
The value stored in this variable would then be used to update a different
column of the
very same table from which the original record was read.

The matrix:

(IF)   (THEN)
Key A M C  one two three four five

CA  IND   1 1  CZ  STA OFF   BOO  AD
CA  IND   3 1  CZ  STA OFF   REP  AD
CA  IND   1 4  CZ  STA OFF   AV   AD
...
PH  IND   1 1  PH  STA OFF   BOO  PO
PH  OUT   1 1  PH  REF NULL  RBO  PO
...
...


The data table IN (before processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31
CA   IND  31
PH   IND  11
CA   IND  14
PH   OUT  11
CA   IND  31
...
...

The data table OUT (after processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31 CZ   STA  OFF  REP
AD
CA   IND  31 CZ   STA  OFF  REP
AD
PH   IND  11 PH   STA  OFF  BOO
PO
CA   IND  14 CZ   STA  OFF  AV
AD
PH   OUT  11 PH   REF  NULL RBO
PO
CA   IND  31 CZ   STA  OFF  REP
AD
...
...


I'm looking for the PL/SQL code syntax to perform a task such as this.

Wow.  That was a mouthful.  Good discipline.

Any and all help will be appreciated.


__
Pat Gorden-Ozgul   BNL-ISD Systems
[EMAIL PROTECTED] 631-344-5159





-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Gorden-Ozgul, Patricia E
  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 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 information (like subscribing).



Re: Table Storage Estimates

2001-02-28 Thread Sanjay Kumar

Thanks all for the solution. I too thought of having a 1 : 1 relationship by
separating the long raw column from the table. But I believe I am not
permitted to do that (Strange). Since this is a third party product, I
am not suppose to change any of the design issues and also the datatype.

I believe row chaining is obvious in this situation. Also the average row
length is 10M. The size of the database block size is 8.

When I queried the dba_extents to find the number of blocks that have been
occupied, it showed 16620 and the number of rows are 113.

I am totally confused now. Any help greatly appreciated.

Sanjay


- Original Message -
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 12:46 AM


Your estimate comes to around 1 row per block.
What is the average row lenght once data is in the db
? Do you have row chaining ?

What is your block size ? Can you increase it ?

If a lot of queries do not need the long raw column
you can put it in another table with a 1 to 1
relationship with the parent table.

If your planning to have 200 rows of 1 block each, I
do not understand why you are adding datafiles as the
data should not occupied more than 3200K if you
blocksize is 16K. Increase the size of the initial
datafile instead of adding new ones.

--- Sanjay Kumar [EMAIL PROTECTED] a crit : 
Hi,

 I have a table which has a structure similar to the
 following.

 MID NOT NULL
 VARCHAR2(24)
 NAME
 VARCHAR2(512)
 PRIORITY
 NUMBER(38)
 PERSISTENT
 CHAR(1)
 EXP_DATE
 DATE
 BODY
 LONG RAW


 I estimated the table storage for this table using
 the formula given in the Oracle documentation. It
 comes to around 1 rows per block.

 It is estimated that the number of rows for this
 table will not exceed 200.

 My questions are

 1. Doesnt this lead to fragmentation.?
 2. I have added three datafiles to this tablespace
 as of now and it seems like this might require more
 space. How do I effectively redesign this
 table to avoid contention and chaining?

 3. Moreover, initially when there were 105 rows
 inserted, I issued a count(*) and it took about 5
 minutes? How do I reduce the time taken to execute
 the query?


 I would highly appreciate if someone comes forward
 to help me on this.

 I am using Oracle 8.1.6 on Solaris

 Sanjay





=
Stephane Paquette
DBA Oracle
[EMAIL PROTECTED]

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: =?iso-8859-1?q?paquette=20stephane?=
  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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Sanjay Kumar
  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 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 information (like subscribing).



RE: 8.1.6 upgrade

2001-02-28 Thread Kimberly Smith

Check to see if the QDBA account has any jobs set to run.
If so, you should break and remove them.  It does set up
jobs so the chances are good that this is the issue.

-Original Message-
Sent: Wednesday, February 28, 2001 8:55 AM
To: Multiple recipients of list ORACLE-L


I just upgraded my test server from 8.1.6.1.1. to 8.1.6.3.0, then up to
8.1.6.3.1..  You can get 8.1.6.3.1. at
ftp://oracle-ftp.oracle.com/server/patchsets/wgt_tech/server/windowsNT/81pat
chsets/81631/ 

I had previously installed a trial version of Savant QDiagnostics, but after
de-installing the thing I am left with a QDBA account that cannot be
deleted.

Drop user qdba cascade hangs whether I do it from DBA Studio, SQL*Plus or
svrmgrl.

I logged a TAR with Oracle, their response was to ask me a dozen questions,
as if they haven't seen this before.

I created a dummy user, created a table, inserted some records into it, then
successfully dropped the table and the user.  So I think this has to do with
either memory shortage on my test machine, or the QDBA user itself.  Perhaps
those "compressed" packages it owns in the database.

Anyway, I had no apparent problems, except now the Oracle Management Server
service refuses to start, it says something like "the environment pointers
have changed".  I haven't logged a TAR regarding that yet, I have to answer
the dozen questions Oracle Support threw at me.

Let me know if you find out anything more, we plan to upgrade to 8.1.6 this
summer and I have to verify that this version is actually stable.

Regards,
Patrice Boivin
Systems Analyst (Oracle Certified DBA)

Systems Admin  Operations | Admin. et Exploit. des systmes
Technology Services| Services technologiques
Informatics Branch | Direction de l'informatique 
Maritimes Region, DFO  | Rgion des Maritimes, MPO

E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 



-Original Message-
From:   Kevin Kostyszyn [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, February 28, 2001 11:26 AM
To: Multiple recipients of list ORACLE-L
Subject:8.1.6 upgrade

Hi all,
Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0?  I
have done
exactly what oracle said to do and it appears as though it is
missing a .dll
and without the installation is hosed.  Do you have to upgrade to
some other
version first?  The instance I upgraded was 8.1.6.1, then when it
crashed I
tried a reinstall and it still gives me the same error.  Any help
would be
great, I see nothing in the documentaition with the patch that says
I have
to be at anything other than 8.1.6.

Sincerely,
Kevin Kostyszyn
DBA
Dulcian, Inc
www.dulcian.com
[EMAIL PROTECTED]

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kevin Kostyszyn
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Boivin, Patrice J
  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 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 information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kimberly Smith
  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 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 information (like subscribing).



RE: 2/28/01 - PL/SQL Syntax Request

2001-02-28 Thread Khedr, Waleed

You put the following in a table (could be temporary):
Key A M C  one two three four five

CA  IND   1 1  CZ  STA OFF   BOO  AD
CA  IND   3 1  CZ  STA OFF   REP  AD
CA  IND   1 4  CZ  STA OFF   AV   AD
...
PH  IND   1 1  PH  STA OFF   BOO  PO
PH  OUT   1 1  PH  REF NULL  RBO  PO

And then joing it to the original table (or use NL) to update it.

-Original Message-
Sent: Wednesday, February 28, 2001 11:41 AM
To: Multiple recipients of list ORACLE-L


I need help.  I'm sorry if this is a cross-posting for you.

I'd like to see some example PL/SQL code, perhaps a procedure, that will
pass
through each record of a table, test for combinations of column values and
based upon
a specific value (which would be determined by an IF... THEN... matrix), set
a variable.
The value stored in this variable would then be used to update a different
column of the
very same table from which the original record was read.

The matrix:

(IF)   (THEN)
Key A M C  one two three four five

CA  IND   1 1  CZ  STA OFF   BOO  AD
CA  IND   3 1  CZ  STA OFF   REP  AD
CA  IND   1 4  CZ  STA OFF   AV   AD
...
PH  IND   1 1  PH  STA OFF   BOO  PO
PH  OUT   1 1  PH  REF NULL  RBO  PO
...
...


The data table IN (before processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31
CA   IND  31
PH   IND  11
CA   IND  14
PH   OUT  11
CA   IND  31
...
...

The data table OUT (after processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31 CZ   STA  OFF  REP
AD
CA   IND  31 CZ   STA  OFF  REP
AD
PH   IND  11 PH   STA  OFF  BOO
PO
CA   IND  14 CZ   STA  OFF  AV
AD
PH   OUT  11 PH   REF  NULL RBO
PO
CA   IND  31 CZ   STA  OFF  REP
AD
...
...


I'm looking for the PL/SQL code syntax to perform a task such as this.

Wow.  That was a mouthful.  Good discipline.

Any and all help will be appreciated.


__
Pat Gorden-Ozgul   BNL-ISD Systems
[EMAIL PROTECTED] 631-344-5159





-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Gorden-Ozgul, Patricia E
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Khedr, Waleed
  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 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 information (like subscribing).



Re:RE: ODS

2001-02-28 Thread dgoulet

Ross,

There's 100GB in use.  I'm in the process, along with our SA of adding
another 20GB of additional available disk space.  Yeah this a pretty big ODS,
but the end users want a minimum of 90 days back data  with a build plan that
approaches the vertical over the next 6 months!!!

Dick Goulet

Reply Separator
Author: "Mohan; Ross" [EMAIL PROTECTED]
Date:   2/28/2001 7:50 AM

Dick, 

100gb allocated or actually used?

thx

Ross

-Original Message-
Sent: Wednesday, February 28, 2001 10:05 AM
To: Multiple recipients of list ORACLE-L


Murali,

Since we use what I really believe is an Operational Data Store or ODS,
I'll
provide the insight from here, others may have their own opinion.

We are a manufacturer of power components, little modules that fit into
larger power supplies, like the one in your PC.  As a result we have a
number of
manufacturing lines each building different or the same product at the same
time.  Each of these lines has a number of automatic testers that test the
product.  These testers need data on the specifications that they are to
test
the modules to at each point in the process and they also need a location
where
they send the results of those tests.  On top of all that we also collect
statistical process control data and failure analysis data when a
technicians
repair a defective module, at least before it gets filled with epoxy.  All
of
this data is flowing through the factory all day, 24x7.  On top of that
engineers are looking at the results data looking for trends in both tester
performance from lost of angles, and module behavior.  Yes this ODS does
feed
into our Data Warehouse on a daily basis, but of more importance is the
real-time monitoring that occurs to keep yields in line with company
expectations.

What size is this monster, 100GB and growing at about 20% per year (who
said
anything about a recession).  We use EMC disk with mirroring, a HP9000 K570
as
the processor with redundant processors and power supplies, and the box will
be
getting EMC's PowerPath software in a month or so.  The block size is 8K and
the
SGA is running around 500MB, believe it or not the biggest performance boost
we
gave the instance was to raise the shared pool to 150M.  We use 4 DBWR
slaves
and 10M logfiles to keep the recovery granularity fairly fine, although we
haven't had to recover this db in over 4 years.  This system is running
24x7,
gets quarterly cold backup with weekly hot backups, runs in archivelog mode,
and
dedicated server.  One note, the predecessor to the current computer set the
company record for uptime on a HP-UX box at 18 months, including the
database. 
On an average day I'd estimate that this system takes in half to 1GB of data
and
sends out better than 10GB in answer to user requests. We also "retire" to
tape
approximately 100MB of data a day and dump 300MB of redundant data each day
too.

Dick Goulet

Reply Separator
Author: "Murali Vallath" [EMAIL PROTECTED]
Date:   2/27/2001 12:39 PM


Hello Everyone,

This new term Operational Data Store(ODS) has many definitions, like staging

area to the data warehouse, data mart, A data warehouse or reporting 
database,  a archive area etc etc. updated almost real time.

From your experience, is this being used in the Oracle world. What size are 
these databases? What configuration is this on? What is the uptime?

I have a requirement that this should be a 24*7 database. Anyone would like 
to share their experiences.

Regards,

Murali Vallath

_
Get your FREE download of MSN Explorer at http://explorer.msn.com

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Murali Vallath
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 

RE: Oracle's Updates Subscription Service

2001-02-28 Thread Weaver, Walt
Title: RE: Oracle's Updates Subscription Service



Well 
Ross, Our campus is out in the country (just about everywhere in Montana is out 
in the country) and we are, indeed, surrounded by docile ruminants. I'd like to 
say that during our off-time we go out and gaze lovingly at their udders, but 
there are other things we prefer to gaze at lovingly.

Of 
course, we have no problems doing online dairy backups around here. 
:)

We use 
MySQL here and yes it's tunable. There's even word out on the street that soon 
MySQL may support the concept of a transaction. What a 
concept.

MySQL 
has its place, but it's causing us no end of pain here. It doesn't scale well 
enough to support what we're doing. That's why we're painfully biting the bullet 
and paying the big bucks for Oracle.

--Walt 
Weaver
 
Bozeman, Montana, USA



  -Original Message-From: Mohan, Ross 
  [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 28, 2001 
  8:51 AMTo: Multiple recipients of list ORACLE-LSubject: 
  RE: Oracle's Updates Subscription Service
  Walt, you have just shattered my picture of you as a gentle 
  man surrounded by docile ruminants, never uddering a 
  discouraging word. 
  Yes, it's amazing, the price of the software. My line to 
  folks is: "For your money, Oracle is the best 
  database...if it were my money, it would be almost 
  anything but.." 
  MySQL *is* tunable.could be fun 
  -Original Message- From: 
  Weaver, Walt [mailto:[EMAIL PROTECTED]] 
  Sent: Wednesday, February 28, 2001 10:21 AM To: Multiple recipients of list ORACLE-L Subject: Oracle's Updates Subscription Service 
  Say, is it just me or has the cost of the Updates Subscription 
  Service gone up considerably in the past six months or 
  so? 
  We're currently pricing out what it'll cost us to purchase 
  8.1.7 Standard Edition and the numbers we're getting 
  are a heck of a lot higher than they were in 
  November. 
  Has the cost of CD-ROM's gone up that much? Is the economy now 
  in an inflationary period? Where's Allen Greenspan 
  when you need him? 
  Whatever happened to those hazy, golden, halcyon days when 
  upgrades were included in product support? 
  Sometimes, Oracle just sucks. I'm seriously considering 
  getting on track for a MySQL 
  certification. :) 
  --Walt Weaver  Bozeman, Montana, 
  USA -- Please see the official 
  ORACLE-L FAQ: http://www.orafaq.com -- 
  Author: Weaver, Walt  
  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 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 information (like subscribing). 



Re:RE: RE: MetaSlop - Another Response Scenario for Paul.

2001-02-28 Thread dgoulet

Is Oracle trying to drive us nuts?  Why of course they are.  Take today, the OTS
phone line said that metastink was up and available, but when I got an analyst
he told me they had mail from the "metalame support team" that it would be down
until early afternoon, Florida time?

Reply Separator
Author: "Kevin Kostyszyn" [EMAIL PROTECTED]
Date:   2/28/2001 8:16 AM

RE: RE: MetaSlop - Another Response Scenario for Paul.I just don't think
that I can stand metalink much longer!!  Is Oracle trying to drive all of us
nutz, if so, at least they are getting that right!!!
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mohan, Ross
  Sent: Tuesday, February 27, 2001 4:58 PM
  To: Multiple recipients of list ORACLE-L
  Subject: RE: RE: MetaSlop - Another Response Scenario for Paul.


  Scenario Two:

  ## For Immediate Release
###

  Ap/UPI/AFP/Reuters ---  Redwood Shores, 27 Feb 00

  Oracle Denial of Service Attack

  Oracle Corporation announced today, in a stunning revelation, that
  they have been issuing a massive Denial of Service (DoS) attack against
  its own customers via its "Support" website, MetaBlink.

  The scam worked like this:  clever hackers within Oracle Corporation
  configured MetaLink with Oracle default values, guaranteeing devastating
  failure. As long term Oracle customers, sorely vexed by arcane command
sequences,
  byzantine product offerings, and constantly shifting product versions
  came to the "support web site" to seek help, they were shunted away,
  losing hours of productive time, watching key applications fail,
  marriages dissolve, and world peace slip from their grasp.

  Precisely at this vulnerable moment, a crack team of marketers ( or a
  team of crack-smoking marketers, field reports are not clear ) created
  a campaign to lead key customers to believe "application upgrades" and
  "more hardware" were the problem.

  Sources in the McNealy Command Bunker indicate Oracle's innovative DoS
  is working, as record numbers of customers are throwing massive amounts
  of hardware at problems relatively easy to rectify. Further, back at
  Armani HQ, Redwood Shores, initial reports are that the "application
upgrades"
  orders are coming in quickly.

  IBM, HP, and other industry leaders are likely to follow the Oracle
Corporation
  trend, and begin to knock off key customers shortly, using a combination
of
  DoS, confusing price plans, deliriously inaccurate marketing campaigns,
  and other tools of corporate psychological warfare.

  ( - Ross Mohan, Cub Reporter, Daily Planet )

  -Original Message-
  From: Paul Baumgartel [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, February 27, 2001 3:21 PM
  To: Multiple recipients of list ORACLE-L
  Subject: RE: RE: MetaSlop



  And if you were running a comparable system, what would *you* say?



  Paul Baumgartel
  InstiPro, Inc.
  [EMAIL PROTECTED]
  212 813-0829 x103 (office)
  917 549-4717 (mobile)



  -Original Message-
  Sent: Tuesday, February 27, 2001 2:51 PM
  To: Multiple recipients of list ORACLE-L



  Man, these guys just invite the wise-ass comment, don't they?  Such as:

  Well maybe if the product worked better/was less confusing/had better
  documentation we wouldn't all be in Metalink!
  Oh no!  If 4 new servers brought the system to its knees just think how
bad
  it'll be when the rest of the hardware arrives!
  4 new top-of-the-line servers, just think what that'll do to their power
  unit charges!

  Plus I can't rid myself of the image of us all 'staggering' to Metalink
for
  help.

  Jim

   [EMAIL PROTECTED] 02/27/01 01:21PM 
  For those interested, right from the horses mouth, or other orifice as you
  desire:

  News  Notes
MetaLink Performance - An Update




We apologize for the slow response times recently on MetaLink. All over
  the
  world our customers are coming to and using this valuable
knowledge base in staggering numbers. Our Global IT team are working
these
  performance issues as their number one priority.

What is Being Done
This week four new front-end web servers were brought on line to help
  manage
  the load. Additional hardware has been purchased and will
arrive soon which will make a significant improvement in performance.

We appreciate your patience during this time of significant growth in
  MetaLink
  usage.

Thanks,
The MetaLink Team

  --

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEADTITLERE: RE: MetaSlop - Another Response Scenario for
Paul./TITLE
META http-equiv=Content-Type content="text/html; charset=iso-8859-1"
META content="MSHTML 5.50.4207.2601" name=GENERATOR/HEAD
BODY
DIVSPAN class=046201216-28022001FONT face=Arial color=#ff size=2I just

don't think that I can stand metalink much longer!!nbsp; Is Oracle trying to 

Re: 2/28/01 - PL/SQL Syntax Request

2001-02-28 Thread Tim Sawmiller

How about:

update table_name set
col5 = decode(string1,string2,'PH',string3 'CZ',).
,col6 = decode(string4,string5,'STA',string6, 'REF',)
,col7 =etc
,col8 =etc

string1 and string4, etc  could be the concatentation of the four determinant columns, 
string 2,3,5,6, etc would be the determining values.

 [EMAIL PROTECTED] 02/28/01 11:41AM 
I need help.  I'm sorry if this is a cross-posting for you.

I'd like to see some example PL/SQL code, perhaps a procedure, that will
pass
through each record of a table, test for combinations of column values and
based upon
a specific value (which would be determined by an IF... THEN... matrix), set
a variable.
The value stored in this variable would then be used to update a different
column of the
very same table from which the original record was read.

The matrix:

(IF)   (THEN)
Key A M C  one two three four five

CA  IND   1 1  CZ  STA OFF   BOO  AD
CA  IND   3 1  CZ  STA OFF   REP  AD
CA  IND   1 4  CZ  STA OFF   AV   AD
...
PH  IND   1 1  PH  STA OFF   BOO  PO
PH  OUT   1 1  PH  REF NULL  RBO  PO
...
...


The data table IN (before processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31
CA   IND  31
PH   IND  11
CA   IND  14
PH   OUT  11
CA   IND  31
...
...

The data table OUT (after processing):

Col1 Col2 Col3 Col4  Col5 Col6 Col7 Col8
Col9

CA   IND  31 CZ   STA  OFF  REP
AD
CA   IND  31 CZ   STA  OFF  REP
AD
PH   IND  11 PH   STA  OFF  BOO
PO
CA   IND  14 CZ   STA  OFF  AV
AD
PH   OUT  11 PH   REF  NULL RBO
PO
CA   IND  31 CZ   STA  OFF  REP
AD
...
...


I'm looking for the PL/SQL code syntax to perform a task such as this.

Wow.  That was a mouthful.  Good discipline.

Any and all help will be appreciated.


__
Pat Gorden-Ozgul   BNL-ISD Systems
[EMAIL PROTECTED] 631-344-5159





-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com 
-- 
Author: Gorden-Ozgul, Patricia E
  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 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 information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Tim Sawmiller
  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 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 information (like subscribing).



RE: 8.1.6 upgrade

2001-02-28 Thread Mohan, Ross
Title: RE: 8.1.6 upgrade





as QDBA do


execute q$bgproc.stop_driver;


note the results



log out, then in as internal


drop user qdba cascade;


and



let us know what happens, OK?



-Original Message-
From: Boivin, Patrice J [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 11:55 AM
To: Multiple recipients of list ORACLE-L
Subject: RE: 8.1.6 upgrade



I just upgraded my test server from 8.1.6.1.1. to 8.1.6.3.0, then up to
8.1.6.3.1.. You can get 8.1.6.3.1. at
ftp://oracle-ftp.oracle.com/server/patchsets/wgt_tech/server/windowsNT/81pat
chsets/81631/ 


I had previously installed a trial version of Savant QDiagnostics, but after
de-installing the thing I am left with a QDBA account that cannot be
deleted.


Drop user qdba cascade hangs whether I do it from DBA Studio, SQL*Plus or
svrmgrl.


I logged a TAR with Oracle, their response was to ask me a dozen questions,
as if they haven't seen this before.


I created a dummy user, created a table, inserted some records into it, then
successfully dropped the table and the user. So I think this has to do with
either memory shortage on my test machine, or the QDBA user itself. Perhaps
those compressed packages it owns in the database.


Anyway, I had no apparent problems, except now the Oracle Management Server
service refuses to start, it says something like the environment pointers
have changed. I haven't logged a TAR regarding that yet, I have to answer
the dozen questions Oracle Support threw at me.


Let me know if you find out anything more, we plan to upgrade to 8.1.6 this
summer and I have to verify that this version is actually stable.


Regards,
Patrice Boivin
Systems Analyst (Oracle Certified DBA)


Systems Admin  Operations | Admin. et Exploit. des systèmes
Technology Services | Services technologiques
Informatics Branch | Direction de l'informatique 
Maritimes Region, DFO | Région des Maritimes, MPO


E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 




 -Original Message-
 From: Kevin Kostyszyn [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 11:26 AM
 To: Multiple recipients of list ORACLE-L
 Subject: 8.1.6 upgrade


 Hi all,
  Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0? I
have done
 exactly what oracle said to do and it appears as though it is
missing a .dll
 and without the installation is hosed. Do you have to upgrade to
some other
 version first? The instance I upgraded was 8.1.6.1, then when it
crashed I
 tried a reinstall and it still gives me the same error. Any help
would be
 great, I see nothing in the documentaition with the patch that says
I have
 to be at anything other than 8.1.6.


 Sincerely,
 Kevin Kostyszyn
 DBA
 Dulcian, Inc
 www.dulcian.com
 [EMAIL PROTECTED]


 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Kevin Kostyszyn
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Boivin, Patrice J
 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 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 information (like subscribing).





eek!

2001-02-28 Thread Dennis Taylor

We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).



Re: Import (urgent)

2001-02-28 Thread Shantanu Talukder

That's not true anymore. In IBM/AIX you have to create
JFS with large file enable option and in addition to
that in your /etc/security/limits file you need to set

fsize=-1, which means 'unlimited'. Now, you can check
it by using 'ulimit' command. 



--- Shankar Shanmugaswamy [EMAIL PROTECTED] wrote:
 Hi,
 
 You can check the size of the DMP file getting
 created , in Unix 
 you cannot exceed more than 2GB.
 Pls check and inform.
 
 S.S
 
  [EMAIL PROTECTED] 02/23/01 06:45AM 
 Hello All
 
 I am getting this error when doing a full import.
 
 IMP-3: ORACLE error 3113 encountered
 ORA-03113: end-of-file on communication channel
 IMP-00021: operating system error - error code (dec
 9, hex 0x9)
 IMP-0: Import terminated unsuccessfully
 
 IMP-00021: operating system error - error code (dec
 9, hex 0x9)
 
 On Oracle 8.0.5 on Solaris 2.6
 
 TIA
 
 -- 
 Sajid Iqbal
 Database Team Leader
 
 
 
 
 -- 
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com 
 -- 
 Author: Sajid Iqbal
   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 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 information
 (like subscribing).
 
 --
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com
 --
 Author: Shankar Shanmugaswamy
   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 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 information
 (like subscribing).


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Shantanu Talukder
  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 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 information (like subscribing).



RE: Beta program opportunity

2001-02-28 Thread Deshpande, Kirti

Hi, 
I am running it on a HP-UX 11.0 server and currently connected to 2
databases. 
Top shows StorageXpert using anywhere between 1 to 9% CPU. I have been
running it since morning (for about 4 hours now).
What version are you using? Mine is Beta Version 1.0b4 build 1.0.4.249. 
Have you contacted Quest?  

- Kirti Deshpande

 -Original Message-
 From: Smith, Ron L. [SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 10:55 AM
 To:   Multiple recipients of list ORACLE-L
 Subject:  RE: Beta program opportunity
 
 I started up StoragExpert and within a about 2 minutes it was using 50% of
 my CPU.  Any ideas?
 
 Ron
 
 -Original Message-
 Sent: Friday, February 16, 2001 1:52 PM
 To: Multiple recipients of list ORACLE-L
 
 
 Okay, here goes. First a disclaimer:  I am NOT getting paid for this.
 I 
 think this is a cool product. I don't promote things on this list if I
 earn 
 income from them. Having said that
 
 I have been participating in a beta (maybe alpha?) program with Quest 
 Software for a new product called StorageXpert. I'm going to include the 
 "marketing/press release" info below, they are opening up the beta program
 
 to anyone who wants it (don't know if it runs against NT as yet).
 
 Having worked with it (and no, I don't know the pricing schedule at all) I
 
 think you guys might want to check it out. I've used it to find hot spots
 on
 
 my disks, and link them back to the tables and queries that are causing
 the 
 problems. I've been able to drag a programmer over and SHOW him what his 
 query is doing to my database. You know the old "a picture is worth a 
 thousand words" cliche?  This is a GRAPHIC display of usage (all those 
 lovely equalizers :)  ).
 
 I showed it to my sysadmin and he freaked.. loved it.
 
 I've been running it for about 4 months now without problems.
 
 So... press release below, those of you who want to play with it, have
 fun, 
 those who don't, please just hit delete.
 
 Rachel
 
 ***
 
 Have you checked out this new cool product StorageXpert for Oracle. This 
 product facilitates detection of the exact cause of the I/O bottlenecks in
 
 your Oracle environment. This product is currently beta from Quest
 Software 
 and it enables you to:
 
 
 - Identify Oracle objects that suffer from I/O bottlenecks
 - Provide storage device usage patterns and I/O wait information
 - Identify programs/SQL contributing to the I/O problem
 - Map I/O operations for Oracle files in the storage devices
 - Easily use the granular and meaningful I/O information which is provided
 a
 
 concise and user-friendly format
 
 
 Beta testing ends March 29th 2001. Discover how you can find the root of 
 your storage bottlenecks today! Please check out the "Systems
 Requirements" 
 link at http://www.quest.com/storage_xpert/system_requirements.asp. You
 can 
 download the product at http://www.quest.com/storage_xpert/. Please send 
 your feedback to [EMAIL PROTECTED] and technical support 
 queries/issues/problems to [EMAIL PROTECTED]
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Rachel Carmichael
   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 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 information (like subscribing).
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Smith, Ron L.
   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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Deshpande, Kirti
  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 an E-Mail message
to: [EMAIL PROTECTED] (note EXACT 

Help - Tuning SQL

2001-02-28 Thread Armstead, Michael A

I've got some simple questions on tuning SQL. Please reply with references,
I'm not looking for guesses.

*   If you have a SELECT statement with a WHERE clause and 2 AND
clauses, which one is processed first, the WHERE clause, the first AND
clause, or the second AND clause?
*   Is there any performance loss in using "" over "!="?

Michael Armstead
Database Administrator, OCP-Certified
Corporate  Finance Information Systems
Glaxo SmithKline



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Armstead, Michael A
  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 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 information (like subscribing).



Re: eek!

2001-02-28 Thread Dennis Taylor

At 11:17 AM 2/28/01 -0800, you wrote:
We just had an earthquake. I'm fairly freeked.


See how freaked I was? I mis-spelled 'freaked'.


Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).



Re: eek!

2001-02-28 Thread Ruth Gramolini

Where are you?  RBG

- Original Message - 
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 2:17 PM


 We just had an earthquake. I'm fairly freeked.
 
 How's everyone's disaster recover strategy? I'll think I'll be reviewing
 ours today.
 
 
 
 Dennis Taylor
 
 Niels is bohring.
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Dennis Taylor
   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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Ruth Gramolini
  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 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 information (like subscribing).



Re: EXPORT PROBLEM

2001-02-28 Thread Rocky Welch

Hi Mala,
If you're on 8.1.6 it's a bug. If you do your export without the
consistent parameter it should finish okay but you should patch your
current installation.

--- mala singh [EMAIL PROTECTED] wrote:
 Hi DBAs
 
 I have problem at time of full export of Database.The following are the 
 error message at end of full export.
 EXP-8: ORACLE error 1403 encountered
 ORA-01403: no data found
 ORA-06512: at "SYS.DBMS_IJOB", line 450
 ORA-06512: at "SYS.DBMS_IJOB", line 482
 ORA-06512: at line 1
 EXP-0: Export terminated unsuccessfully
 Please help.
 Thanks in advance.
 
 -Mala
 
 

_
 Get Your Private, Free E-mail from MSN Hotmail at
 http://www.hotmail.com.
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: mala singh
   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 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 information (like subscribing).


=
Rocky Welch
Senior Consultant - Internet Services Group
Arthur Andersen

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rocky Welch
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Kevin Kostyszyn

Wow, Seattle, that's strange.  I don't remember that happening. 6.2, whoo,
some damage goin on out there.

-Original Message-
Taylor
Sent: Wednesday, February 28, 2001 2:17 PM
To: Multiple recipients of list ORACLE-L


We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Dennis Taylor
  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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kevin Kostyszyn
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Maser, Donna (SEA)

Hi Dennis,
  You must be on the west coast!  That was FUN!!  (I'm in the Seattle area,
but originally from Alaska, where earthquakes are 
considered to be more a form of entertainment than a major disaster.)  Did
you run to the computer room as soon as the aftershocks ceased?  Were the
machines all still in place?  If not, you have a problem.
Donna

-Original Message-
Sent: Wednesday, February 28, 2001 11:17 AM
To: Multiple recipients of list ORACLE-L


We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.


The information contained in this email is intended for the
personal and confidential use of the addressee only. It may
also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received
this document in error and that any review, distribution or
copying of this document is strictly prohibited. If you have
received  this communication in error, please notify Celltech
Group immediately on:

+44 (0)1753 534655, or email '[EMAIL PROTECTED]'

Celltech Group plc
216 Bath Road, Slough, SL1 4EN, Berkshire, UK

Registered Office as above. Registered in England No. 2159282
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Maser, Donna  (SEA)
  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 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 information (like subscribing).



Re: 8.1.6 upgrade

2001-02-28 Thread Jerry C

Hi Kevin,

We had this exact problem. It is a known issue, according to Oracle
"Support". They said it was caused by the following services being left
running during the patch:

MSDTS, SNMP and IIS Admin Services

You need to stop these before applying the patch.

Basically you're hosed. I hope it's not production (as it was with us!). The
"workaround" is to install /upgrade to 8.1.6.3 on another machine (our DBA
used his laptop), and copy all the dll's over.

Hope this helps!

Jerry

- Original Message -
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 2:11 PM


 All dlls are showing.  If nt can find, why isn't oracle?  Is it possible
 that something in the registry got hosed and it is looking in the wrong
spot
 to execute?

 -Original Message-
 Housholder
 Sent: Wednesday, February 28, 2001 12:52 PM
 To: Multiple recipients of list ORACLE-L


 if i remember correctly, on some of the patches for 8.1.6,
 some of the dlls had an ATTRIB of hidden...make sure
 to check folder option, show all types...as well as going out
 to DOS screen...and running ATTRIB *.*

 patrick
 ===
 Patrick Housholder
 Sr. Staff Anl Tech Spt Design
 United Airlines Flight Training Center
 Denver CO


 *-Original Message-
 *From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kevin
 *Kostyszyn
 *Sent: Wednesday, February 28, 2001 8:26 AM
 *To: Multiple recipients of list ORACLE-L
 *Subject: 8.1.6 upgrade
 *
 *
 *Hi all,
 * Has anyone upgraded 8.1.6 EE on Windows NT to 8.1.6.3.0?  I
 *have done
 *exactly what oracle said to do and it appears as though it is
 *missing a .dll
 *and without the installation is hosed.  Do you have to upgrade to
 *some other
 *version first?  The instance I upgraded was 8.1.6.1, then when it
 *crashed I
 *tried a reinstall and it still gives me the same error.  Any help would
be
 *great, I see nothing in the documentaition with the patch that says I
have
 *to be at anything other than 8.1.6.
 *
 *Sincerely,
 *Kevin Kostyszyn
 *DBA
 *Dulcian, Inc
 *www.dulcian.com
 *[EMAIL PROTECTED]
 *
 *--
 *Please see the official ORACLE-L FAQ: http://www.orafaq.com
 *--
 *Author: Kevin Kostyszyn
 *  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 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 information (like subscribing).

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Patrick Housholder
   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 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 information (like subscribing).

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Kevin Kostyszyn
   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 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 information (like subscribing).


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Jerry C
  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 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 information (like subscribing).



* Oracle DBAs Needed in the Virginia Beach VA Area..

2001-02-28 Thread Orastaff

Software client needs 3 Oracle DBAs for its' I.T. team to staff a facility
that is relocating from the Northeast U.S. to the Virginia Beach, Virginia area.
The selected candidates May have to work in New Jersey for the first couple
of months..
but will be provided lodging and travel expenses to come home on weekends.
After that, positions will be permanently located in the Virginia Beach area.
One of the candidates selected will be a manager type who will supervise the
group.

* Requirements:
- 3+ yrs Oracle DBA experience on Unix and/or NT platforms
- Possible work in NJ for the first couple of months
- U.S. citizenship or green card required 

These positions offer:
   * Stability 
   * The opportunity to become a key member of the team.
   * Base Salary -up to in the 80's

NO sub contracting positions available.
*U.S. citizenship or green card holders only
PLEASE do not send your resume if you are not in the United States.

Oracle Placement Specialist
OraStaff, Inc.
Ph: 1-800-549-8502-Please do not call if you need sponsorship
Email: [EMAIL PROTECTED]
Please use job code: One/VaBeach/DBA/Merritt/

Note: This is only one of the many opportunities that we have available
across the U.S. 
for candidates with Oracle skills who are U.S. citizens or permanent residents. 
So if this one is not a match for you, we invite you 
to send us your resume- as we quite possibly have the opportunity that you
are seeking.

We pay referral fees.
So please contact me if you know of anyone who would be qualified/interested
in the
posiitiondescribed above- if it is not a match for your skills.
Thanks,
Bill Law


--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Orastaff
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Daniel . Curry

Where was the earthquake?  I am in the SFBay area and have not seen/felt
anything about an earthquake.   


Daniel Curry
Tsola, Inc.
[EMAIL PROTECTED]
650.486.2624

 -Original Message-
Sent:   Wednesday, February 28, 2001 11:17 AM
To: Multiple recipients of list ORACLE-L
Subject:eek!

We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Dennis Taylor

few miles south of Seattle, magnitude 6.2

Someone opined that it was cause by Windows crashing...


At 11:25 AM 2/28/01 -0800, Kevin Kostyszyn wrote:
whoa, where?



Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Kimberly Smith

It was centered in Seattle.  We felt it here in Portland to.
Nothing like working in a fab, that if a certain something goes
wrong all of Gresham is gone, while in the middle of an earthquake.
Good thing I don't panic easy:-)


-Original Message-
Sent: Wednesday, February 28, 2001 11:17 AM
To: Multiple recipients of list ORACLE-L


We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kimberly Smith
  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 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 information (like subscribing).



QDBA has been banished from my test server (was RE: 8.1.6 upgrade )

2001-02-28 Thread Boivin, Patrice J

Well, that was gruesome.

I couldn't log in as QDBA, so forget about using dbms_job.

I ended up revoking CONNECT, RESOURCE, and every other role it had.

Then I did a shutdown abort, startup restrict.

QDBA's job was still listed.

I took the risk of issuing a DELETE statement against dba_jobs, and against
the job$ view.  I don't know if that did anything useful but at least there
were no rows returned.

I granted connect, resource back to qdba.

I bounced the database again.

Then I managed to log in as QDBA, and as that user I manually (well, using
SQL scripts) dropped all of this user's objects.

Then I logged in as SYSTEM and I quite enjoyed deleting this beast from my
test machine.

Obviously when you issue a DROP USER command, Oracle doesn't do anything to
clean up that user's jobs - it just hangs.

Live and learn, now I know what to do if this happens again - use a liberal
does of REVOKE statements, GRANT again, then log on as that user.  Drop
everything that user owns manually, because DROP USER is too lazy to do it.
Once you have done DROP USER's job for it, you can issue the DROP USER
command.

Strangely it still took 8i at least ten seconds to drop the user, even
though it didn't own anything.

Regards,
Patrice Boivin
Systems Analyst (Oracle Certified DBA)

Systems Admin  Operations | Admin. et Exploit. des systmes
Technology Services| Services technologiques
Informatics Branch | Direction de l'informatique 
Maritimes Region, DFO  | Rgion des Maritimes, MPO

E-Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Boivin, Patrice J
  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 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 information (like subscribing).



Re: EXPORT PROBLEM

2001-02-28 Thread mala singh

I am using 8.1.7.I think this is bug.What isur view
-Mala

From: Rocky Welch [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Subject: Re: EXPORT PROBLEM
Date: Wed, 28 Feb 2001 11:45:51 -0800

Hi Mala,
If you're on 8.1.6 it's a bug. If you do your export without the
consistent parameter it should finish okay but you should patch your
current installation.

--- mala singh [EMAIL PROTECTED] wrote:
  Hi DBAs
 
  I have problem at time of full export of Database.The following are the
  error message at end of full export.
  EXP-8: ORACLE error 1403 encountered
  ORA-01403: no data found
  ORA-06512: at "SYS.DBMS_IJOB", line 450
  ORA-06512: at "SYS.DBMS_IJOB", line 482
  ORA-06512: at line 1
  EXP-0: Export terminated unsuccessfully
  Please help.
  Thanks in advance.
 
  -Mala
 
 
 
_
  Get Your Private, Free E-mail from MSN Hotmail at
  http://www.hotmail.com.
 
  --
  Please see the official ORACLE-L FAQ: http://www.orafaq.com
  --
  Author: mala singh
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 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 information (like subscribing).


=
Rocky Welch
Senior Consultant - Internet Services Group
Arthur Andersen

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Rocky Welch
   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 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 information (like subscribing).

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: mala singh
  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 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 information (like subscribing).



Snapshot refresh and redo log

2001-02-28 Thread Glenn Travis

Is there any way to do a snapshot refresh and not log it?  We refresh
numerous snapshots (materialized views) every hour and it fills up our
archive filesystem pretty heavily.  There is not much other redo log
information generated on this system other than the refresh.  Suggestions?

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Glenn Travis
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Weaver, Walt

I'd say the fun quotient is inversely proportional to the number of things
that fall on your head.

At least that was my experience in Fairbanks in 1976 when an earthquake
occured there...

--Walt Weaver
  Bozeman, Montana, USA

-Original Message-
Sent: Wednesday, February 28, 2001 12:58 PM
To: Multiple recipients of list ORACLE-L


Hi Dennis,
  You must be on the west coast!  That was FUN!!  (I'm in the Seattle area,
but originally from Alaska, where earthquakes are 
considered to be more a form of entertainment than a major disaster.)  Did
you run to the computer room as soon as the aftershocks ceased?  Were the
machines all still in place?  If not, you have a problem.
Donna

-Original Message-
Sent: Wednesday, February 28, 2001 11:17 AM
To: Multiple recipients of list ORACLE-L


We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.


The information contained in this email is intended for the
personal and confidential use of the addressee only. It may
also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received
this document in error and that any review, distribution or
copying of this document is strictly prohibited. If you have
received  this communication in error, please notify Celltech
Group immediately on:

+44 (0)1753 534655, or email '[EMAIL PROTECTED]'

Celltech Group plc
216 Bath Road, Slough, SL1 4EN, Berkshire, UK

Registered Office as above. Registered in England No. 2159282
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Maser, Donna  (SEA)
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Weaver, Walt
  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 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 information (like subscribing).



Re: EXPORT PROBLEM

2001-02-28 Thread Rocky Welch

I hate to say it but consult the metalink. That's how I found out about it
on 8.1.6.

--- mala singh [EMAIL PROTECTED] wrote:
 I am using 8.1.7.I think this is bug.What isur view
 -Mala
 
 From: Rocky Welch [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
 Subject: Re: EXPORT PROBLEM
 Date: Wed, 28 Feb 2001 11:45:51 -0800
 
 Hi Mala,
 If you're on 8.1.6 it's a bug. If you do your export without the
 consistent parameter it should finish okay but you should patch your
 current installation.
 
 --- mala singh [EMAIL PROTECTED] wrote:
   Hi DBAs
  
   I have problem at time of full export of Database.The following are
 the
   error message at end of full export.
   EXP-8: ORACLE error 1403 encountered
   ORA-01403: no data found
   ORA-06512: at "SYS.DBMS_IJOB", line 450
   ORA-06512: at "SYS.DBMS_IJOB", line 482
   ORA-06512: at line 1
   EXP-0: Export terminated unsuccessfully
   Please help.
   Thanks in advance.
  
   -Mala
  
  
  

_
   Get Your Private, Free E-mail from MSN Hotmail at
   http://www.hotmail.com.
  
   --
   Please see the official ORACLE-L FAQ: http://www.orafaq.com
   --
   Author: mala singh
 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 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 information (like subscribing).
 
 
 =
 Rocky Welch
 Senior Consultant - Internet Services Group
 Arthur Andersen
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Rocky Welch
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 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 information (like subscribing).
 

_
 Get Your Private, Free E-mail from MSN Hotmail at
 http://www.hotmail.com.
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: mala singh
   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 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 information (like subscribing).


=
Rocky Welch
Senior Consultant - Internet Services Group
Arthur Andersen

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rocky Welch
  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 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 information (like subscribing).



Re: Help - Tuning SQL

2001-02-28 Thread Joseph S. Testa

Since you insisted on no guessing the only true test is for you to do
it.  Since we dont have your database to test it out on,

its time for you to bust out the documentation, look at explain plan,
tkprof,.


Happy testing.

joe

I've got some simple questions on tuning SQL. Please reply with
references,
I'm not looking for guesses.

*   If you have a SELECT statement with a WHERE clause and 2 AND
clauses, which one is processed first, the WHERE clause, the first AND
clause, or the second AND clause?
*   Is there any performance loss in using "" over "!="?

Michael Armstead
Database Administrator, OCP-Certified
Corporate  Finance Information Systems
Glaxo SmithKline

-- 
Joe Testa  http://www.oracle-dba.com
Performing Remote DBA Services, need some backup DBA support?
For Sale: Oracle-dba.com domain, its not going cheap but feel free to
ask :)
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Joseph S. Testa
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Dennis Taylor

At 12:41 PM 2/28/01 -0800, you wrote:
Hi Dennis,
  You must be on the west coast!  That was FUN!!  (I'm in the Seattle area,
but originally from Alaska, where earthquakes are 
considered to be more a form of entertainment than a major disaster.)  Did

Yeah, I'm in Vancouver BC. Actually it wasn't nearly as bad here as what I
hear happened in Seattle.

Inevitably after the quake was over, someone in our office started singing
"I feel the earth. move. under my feet...".

We let her live.



Dennis Taylor

Niels is bohring.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dennis Taylor
  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 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 information (like subscribing).



RE: OID questions

2001-02-28 Thread Nelson, Greg

Failover information in Oracle Internet Directory (OID) is entered like Net8
configuration information.  You can import the exact information that is in
your TNSNAMES.ORA into OID, so if you can code failovers in TNSNAMES.ORA you
can put it in OID as well.  So you would handle failovers using OID thru a
combination of how you set up your databases and Net8.
 
You will also want to make sure that you have a failover for the OID
database if you decide to use it.  If it is your connection server and it
isn't up clients obviously can't connect.  You can place failover options in
SQLNET.ORA and/or the LDAP.ORA file that is used by OID, such as having
multiple OID databases or Advanced Replication.
 
I have learned the hard way (not on MetaSlop) that OID is not available on
Parallel Server yet so thats not an option.
 
There is no concise or clear directions available that I know of to get OID
installed and working (at least from Oracle).  The steps to install and get
OID working are found not only in the OID manual.  They involve installing
OID from the Enterprise Edition CD under Management Infrastructure which
creates an OID database or populates one of your choosing, starting OID
services, using Oracle Directory Manager to create your particular LDAP
context (i.e. banknorth.com), Net8 Configuration Assistant for adding Oracle
Administration context under your context, and Net8 Assistant for adding
entries from TNSNAMES.ORA under your context.  Entries can also be bulk
loaded by Oracle scripts which I haven't done yet.  
 
Piecing it all together the first time took me a week because of the lack of
clear directions.  I documented it myself and then 2 months later did a
complete install on another server in an hour using my own documentation.
 
Migrating from Oracle Names would undoubtedly involve some different steps
(probably at my TNSNAMES import).  There will be an Oracle Names proxy in
9i.
 
After saying all this I believe it will all be worth it once it comes time
to cofigure hundreds of Oracle clients.  Also, since OID is an LDAP
directory it will have many other uses as well.  Its too bad that Oracle
couldn't have put together clear documentation on installing and using it
but that's nothing new.
 
Greg Nelson
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

-Original Message-
Sent: Wednesday, February 28, 2001 12:01 PM
To: Multiple recipients of list ORACLE-L



I'm considering the switch from Oracle Names to Oracle Internet Directory.
One feature I liked about names was the dynamic discovery. Does dynamic
discovery also work with OID? For example if one of my databases fails over
to another machine in it's cluster, the names server is automatically
updated by the listener as soon as the database starts up on the new
machine. Will that also happen with OID? If not, can it easily be scripted
(korn shell).

Also, is there a consicise, easy to follow reference, that tells you how to
add a database to OID so you can use OIS to resolve a name to it? I've gone
through the entire OID manual and found nothing on the subject.




  _  

Do You Yahoo!?
Yahoo! Mail Personal  http://personal.mail.yahoo.com/?.refer=mailiyfoot
Address - Get email at your own domain with Yahoo! Mail.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Nelson, Greg
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Maser, Donna (SEA)

Yes, actually, I was.  After that one, the rest were child's play!

-Original Message-
Sent: Wednesday, February 28, 2001 12:41 PM
To: Multiple recipients of list ORACLE-L


You must not have been in Anchorage in 64!


-Original Message-
Donna (SEA)
Sent: Wednesday, February 28, 2001 11:58 AM
To: Multiple recipients of list ORACLE-L


Hi Dennis,
  You must be on the west coast!  That was FUN!!  (I'm in the Seattle area,
but originally from Alaska, where earthquakes are 
considered to be more a form of entertainment than a major disaster.)  Did
you run to the computer room as soon as the aftershocks ceased?  Were the
machines all still in place?  If not, you have a problem.
Donna

-Original Message-
Sent: Wednesday, February 28, 2001 11:17 AM
To: Multiple recipients of list ORACLE-L


We just had an earthquake. I'm fairly freeked.

How's everyone's disaster recover strategy? I'll think I'll be reviewing
ours today.



Dennis Taylor

Niels is bohring.


The information contained in this email is intended for the
personal and confidential use of the addressee only. It may
also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received
this document in error and that any review, distribution or
copying of this document is strictly prohibited. If you have
received  this communication in error, please notify Celltech
Group immediately on:

+44 (0)1753 534655, or email '[EMAIL PROTECTED]'

Celltech Group plc
216 Bath Road, Slough, SL1 4EN, Berkshire, UK

Registered Office as above. Registered in England No. 2159282
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Maser, Donna  (SEA)
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Steve Orr
  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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Maser, Donna  (SEA)
  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 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 information (like subscribing).



RE: eek!

2001-02-28 Thread Maser, Donna (SEA)

  True, nothing fell on my head with this one.  I will admit that I no
longer am calling this one fun.
I ran home at lunch and found quite a bit of damage to the brick entryway.
Of course, no earthquake
insurance, talk about needing diasaster recovery!  I need a bigger bank
balance!

  Walt, were you in Fairbanks to go to school?  I attending the university
there around that same time.

- Donna


-Original Message-
Sent: Wednesday, February 28, 2001 1:09 PM
To: Multiple recipients of list ORACLE-L


I'd say the fun quotient is inversely proportional to the number of things
that fall on your head.

At least that was my experience in Fairbanks in 1976 when an earthquake
occured there...

--Walt Weaver
  Bozeman, Montana, USA




The information contained in this email is intended for the
personal and confidential use of the addressee only. It may
also be privileged information. If you are not the intended
recipient then you are hereby notified that you have received
this document in error and that any review, distribution or
copying of this document is strictly prohibited. If you have
received  this communication in error, please notify Celltech
Group immediately on:

+44 (0)1753 534655, or email '[EMAIL PROTECTED]'

Celltech Group plc
216 Bath Road, Slough, SL1 4EN, Berkshire, UK

Registered Office as above. Registered in England No. 2159282
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Maser, Donna  (SEA)
  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 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 information (like subscribing).



Union Views on InterMedia Indexed Tables

2001-02-28 Thread Jack C. Applewhite

I've discovered a workaround for an Oracle InterMedia Text
error.

Our platform: Oracle 8.1.6 on Windows2000

Our problem: We get the following errors when querying (with
a Contains() expression) a Union All View of
identically-structured tables, each with an InterMedia index
on the same CLOB column:

   ORA-2: interMedia Text error:
   DRG-10599: column is not indexed

Each table can be successfully queried alone or within a
Union All Select - just not when referenced in a view.

The solution is to create a Select * From Table View on
each individual table, then use those individual views in
the Union All view.  Bizarre, eh?  Yes, but it works.

It does not solve the problem of getting the same error
messages as above when using the Score() function in a query
that references the Union All view.  This is a problem for
us on  both 8.1.6 and 8.1.7.  BTW, 8.1.7 doesn't exhibit the
above-mentioned problem that we experience on 8.1.6.  8.1.7
just gives the error when you use the Score() function.

Hope this helps someone.

Jack


Jack C. Applewhite
Database Administrator/Developer
OCP Oracle8 DBA
iNetProfit, Inc.
Austin, Texas
www.iNetProfit.com
[EMAIL PROTECTED]

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Jack C. Applewhite
  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 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 information (like subscribing).



Unique index+null columns

2001-02-28 Thread Khedr, Waleed


If we have :
1- Table T1 (c1 char, c2 char) 
2- Unique index I1 on T1 (c1,c2)
3- Insert into T1 values (null,'A');

Oracle stores the above values in the index.

4- If we try to insert the same values (null,'A')
   we get an error that duplicates were detected.

The question is if Oracle can detect duplicates and enforce uniqueness using
the index and the above values,
why can't it use the index if need to query for the above values:

 select /*+ index(T1 I1) */ c2 from T1 where c1 is null and c2 = 'A';

I know all the confusion about nulls in the indexes but was looking for a
quick answer before i have to dump the indexes and spend hours on this.

Regards


Waleed




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Khedr, Waleed
  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 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 information (like subscribing).



OAS installation problem

2001-02-28 Thread Vinod Nagaraj

hi guys,

I installed OAS 4.0 on a NT server successfully.Then as per the post
installation tasks in the installation guide i followed the following
1) Rebooted the machine
2) connecting to the welcome page using
http://hostname.domain:port_number
3) Entered the node manager username and password to get the welcome
page

In the next step he says to bring up the OAS manager page and once
connected to the welcome page,click on the OAS manager icon

My problem is, i am not able to find OAS manager page or OAS manager
icon
pls can anyone guide me how to get this as i am new to this technology

vinod





begin:vcard 
n:Nagaraj;Vinod
tel;cell:303-332-7223
tel;work:720-962-4355
x-mozilla-html:FALSE
adr:;;
version:2.1
email;internet:[EMAIL PROTECTED]
fn:Vinod Kumar Nagaraj
end:vcard



Document Preparation for a table

2001-02-28 Thread Sanjay Kumar



Hi,


I am asked to prepare a document listing all 
possible suggestions for an effective tuningof a single 
table.

The table has five to six columns with one column 
having a Long Raw datatype.
The average row that gets into the database is 
about 1GB.

Could anyone give me possible 
suggestions?

I was planning to start from DB Block Size. I also 
thought of having 16 as the block size. 

I would like to know whether is this a good idea of 
having 16?

Sanjay


RE: Help - Tuning SQL

2001-02-28 Thread schmoldt

The Rule-based optimizer is influenced by the order of your WHERE statements
... it won't re-arrange them to improve performance.

If you're using the cost-based optimizer, I believe it will decide what
order to process the WHERE statement clauses, based on what it decides is
the most efficient access method.

Dave

 -Original Message-
 From: Armstead, Michael A [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 1:51 PM
 To: Multiple recipients of list ORACLE-L
 Subject: Help - Tuning SQL
 
 
 I've got some simple questions on tuning SQL. Please reply 
 with references,
 I'm not looking for guesses.
 
 * If you have a SELECT statement with a WHERE clause and 2 AND
 clauses, which one is processed first, the WHERE clause, the first AND
 clause, or the second AND clause?
 * Is there any performance loss in using "" over "!="?
 
 Michael Armstead  
 Database Administrator, OCP-Certified
 Corporate  Finance Information Systems
 Glaxo SmithKline
 
 
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Armstead, Michael A
   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 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 information (like subscribing).
 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



Re: Oracle's Updates Subscription Service

2001-02-28 Thread Sarah Satterthwaite

Walt,

Last summer we noticed our support bill was split into two pieces--one for support and 
one for upgrades.  You can still buy both.  I didn't notice that it was a lot more in 
total than before, but it does give a cost cutter a chance to say we only need one of 
those pieces!

Sarah Satterthwaite
Case, Shiller, Weiss, Inc
Cambridge, MA

"Weaver, Walt" wrote:
 
 Say, is it just me or has the cost of the Updates Subscription Service gone
 up considerably in the past six months or so?
 
 We're currently pricing out what it'll cost us to purchase 8.1.7 Standard
 Edition and the numbers we're getting are a heck of a lot higher than they
 were in November.
 
 Has the cost of CD-ROM's gone up that much? Is the economy now in an
 inflationary period? Where's Allen Greenspan when you need him?
 
 Whatever happened to those hazy, golden, halcyon days when upgrades were
 included in product support?
 
 Sometimes, Oracle just sucks. I'm seriously considering getting on track for
 a MySQL certification.   :)
 
 --Walt Weaver
   Bozeman, Montana, USA
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Weaver, Walt
   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 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 information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Sarah Satterthwaite
  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 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 information (like subscribing).



instance resource allocation

2001-02-28 Thread grant . g . holyoake

Group,

being fairly new to Oracle (and this list) I have what I consider (and
others may dare to differ) a valid question(running with 8i on Solaris
2.6)

How do you manage the division of resources between 2 instances located on
the same host?

We have two oracle 8i instances (and a number of other applications)
running on the same server.  One in particular is drastically hogging the
bulk of the server resources thus impeding the performance of the other
instance and related applications

As far as memory conflicts go, we're running an ad hoc query system on one
instance, which means it can get resource hungry and can only be
tuned/designed to an extent.  The issue is that the resources it can grab
should be limited, so they don't eat into a minimum resource allocation
that the other instance should get.

I am not aware of a way to use the DBMS_RESOURCE_MANAGER across two
instances.  Is there anything we can do here?  I'm not sure how we specify
how the two instances relate in terms of resourcesperhaps something in
the init.ora file?

Our Oracle environment resides on an exclusive E10K domain with 4 dedicated
(400mhz) processors, 4GB RAM.

TIA
Grant

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  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 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 information (like subscribing).



Standby database question

2001-02-28 Thread Joseph S. Testa

So my standby is in managed recovery mode.

i was curious internally how does oracle send the archive logs across
from primary to standby machine(they are physically separate).

i know it goes via net8, does it do some internal fopen to write it out
and apply it, or am i way out in left field here.

thanks, joe

-- 
Joe Testa  http://www.oracle-dba.com
Performing Remote DBA Services, need some backup DBA support?
For Sale: Oracle-dba.com domain, its not going cheap but feel free to
ask :)
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Joseph S. Testa
  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 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 information (like subscribing).



Re: Table Storage Estimates

2001-02-28 Thread Yustiono

I think you can partition the table. It would not change the logical
database design (so, your application will not see the difference).

Based on you numbers, it is very possible that row chaining and migration
exist. Follow the steps I passed to you earlier.

My suggestion:
1. Recreate database with larger database block size, if it is possible, or
at least
2. Reduce the PCTFREE from its default.
3. Partition table if possible
4. Follows these common practices:
- Separate tables and their indexes on different disks.
- Separate online redo log files and archived log files on separate disks to
avoid contention between LGWR and ARCn.
- Separate online redo log files and datafiles on separate disks to avoid
contention between LGWR and DBWn.
- Locally-managed tablespaces can reduce fragmentation (for other than
SYSTEM tablespace)


- Original Message -
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Thursday, March 01, 2001 12:46 AM


 Thanks all for the solution. I too thought of having a 1 : 1 relationship
by
 separating the long raw column from the table. But I believe I am not
 permitted to do that (Strange). Since this is a third party product, I
 am not suppose to change any of the design issues and also the datatype.

 I believe row chaining is obvious in this situation. Also the average row
 length is 10M. The size of the database block size is 8.

 When I queried the dba_extents to find the number of blocks that have been
 occupied, it showed 16620 and the number of rows are 113.

 I am totally confused now. Any help greatly appreciated.

 Sanjay


 - Original Message -
 To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
 Sent: Wednesday, February 28, 2001 12:46 AM


 Your estimate comes to around 1 row per block.
 What is the average row lenght once data is in the db
 ? Do you have row chaining ?

 What is your block size ? Can you increase it ?

 If a lot of queries do not need the long raw column
 you can put it in another table with a 1 to 1
 relationship with the parent table.

 If your planning to have 200 rows of 1 block each, I
 do not understand why you are adding datafiles as the
 data should not occupied more than 3200K if you
 blocksize is 16K. Increase the size of the initial
 datafile instead of adding new ones.

 --- Sanjay Kumar [EMAIL PROTECTED] a crit : 
 Hi,
 
  I have a table which has a structure similar to the
  following.
 
  MID NOT NULL
  VARCHAR2(24)
  NAME
  VARCHAR2(512)
  PRIORITY
  NUMBER(38)
  PERSISTENT
  CHAR(1)
  EXP_DATE
  DATE
  BODY
  LONG RAW
 
 
  I estimated the table storage for this table using
  the formula given in the Oracle documentation. It
  comes to around 1 rows per block.
 
  It is estimated that the number of rows for this
  table will not exceed 200.
 
  My questions are
 
  1. Doesnt this lead to fragmentation.?
  2. I have added three datafiles to this tablespace
  as of now and it seems like this might require more
  space. How do I effectively redesign this
  table to avoid contention and chaining?
 
  3. Moreover, initially when there were 105 rows
  inserted, I issued a count(*) and it took about 5
  minutes? How do I reduce the time taken to execute
  the query?
 
 
  I would highly appreciate if someone comes forward
  to help me on this.
 
  I am using Oracle 8.1.6 on Solaris
 
  Sanjay
 
 
 


 =
 Stephane Paquette
 DBA Oracle
 [EMAIL PROTECTED]

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: =?iso-8859-1?q?paquette=20stephane?=
   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 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 information (like subscribing).

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Sanjay Kumar
   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 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 information (like subscribing).


-- 
Please see the 

Re: Oracle's Updates Subscription Service

2001-02-28 Thread Michael Netrusov

Does anyone know  - will I still have access to Metalink if I will not pay for the 
support? 

TIA, 
Michael Netrusov, 
www.atelo.com 
(202) 262 8469
(877) 528 0090


- Original Message - 
To: "Multiple recipients of list ORACLE-L" [EMAIL PROTECTED]
Sent: Wednesday, February 28, 2001 20:20


 Cool, thanks for the info Sarah, I hadn't seen that split.  I'll check it
 when I get our next bill.  I will be glad to be able to only pay for
 upgrades which I use, and not the support, which I have not used in over 5
 years.
 
 
 
 -Original Message-
 Sent: Wednesday, February 28, 2001 5:00 PM
 To: Multiple recipients of list ORACLE-L
 
 
 Walt,
 
 Last summer we noticed our support bill was split into two pieces--one for
 support and one for upgrades.  You can still buy both.  I didn't notice that
 it was a lot more in total than before, but it does give a cost cutter a
 chance to say we only need one of those pieces!
 
 Sarah Satterthwaite
 Case, Shiller, Weiss, Inc
 Cambridge, MA
 
 "Weaver, Walt" wrote:
  
  Say, is it just me or has the cost of the Updates Subscription Service
 gone
  up considerably in the past six months or so?
  
  We're currently pricing out what it'll cost us to purchase 8.1.7 Standard
  Edition and the numbers we're getting are a heck of a lot higher than they
  were in November.
  
  Has the cost of CD-ROM's gone up that much? Is the economy now in an
  inflationary period? Where's Allen Greenspan when you need him?
  
  Whatever happened to those hazy, golden, halcyon days when upgrades were
  included in product support?
  
  Sometimes, Oracle just sucks. I'm seriously considering getting on track
 for
  a MySQL certification.   :)
  
  --Walt Weaver
Bozeman, Montana, USA
  --
  Please see the official ORACLE-L FAQ: http://www.orafaq.com
  --
  Author: Weaver, Walt
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 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 information (like subscribing).
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Sarah Satterthwaite
   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 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 information (like subscribing).
 
 
 The information contained in this email is intended for the
 personal and confidential use of the addressee only. It may
 also be privileged information. If you are not the intended
 recipient then you are hereby notified that you have received
 this document in error and that any review, distribution or
 copying of this document is strictly prohibited. If you have
 received  this communication in error, please notify Celltech
 Group immediately on:
 
 +44 (0)1753 534655, or email '[EMAIL PROTECTED]'
 
 Celltech Group plc
 216 Bath Road, Slough, SL1 4EN, Berkshire, UK
 
 Registered Office as above. Registered in England No. 2159282
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Maser, Donna  (SEA)
   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 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 information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Michael Netrusov
  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 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 

standby database question - solved

2001-02-28 Thread Joseph S. Testa

never mind, i found it, the RFS(remote file server)  process handles it.

joe

-- 
Joe Testa  http://www.oracle-dba.com
Performing Remote DBA Services, need some backup DBA support?
For Sale: Oracle-dba.com domain, its not going cheap but feel free to
ask :)
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Joseph S. Testa
  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 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 information (like subscribing).



RE: Unable to create new user. Please help!!

2001-02-28 Thread Rahul

you have to do an "alter user quota unlimited on tablespace users;"

or do a "grant unlimited tablespace to test;"

HTH

rahul


 --
 From: Kelly Ng Huey Ching[SMTP:[EMAIL PROTECTED]]
 Reply To: [EMAIL PROTECTED]
 Sent: Thursday, March 01, 2001 10:50 AM
 To:   Oracledba@Lazydba. Com (E-mail)
 Subject:  Unable to create new user. Please help!!
 
 Hi,
   I tried to create a new user, however failed. Can someone please
 tell me
 where did I do wrong from the followuing senario:
 
 CREATE USER test
 identified by test
 default tablespace USERS.
 
 USER created
 
 GRANT  create session, create table to test.
 
 privileges granted
 
 when i log-on using test and try to execute the following command to
 create
 a new table:
 
 create table animal(
 id_no numebr(10)  primary key,
 tank_no   number(10),
 animal_name   varchar2(30)
 ) tablespace users;
 
 error at line 1:
 ora-09150: no privileges on tablespace 'USERS'
 
 Regards,
 Kelly
 
 
 
 Think you know someone who can answer the above question? Forward it to
 them!
 to unsubscribe, send a blank email to [EMAIL PROTECTED]
 to subscribe send a blank email to [EMAIL PROTECTED] 
 Visit the list archive: http://www.LAZYDBA.com/odbareadmail.pl
 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rahul
  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 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 information (like subscribing).



exsessive paging - from v$sysstat

2001-02-28 Thread Rahul

taking this thread further..
if we check the sysstat # 203,204

OS Page faults  
OS Swaps

how accurate OS paging statistics these parameters would provide ?

regards


 --
 From: JAGAN RAO[SMTP:[EMAIL PROTECTED]]
 Sent: Wednesday, February 28, 2001 1:26 PM
 To:   'Rahul'
 Subject:  RE: exsessive paging, which ora process ?
 
 File: topuser.txtFile: dub_kill_defunct.txt
 Ps -ef | sort -nr -k8,8 is a quick command to get cpu hoggers in sorted
 order.
 
 Go through the attached script and customize for your needs.
 
  topuser.txt 
  dub_kill_defunct.txt 
 
   -Original Message-
   From:   Rahul [SMTP:[EMAIL PROTECTED]]
   Sent:   Wednesday, February 28, 2001 7:51 AM
   To: 'JAGAN RAO'
   Subject:RE: exsessive paging, which ora process ?
 
   jagan, yes i did exactly the same... added another paging space
   and the things were ok. now i want to investigate from oracle 
   and identify the hog process
 
   thanks
 
   PS: we have 1GB RAM.. and the paging space was 1GB also... now we
 have
   increased
   to 2GB... ... 
 
--
From: JAGAN RAO[SMTP:[EMAIL PROTECTED]]
Sent: Wednesday, February 28, 2001 10:50 AM
To:   'Rahul'
Subject:  RE: exsessive paging, which ora process ?


Can you log in as root from console?

If yes, did you try to increase the paging space as a temporary
 measure.
Once things are under control, you can disable the extra paging
 space and
get back the space during the next reboot.

Warm regards,
Jagan Rao.

  -Original Message-
  From:   Rahul [SMTP:[EMAIL PROTECTED]]
  Sent:   Tuesday, February 27, 2001 1:41 PM
  To: 'Oracle List I'; 'Oracle List II'
  Subject:exsessive paging, which ora process ?

  List,
  our AIX suddenly stpped responding... and we had to kill
 some of the
  oracle (LOCAL=NO) processes to return the system back to
 normal...

  apparently the paging space filled up..and OS was unable to
 create
any more
  proceses

  is there any way to know which oracle process is responsible
 for
exsessive
  paging ?
  
  regards
  rahul


  
  Think you know someone who can answer the above question?
 Forward it
to them!
  to unsubscribe, send a blank email to
[EMAIL PROTECTED]
  to subscribe send a blank email to
 [EMAIL PROTECTED] 
  Visit the list archive:
 http://www.LAZYDBA.com/odbareadmail.pl

 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rahul
  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 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 information (like subscribing).



Revoke system privilege from user

2001-02-28 Thread Chuan Zhang

Hi, All,

I have granted DBA role to an user. But I don't want him  holding the
"Drop Any Table" system privilege.

I did as follows:

1. Connect as sysdba.
2. revoke drop any table from ABC-user;

And I got the error:" ORA-01952: system privileges not granted to
'ABC-user'".

Could anyone help me out?

Thanks,

Chuan


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Chuan Zhang
  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 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 information (like subscribing).