pls-00123 - Program too Large

2001-07-16 Thread Imma C. Rocco
We have a tool (an own-made pl/sql code generator) whose purpose is to generate a PL/SQL Package containing one pls function for each Table/View that has been configured in a specific repository table. Depending on the number of table/view configured the package dimension grows. Compiling one

Re: Naming Standards - Thoughts Needed

2001-07-16 Thread G . Plivna
You can find a little bit how it is in our organization http://www.itsystems.lv/gints/eng/naming_conventions.htm Gints Plivna Tracy

RE: pls-00123 - Program too Large

2001-07-16 Thread Shevtsov, Eduard
Hi Imma, This error is concerned with number of Diana nodes (PL/SQL internals) and some other internal restrictions of PL/SQL machine. There is no direct relationship between appearance of PLS-00123 and size of the package. You can find 2 or 3 good notes on Metalink that explain the limitations

offline - Dynamic SQL doubt...

2001-07-16 Thread Arul kumar
Hi, I want to call a procedure dynamically which returns a pl/sql table (OUT Parameter). This is the package where the procedure is defined. == create or replace package body pk1 as procedure proc1(no number, pltab out dbms_sql.varchar2_table) as tempdate

RE: pls-00123 - Program too Large

2001-07-16 Thread Christian Trassens
Probably the problem is with the DIANA dependencies of the object that is limited to about 64k. However the compiled version of the object called m-code has been increasing over the releases. Therefore this also could be a problem the chances here are less than the DIANA thing. Exactly look for

Temp

2001-07-16 Thread Djaroud Salim
hi every body, I have a user with no quota on it's temporary tablespace. is it normal -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Djaroud Salim INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California

Re: Temp

2001-07-16 Thread Arul kumar
Hi Salim, I believe quota will appear only if he has been GRANTed some quota explicitly. If he has been granted as CREATE USER .. TEMPORARY TABLESPACE ts then quota wont appear in DBA_TS_QUOTAS Hope this may help. Regards, Arul. Djaroud Salim wrote: hi every body,

RE: Naming Standards - Thoughts Needed

2001-07-16 Thread Lord, David - CS
IMHO the reason for prefixes/postfixes is so that dependent objects can be given a more 'natural' name, that relates it to the object it depends on. Therefore T_ is redundant because tables don't depend on anything, but V_, T_ etc _may_ not be. Similarly, in pl/sql, you often want a procedure

Any idea about DIANA in Oracle...??

2001-07-16 Thread Arul kumar
Hi DBAs, I have seen some packages / procs.. getting created with DIANA as names while executing CATALOG / CATPROC scripts. Does anyone have idea about it? What is special(!) about it?? Thank You. Arul. * Disclaimer This message

RE: pls-00123 - Program too Large

2001-07-16 Thread Shevtsov, Eduard
Hi Christian, Didn't they remove their limitation on 64K ? I don't have access to Metalink now, can't look at the notes. Probably the problem is with the DIANA dependencies of the object that is limited to about 64k. However the compiled version of the object called m-code has been

RE: Temp

2001-07-16 Thread GL2Z/ INF DBA BENLATRECHE
Hi Content d'avoir de tes nouvelles From Oracle Documentation (Server Concept) , there is no effect of quotas on temporary segments. -Message d'origine- De : Djaroud Salim [mailto:[EMAIL PROTECTED]] Envoyé : lundi 16 juillet 2001 09:00 À : Multiple recipients of list ORACLE-L Objet :

Re: Temp

2001-07-16 Thread Shreepad Vaidya
HI, If I am not mistaken ,there is no concept of granting Quotas on the temporary tablespaces (Only on default tablespaces). The temporary tablespace is managed by Oracle for sorting data ( if memory sort is not possible). Hope this helps. shreepad To: Shreepad

OEM - SMTP (urgent)

2001-07-16 Thread Ajay Singh Rathore
Hi, I am using OEM 2.2.3 on window NT client 4.0 service pack 3.0 and database 8.1.5. platform HP-UX 11. I already configure SMTP gateway and when I test this gateway through Preferences- Notification, the test failed.Outlook mail is working on that machine( window NT). I need help in

Re: Last Update

2001-07-16 Thread Shreepad Vaidya
Hi Erik, Check out the dba_objects tables. There is a column called as Last_ddl_time , which will give the ddl time. But if you want to capture select,insert,delete,update times ? I guess you will have to write trigger and capture the times. HTH shreepad

Re: User Memory

2001-07-16 Thread Shreepad Vaidya
Hi, We had this one recently on the list. 1) This could also be caused if the user is able to change his session level sort_area_size. alter session set sort_area_size=size in mb ; 2) Check if the users have alter session privilege . Revoke this privilege. 3) Check if

RE: Temp

2001-07-16 Thread INF/MEKKAOUI
hi, Moi aussi, je suis ravie . Best Regards, Nabila Mekkaoui DBA Oracle -Message d'origine- De : GL2Z/ INF DBA BENLATRECHE [mailto:[EMAIL PROTECTED]] Envoyé : lundi 16 juillet 2001 09:46 À : Multiple recipients of list ORACLE-L Objet : RE: Temp Hi Content d'avoir de tes nouvelles

RE: Naming Standards - Thoughts Needed

2001-07-16 Thread Stephane Faroult
IMHO the reason for prefixes/postfixes is so that dependent objects can be given a more 'natural' name, that relates it to the object it depends on. Therefore T_ is redundant because tables don't depend on anything, but V_, T_ etc _may_ not be. Similarly, in pl/sql, you often want a

Re: Temp

2001-07-16 Thread Stephane Faroult
hi every body, I have a user with no quota on it's temporary tablespace. is it normal -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Djaroud Salim INET: [EMAIL PROTECTED] It is normal. You do not need quotas on temporary tablespaces. You need quotas

Unix/NFS/NT question

2001-07-16 Thread paquette stephane
Hi, On one system, while moving backup files from unix to NT via NFS (yep state of the art backup strategy) we had this message : mv: cannot unlink /SvgUnix/Oracle/Svg_J/ora_DWPQ/database/bowebi_doc_data03.dbf.Z: No such file or directory The file is still on the unix box, all the other files

Re: Any idea about DIANA in Oracle...??

2001-07-16 Thread Christian Trassens
The notes I've sent for the PLS 123 give you a briefly idea of DIANA. However DIANA is an acronym of Descriptive Intermediate Notation for ADA. And is an intermedia language and uses the IDL tables for saving the structure of tables and logic of PL/SQL program units. In other words, is the

Re: Last Update

2001-07-16 Thread Christian Trassens
alter table monitoring. --- Shreepad Vaidya [EMAIL PROTECTED] wrote: Hi Erik, Check out the dba_objects tables. There is a column called as Last_ddl_time , which will give the ddl time. But if you want to capture select,insert,delete,update times ? I guess you will have to write

RE: pls-00123 - Program too Large

2001-07-16 Thread Christian Trassens
Better than my wordsthe notes themself: Doc ID: Note:99882.1 Type: BULLETIN Status: PUBLISHED Content Type: TEXT/PLAIN Creation Date: 23-FEB-2000 Last Revision Date: 13-JUN-2000 Overview This article provides an overview of PL/SQL size limits for the 8.1.x

offline- Returning pl/sql table from a proc. dynamically..

2001-07-16 Thread Arul kumar
Hi, I want to return a PL/SQL Table dynamically from a pl/sql procedure dynamically. Here , is the package which has the procedure : create or replace package body pk1 as procedure proc1(no number, pltab out dbms_sql.varchar2_table) as tempdate date; begin

Re: Any idea about DIANA in Oracle...??

2001-07-16 Thread Shreepad Vaidya
Hi, This is what i have gleaned from the previous discussions on the list. As to what is actually inside these tables, here's a related extract from the PL/SQL docs: PL/SQL is based on the programming language Ada. As a result, PL/SQL uses a variant of Descriptive Intermediate Attributed

Analyze

2001-07-16 Thread Smith, Ron L.
I have an Analyze Schema running once a week for a 35G instance. The Analyze is taking about 9 hours. This is too long. What is the opinion on doing an Analyze on a percentage of the data? 20%? 40%? Ron Smith -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Smith,

No Subject

2001-07-16 Thread Eca Eca
Hi friends : How to calculate the parameters : Shared_pool_size, db_block_buffer, sort_area_size of Database for : 50 session simultaneous 512 MB ram Linux Regards. _ Get Your Private, Free E-mail from MSN Hotmail at

test message

2001-07-16 Thread viraj
please ignore

RE: A lazy connection!

2001-07-16 Thread Kevin Kostyszyn
I believe that you could try and change the settings in the sqlnet.ora file on the server side, SQLNET EXPIRE_TIME = 0. This may help:) KK -Original Message- [EMAIL PROTECTED] Sent: Monday, July 16, 2001 2:50 AM To: Multiple recipients of list ORACLE-L We have a network that have

test message - please ignore

2001-07-16 Thread Viraj Luthra
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Viraj Luthra INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California-- Public Internet access / Mailing Lists

Re: Analyze

2001-07-16 Thread Christian Trassens
On 8i, use DBMS_STATS that you can do it in parallel except for the indexes. You need to put as argument a degree1. Also beware of the method_opt. Because the default is 'FOR ALL COLUMNS SIZE 1'. Regards. --- Smith, Ron L. [EMAIL PROTECTED] wrote: I have an Analyze Schema running once a week

RE: A lazy connection!

2001-07-16 Thread Christian Trassens
Beware that SQLNET.EXPIRE_TIME=0 doesn't activate this feature. Is the same that set it with huge value. Regards. --- Kevin Kostyszyn [EMAIL PROTECTED] wrote: I believe that you could try and change the settings in the sqlnet.ora file on the server side, SQLNET EXPIRE_TIME = 0. This may

RE: Analyze

2001-07-16 Thread Shevtsov, Eduard
It seems you use 'compute' option of analyze command. Try to use 'estimate' with about 45% sample of data and then check whether the plans are still unchanged. This solution may decrease the time you spend on analyzing but usually keeps the precision of statistics. Regards, Ed I have an

Tracing

2001-07-16 Thread Libal, Ivo
Hello I would like to start tracing for different session than my one. How it is possible in 8.1.7 EE? I want to start tracing for different sessions with different levels (not necessary diff. levels). I found that it should be possible with dbms_support package, but i didnt find this

No Subject

2001-07-16 Thread Libal, Ivo
Hello I would like to start tracing for different session than my one. How it is possible in 8.1.7 EE? I want to start tracing for different sessions with different levels (not necessary diff. levels). I found that it should be possible with dbms_support package, but i didnt find this package

Re: Last Update

2001-07-16 Thread Arul kumar
Hi, but in my 8.1.7 db. (on SOLARIS), NO ROWS SELECTED when queried DBA_TAB_MODIFICATIONS... Any init parameters to be enabled?? Arul. Christian Trassens wrote: However you can query the view dba_tab_modifications for checking when and how many

RE: A lazy connection!

2001-07-16 Thread Koivu, Lisa
Title: RE: A lazy connection! Are any profiles implemented? I believe that's the error I get when a profile has kicked me out. Lisa Koivu Data Bored Administrator Ft. Lauderdale, FL, USA -Original Message- From: Kevin Kostyszyn [SMTP:[EMAIL PROTECTED]] Sent: Monday, July 16,

Re: A lazy connection!

2001-07-16 Thread Admin . ISISAFBX01 . IS
There is not any profile defined, except default profile. There is a problem only for the computers that has an acces with leased line. There is other computers that has an acces using a local network and everything is OK here. -Original Message- To: '[EMAIL PROTECTED]' [EMAIL PROTECTED];

Re: Tracing

2001-07-16 Thread Vladimir Begun
On Jul 16, 2001 at 06:45:36AM, Libal, Ivo wrote: Hello I would like to start tracing for different session than my one. How it is possible in 8.1.7 EE? I want to start tracing for different sessions with different levels (not necessary diff. levels). I found that it should be possible

Re: rman question

2001-07-16 Thread Ruth Gramolini
You should backup all of the archivelogs if you are going to delete them and maybe even if you are not. The redo logs contain data which is already in the database when the backup is made so you don't need to back them up. In my scripts I always to an 'archive log current' and backup all of

RE: Last Update

2001-07-16 Thread Mark Leith
If you have just set a table as monitoring (and have no other tables already set for this option), then you may not actually see any rows in this table for a while. The one downfall with this option (if you want/need real time info) is that this table may not update for some time after the

RE: A lazy connection!

2001-07-16 Thread Jenkins, Michael
My first suspicion would be a firewall; check with your network people. I would set the sqlnet.expire time to ten minutes to keep the firewall from kicking idle sql*net connections. --Michael -Original Message- [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 11:12 AM To:

Re: Last Update

2001-07-16 Thread Christian Trassens
Andthen wait because the SMON updates it every three hours or after an startup. Regards. PS: Even that you can manually wakeup the SMON through oradebug wakeup orapid of SMON --- JOE TESTA [EMAIL PROTECTED] wrote: you have to turn monitoring on for each table. alter table tablename

Re: Tracing

2001-07-16 Thread Christian Trassens
Or with oradebug: oradebug setospid OS PID oradebug event 10046 trace name context forever, level 4,8,12 --- Vladimir Begun [EMAIL PROTECTED] wrote: On Jul 16, 2001 at 06:45:36AM, Libal, Ivo wrote: Hello I would like to start tracing for different session than my one. How it is

Re: Tracing

2001-07-16 Thread Vladimir Begun
On Jul 16, 2001 at 07:12:00AM, Vladimir Begun wrote: On Jul 16, 2001 at 06:45:36AM, Libal, Ivo wrote: Hello I would like to start tracing for different session than my one. How it is possible in 8.1.7 EE? I want to start tracing for different sessions with different levels (not

Re: Tracing

2001-07-16 Thread Christian Trassens
Here you have: --- Libal, Ivo [EMAIL PROTECTED] wrote: Hello I would like to start tracing for different session than my one. How it is possible in 8.1.7 EE? I want to start tracing for different sessions with different levels (not necessary diff. levels). I found that it should

OT RE: ONS Install - my life is at an end

2001-07-16 Thread Mohan, Ross
My best advice to you is to ignore me, because I am a Stegosaurus standing in the shadow created by an enormous asteriod about to land in the ocean, creating a marine volcano, the downline effect of which will be to obliterate all sunlight on the planet for decades driving the plant life to

Re: Tracing

2001-07-16 Thread Srini . Chavali
Ivo, See Metalink Note 1058210.6 for more details on ORADEBUG. HTH Srini Chavali Oracle DBA Cummins Inc Libal, Ivo [EMAIL PROTECTED]@fatcity.com on 07/16/2001 09:45:36 AM Please respond to [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L [EMAIL

RE: A lazy connection!

2001-07-16 Thread Christian Trassens
I meant that if you want to use expire_time feature, you'll need to set it with a value greater than 0. Remember that the value is in minutes. F.e.: SQLNET.EXPIRE_TIME=20 .means that every twenty minute SQL*Net or Net8 polls each connection SQLNET.EXPIRE_TIME=0.means that SQL*NET or

RE: Tracing

2001-07-16 Thread Ramasamy, Baskar
Best option would be turn on the sql_trace and timed_statistice parameter in init.ora and re-start the database. But makes ure you have enought space to write trc files in OS Baskar -Original Message- Sent: 16 July 2001 16:12 To: Multiple recipients of list ORACLE-L On Jul 16, 2001

RE: A lazy connection!

2001-07-16 Thread Christian Trassens
My first about this was about the SQLNET.EXPIRE_TIME and I didn't look the first mail. And referring to the question in that mail: there are two ways to forbid the connection through TCP: protocol.ora file or Connection Manager. Regards. --- Jenkins, Michael [EMAIL PROTECTED] wrote: My first

Re: 8.1.6.1 on redhat, startup nomount hangs, alert.log shows NO ERRO

2001-07-16 Thread Jared Still
Which version of glibc is on RH 7.0? If 2.2, you will need to apply a patch from Oracle. Aslo, I don't believe RH is a supported platform. Jared On Monday 16 July 2001 04:20, Rahul wrote: List, i'm trying to create a new instance of 8.1.6.1 on linux (red hat 7.0) the installation goes

RE: Tracing

2001-07-16 Thread Koivu, Lisa
Title: RE: Tracing Don't do this blindly. Turning sql_trace = TRUE on for the entire database will decrease performance. And it goes without saying do NOT do this in production! Session level tracing is more appropriate. Lisa Koivu Data Bored Administrator Ft. Lauderdale, FL, USA

RE: OT RE: ONS Install - my life is at an end

2001-07-16 Thread Kevin Kostyszyn
Oh it would only be cloudy for a couple of months, but yeah, your as_ would be dead:) -Original Message- Sent: Monday, July 16, 2001 11:52 AM To: Multiple recipients of list ORACLE-L My best advice to you is to ignore me, because I am a Stegosaurus standing in the shadow created by an

RE: A lazy connection!

2001-07-16 Thread Kevin Kostyszyn
I was under the impression that setting it to zero meant that the connnections would wait indefinately. Like when I was receiving end of file on communication errors setting it to 0 was suggested. KK -Original Message- Trassens Sent: Monday, July 16, 2001 11:46 AM To: Multiple

RE: Tracing

2001-07-16 Thread JOE TESTA
and dont do it and try to do an upgrade(which sql_trace=true) , a simple 1 hour upgrade ran like 16 hours, had me stumped for a while, thankfully the upgrade scripts can be run multiple time with no impact :) joe [EMAIL PROTECTED] 07/16/01 12:00PM Don't do this blindly. Turning sql_trace

RE:

2001-07-16 Thread Eca Eca
Friend : The database will be used with : - java applications accessing - on line transactions by internet - procedures schedulled ( a lot ) - pages getting data from internet Eriovaldo From: Koivu, Lisa [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Multiple recipients of list ORACLE-L

Re: Script to report rman backup

2001-07-16 Thread Ruth Gramolini
I am using rman on UNIX so I am not sure how it works for NT. The rman log will have this information. You can spool it to disk. HTH, Ruth --- Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Monday, July 16, 2001 11:20 AM Hi Does anyone have any

Close Implicit Cursors??

2001-07-16 Thread Apps Sol
Hello , In one of our applications , we have many open implicit cursors from Oracle Applications jobs .. is there any way to close them? We are running out of the max value for opened cursor parameter in init file and we are also have some performance issue with this one !!! Any ideas ??

RE: A lazy connection!

2001-07-16 Thread Jenkins, Michael
A setting of zero tells the server to never poll the connections and verify that they are active. This allows firewalls and various other middlemen to terminate inactive connections based on the fact that there is no sql*net traffic coming through the network. By setting it to anything other

RE: Naming Standards - Thoughts Needed

2001-07-16 Thread MacGregor, Ian A.
IMHO the reason for prefixes/postfixes. Postfixes ? Agggh! Is this technical term? What's wrong with suffixes. Ian MacGregor Stanford Linear Accelerator Center [EMAIL PROTECTED] -Original Message- Sent: Monday, July 16, 2001 2:21 AM To: Multiple recipients of list

RE: Tracing

2001-07-16 Thread Unal Bilisim
Hello list, Following link explains all issues on sql/event10046 traces: http://www.unal-bilisim.com/products/itrprof/itrprof_user_manual.html#sql_trace 16/7/01 07:10:35, JOE TESTA [EMAIL PROTECTED] wrote: and dont do it and try to do an upgrade(which sql_trace=true) , a simple 1

UNIX

2001-07-16 Thread Richard Huntley
Is anyone familiar with how to grab space in one file system and allocate it to another? For example, if file system /u03 is at 3% and /u06 is at 80%, how can I grab space from the /u03 file system and allocate to /u06?? TIA, Richard Huntley -- Please see the official ORACLE-L FAQ:

private/public rollbacks

2001-07-16 Thread lhoska
Hi List, Who can tell me what advantages/disadvantages of having private rollback segments versus public rollback segments? Thank you. Lyuda Hoska -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: [EMAIL PROTECTED] Fat City Network Services-- (858)

RE: 7.3.4 Support

2001-07-16 Thread Page, Bruce
12/31/00 -Original Message- Sent: Monday, July 16, 2001 2:00 PM To: Multiple recipients of list ORACLE-L Can anyone tell me when Oracle officially ceased providing support for 7.3.4? Thanks, Jeff T [EMAIL PROTECTED] -- Please see the official ORACLE-L FAQ:

RE: UNIX

2001-07-16 Thread William Rogge
It really depends on what you are trying to accomplish. You can always create a symbolic link on /u06 pointing to an item on /03. -Original Message- From: Richard Huntley [SMTP:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 1:45 PM To: Multiple recipients of list ORACLE-L

7.3.4 Support

2001-07-16 Thread Thomas Jeff
Title: 7.3.4 Support Can anyone tell me when Oracle officially ceased providing support for 7.3.4? Thanks, Jeff T [EMAIL PROTECTED]

RE: Oracle Applications Forum

2001-07-16 Thread John Kanagaraj
Hi Rukmini, Is there any forum or mailing list for Oracle Applications? Didn't see any replies so here you go... http://www.oaug.org/public/oaugnet/oaugnet.html for Oracle Applications (functional/technical) http://www.oaug.org/public/oaugnet/oaugnet.html for Oracle Applications DBAs

UNIX mailx

2001-07-16 Thread Yigal Ran
Does any one know if it is possible to attach a file when using mailx to send an email? TIA Yigal Get free email and a permanent address at http://www.amexmail.com/?A=1 -- Please see the official ORACLE-L FAQ:

Re: private/public rollbacks

2001-07-16 Thread Christian Trassens
Basically public rollback segment are used on OPS. They don't need to be in init.ora and are public for all the instances. Although it can be used on non-parallel servers. I heard about bugs using it on non-OPS while I was using 7.X. However I don't know nothing about problems on 8.X. Regards.

Re:7.3.4 Support

2001-07-16 Thread dgoulet
As far as I can remember I believe they cut it off in June of last year. Sorry, I've been on 8.x since mid 99. Dick Goulet Reply Separator Author: Thomas Jeff [EMAIL PROTECTED] Date: 7/16/2001 10:00 AM Can anyone tell me when Oracle officially

Re:private/public rollbacks

2001-07-16 Thread dgoulet
Lyuda, The chief advantage of private rollback segments is that you can take them offline if/when needed. A public rollback segment is online always consequently making it impossible to get out of the way of batch processes or doing any kind of maintenance on, unless your in restricted

Re: UNIX

2001-07-16 Thread William Beilstein
What are you trying to do? If you need more space in a tablespace, you can create a datafile on /u03. If you actually need additional space on /u06, you will need to manage your drives with a DISK/Volume management software such as DiskSuite on Solaris. [EMAIL PROTECTED] 07/16/01 01:45PM

Re: 7.3.4 Support

2001-07-16 Thread Cherie_Machler
Dec. 31, 2000 Cherie Machler Gelco Information Network Thomas Jeff

RE: UNIX

2001-07-16 Thread Richard Huntley
Basically, my file system that stores the indx tablespace datafile is running out of space and I need to allocate more space in order to create a second datafile for my indexes and keep it separated from the data. -Original Message- Sent: Monday, July 16, 2001 2:15 PM To: Multiple

Jobs

2001-07-16 Thread Culum Slater
Hello Oracle professionals, Are there any Oracle DBA's currently looking for work in and around London, England. If so, send me a copy of your cv and I will do my best to find you the right job. We are an Oracle specialist recruitment consultancy. Regards Culum SlaterManaging

RE: UNIX mailx

2001-07-16 Thread William Rogge
Here is a simple command: uuencode filename filename | mailx -s Here is file filename recipient -Original Message- From: Yigal Ran [SMTP:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 2:46 PM To: Multiple recipients of list ORACLE-L Subject:UNIX mailx Does any one know

RE: private/public rollbacks

2001-07-16 Thread Gogala, Mladen
Public and private rollback segments are like communism and capitalism. The idea behind the public rollback segment is that any node in the cluster that needs rollback segment can use them, but they end up being too slow. The idea is good but the implementation is impractical, just like the

RE: UNIX

2001-07-16 Thread JOE TESTA
Rich, unless you know exactly the physical layout of the raid system, keeping data and indexes separated, well the point is moot :( joe [EMAIL PROTECTED] 07/16/01 03:30PM Basically, my file system that stores the indx tablespace datafile isrunning out of space and I need to allocate more

ORA-01023 ???

2001-07-16 Thread Leslie Lu
Hi all, We recently upgraded a database from 815 to 816. There is a SP which runs fine in 815 through sqlplus or developer's application; it also runs fine using sqlplus in 816. But when the programmer called it through RoughWave, it shows error: [SERVERMESSAGE] ORA-01023: Cursor context not

RE: OEM - SMTP (urgent)

2001-07-16 Thread Michael Bush
Ajay- Try using the IP address for the mail server when asked to enter the SMTP Mail Gateway. Michael Bush Corporate Systems Database Administration www.csedge.com -Original Message- Sent: Monday, July 16, 2001 4:51 AM To: Multiple recipients of list ORACLE-L Hi, I am using

Re: ORA-01023 ???

2001-07-16 Thread Stephane Faroult
Leslie Lu wrote: Hi all, We recently upgraded a database from 815 to 816. There is a SP which runs fine in 815 through sqlplus or developer's application; it also runs fine using sqlplus in 816. But when the programmer called it through RoughWave, it shows error: [SERVERMESSAGE]

ORA-01578: ORACLE data block corrupted (file # 1, block # 13559)

2001-07-16 Thread Grabowy, Chris
This morning I got a CD full of data files from a remote client database server that went belly up. This production database (8.1.5 on NT) was put together by a group of developers with no backups setup. They sent the CD to me in hopes that I could recover the database. I laid the files down

RE: Analyze

2001-07-16 Thread Christopher Spence
Why not use DBMS_STATS? It is faster. Walking on water and developing software from a specification are easy if both are frozen. Christopher R. Spence Oracle DBA Fuelspot -Original Message- Sent: Monday, July 16, 2001 9:46 AM To: Multiple recipients of list ORACLE-L I have an

RE: ORA-01023 ???

2001-07-16 Thread Tobin, Elliot (FUSA)
Java use CLASSPATH, not CLASS_PATH, fyi. -Original Message- Sent: Monday, July 16, 2001 5:18 PM To: Multiple recipients of list ORACLE-L Leslie Lu wrote: Hi all, We recently upgraded a database from 815 to 816. There is a SP which runs fine in 815 through sqlplus or developer's

Multiple Listeners

2001-07-16 Thread Edward W. Carr
Hello All, I am currently running Oracle 816 64bit on a Solaris 8 box. I have three databases on the system with one LISTENER for all of them. Is it possible to configure multiple listeners, one for each database? We have tried in the past with no success... If there is a document on the web

MTS - in Linux

2001-07-16 Thread Eca Eca
Friends : I have the parameters below and we are receiving the message : PMON: terminating instance due to error 601 Instance terminated by PMON, pid = 11300 Load Indicator not supported by OS ! Does anyone know this error ? If i to alter all parameters MTS solve this

Re:ORA-01578: ORACLE data block corrupted (file # 1, block #

2001-07-16 Thread dgoulet
Chris, 1) Call Oracle 2) Lay out BIG $$$ 3) import dmp file they provide into new DB 4) Go to customer site, watch file laydown cold backup. 5) Kick plenty of duhveloper ^% at site. 6) Go home, down 2 6-packs of your favorite. Dick Goulet Reply

DBA Manager Needed in Greater Philadelphia area..

2001-07-16 Thread OraStaff
A fast growing firm within 1/2 hour of Philadelphia in a suburban New Jersey location is looking for a DBA Manager. We are looking for someone who was a DBA and is now a strong people manager. This person will manage about 5-7 very bright DBA's who support Oracle, Sybase, and SQL Server, in a

Re: ORA-01578: ORACLE data block corrupted (file # 1, block # 13559)

2001-07-16 Thread Stephane Faroult
Grabowy, Chris wrote: This morning I got a CD full of data files from a remote client database server that went belly up. This production database (8.1.5 on NT) was put together by a group of developers with no backups setup. They sent the CD to me in hopes that I could recover the

RE: Multiple Listeners

2001-07-16 Thread Gogala, Mladen
It is possible to define 3 listeners on 3 different ports, each one serving another database, but why would you do dat? You have 3 little databases and one big bad listener whichs huffs and puffs and connects your clients to the instance of their choice. What would you benefit from having 3

RE: Multiple Listeners

2001-07-16 Thread Alan Aschenbrenner
Edward, Yes, you can setup multiple listeners. Here is an example: LISTENERDB1 = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = hostname.com)(PORT = 1521)) ) ) ) LISTENERDB2 = (DESCRIPTION_LIST = (DESCRIPTION =

RE: Multiple Listeners

2001-07-16 Thread Hillman, Alex
Because the more listeners you have - the better. If your damager ask you how many listeners you are running and you answer one and he/she ( no sexizm :-)) heard that someone running 2 or 3 ( from another moro... err damager) - how would you explain why you are running only one. I hope that

RE: Multiple Listeners

2001-07-16 Thread Alan Aschenbrenner
Mladen, I can think of numerous reasons to have multiple listeners. For example, imagine a server with several databases where you sometimes wanted to restrict outside access on just one database. Meanwhile still allowing local users on that server to access that particular database. In

Re:RE: Multiple Listeners

2001-07-16 Thread dgoulet
ED, OK, looks like you've got 2 or more servers, each supporting a single DB or are you running parallel server? I'll assume the later since that would make more sense. Therefore, set up each listener to listen for requests on it's hostname and port 1521 which is just about the standard.

RE: Multiple Listeners

2001-07-16 Thread Kimberly Smith
However, to answer the question, you need to name the listeners something other then listener and you need to have them listening on different ports. When you use the lsnrctl command you have to reference the listener you are dealing with. There are reasons to have multiple listeners. For

RE: Analyze

2001-07-16 Thread Smith, Ron L.
Here is the syntax I am using: execute dbms_utility.analyze_schema('PROD','COMPUTE'); Is there anything that might have made the analyze run so long? By the way, we are running 7.3.4. Ron -Original Message- Sent: Monday, July 16, 2001 5:32 PM To: Multiple recipients of list ORACLE-L

Re:Multiple Listeners

2001-07-16 Thread dgoulet
Edward, One must ask, what benefit do you perceive you will obtain from having multiple listeners? The listener is only there to hear the end applications request for database service and pass them along to the appropriate dedicated server or dispatcher as required. Then it goes off to do

RE: Analyze

2001-07-16 Thread Jack C. Applewhite
Really? On our approx. 200GB production DB (8.1.6 on Win2k) DBMS_Utility.Analyze_Schema takes about an hour each morning (estimate, sample 5%). I tried DBMS_Stats.Gather_Schema_Stats with 5% sampling a few weeks ago and finally killed the thing after almost 3 hours and, if I remember correctly,

RE: Multiple Listeners

2001-07-16 Thread Edward W. Carr
We are running Veritas Cluster Server and need it to be able to shutdown and startup the databases individually of themselves. We have the ability to run the any of the databases on any of the servers we choose, so I can run them on individual servers or all on the same server... I need to be

RE: Multiple Listeners

2001-07-16 Thread MacGregor, Ian A.
If you are using external procedures, the listener for them should be different as well. The external procedures run under the authority of the user which started the listener that has the sid list entry for them. If you place the entry in the main listener and that listener is initialized

  1   2   >