Mailing List
Home
Forum Home
Oracle List - by freelists.org
Oracle on SUSE Linux - Runing Oracle on SUSE Linux
Oracle database error code ...
www.freelists.org
Subjects
ORA 12540: TNS:internal limit restriction exceeded
ORA 12838 please : Is possible to append two times to the same table befo
ORA 12838 please : Is possible to append two times to the same table before
ora 04031
ora 12500 on windows
ORA 32004: obsolete and/or deprecated parameter(s) specified
ORA 01925: maximum of 30 enabled roles exceeded
ORA 01925: maximum of 30 enabled roles exceeded
ora 12500 on windows
ORA 01650, one idea
ORA 01650
ORA 4030
ORA 12838 please : Is possible to append two times to thesametable before do
ORA 12838 please : Is possible to append two times to thesame table before d
ORA 01536
ORA 03113 end of file on communication channel
ORA 32004: obsolete and/or deprecated parameter(s) specified
ORA 00600:
ORA 00020: maximum number of processes (%s) exceeded
ORA 01925: maximum of 30 enabled roles exceeded
ORA 3113 while creating a cluster database 9201 RAC on Linux with OCFS
ora 12500 on windows
ora 12500 on windows
ora 12500 on windows
ORA 01650, one idea
ora 12500 on windows
ora 12500 on windows
ora 12500 on windows
ORA 2000 Error Using DBMS STATS GATHER SCHEMA STATS
ORA 01650, one idea
ORA 01650, one idea
ORA 01650, one idea
ORA 01650
ORA 01650
Subject: ora 01031
ORA 4030
ORA 4030
ORA 06502: PL/SQL: numeric or value error: Bulk Bind: Truncated Bind
Subject: Re: ORA 01722 invalid number
 
Oracle List
Page 5 of 412 1   2   3   4   5   6   7   8   9   10   Next 10   Next 100  

Subject: JDBC think driver via IPC?

Anyone know if it is possible to connect via IPC using JDBC thin driver as example from Oracle SQL Developer and if so what is the syntax? I 've read that it requires the listener and tcp/ip which

Subject: Re: 11g fault diagnosability infratructure and poor documentation

Hi 11g engine is more complex than ever which leads to 'better bugs ' that are more difficult to solve enlarged attack surface for hacking more often unexpected side-effects of so called fixes mor

Subject: Re: Asynchronous commit - wait or no wait 10GR2

PL/SQL has always done this "optimization " automatically. so the default within a pl/sql procedure is to commit upon return to the caller. the cwiw setting must override the default pl/sql optimiz

Subject: Re: Asynchronous commit - wait or no wait 10GR2

Probably this article by Connor McDonald will explain you this behaviour http //www.oracledba.co.uk/tips/lgwr_dilemma.htm A while ago I did almost exactly the same test and was as suprised as you )

Subject: Asynchronous commit - wait or no wait 10GR2

In 10GR2 there is an option to commit immediate nowait which allows the commit to return before the redo is persistent in the redo log. This is not the default. The default commit remains as commit wr

Subject: Re: what 's the difference between "CPU I/O Wait " and "db scatter/sqenecail w

It 's not "misleading " as far as you know how it works "db file sequential/scattered read " wait time is the time elapsed from the instant Oracle noticed the buffer was not in the buffer cache and the

Subject: Re: v$session_longops

Jonathan Lewis has written an answer here about the maximum number of entries http //www.mcse.ms/message1574958.html He said "The number of slots in v$session_longops for 9.2.0.6 seems to be the lowe

Subject: Re: same udpate statement takes same cpu time but significant different "seq

Not exact but similar data on HPUX could be retrieved with sar -d 1 10 You 'd need to map the names of devices onto datafiles that your query is reading. Vlad Sadilovskiy Oracle Database Tools ht

Subject: RE: RMAN question(s)

Quite a nice improvement there! I would caution everyone to carefully test of course but it seems to have worked well here. I would expect that recoveries may well go faster too. RF Robert G. Free

Subject: RE: 11g fault diagnosability infrastructure and poor documentation

The health checks are perhaps better documented and you can get some insights into them by using OEM which provides a window into them (the "checkers " as they are called). They feed some of the new f

Subject: 11g fault diagnosability infratructure and poor documentation

Am I the only one who has been unable to do much with this feature due to the woefully absent documentation? Three components of "fault diagnosability " in particular seem very interesting - autom

Subject: How about the idea of mirror the online redo log files without mutilplex?

Our database is running on hpux on which AIO is not possible to achieve(except use raw device which is out of our considertion). And the "log file parallel write " is very high. Since we use two redo g

Subject: Re: {Disarmed} Role transition

The database is on the EMC storage with BCVs for both primary and standby. I can sync the BCV with the standby and mount the storage on a different host. Once I mount the storage I can create one mor

Subject: Re: same udpate statement takes same cpu time but significant different "seq

The database is running on hpux. And the sql is the exactly the same on test and production. Thanks Qihua On 10/2/07 Vlad Sadilovskiy <vlovsky@(protected) > wrote > > Sun iostat -cnmxPz 1 would show

Subject: Re: same udpate statement takes same cpu time but significant different "seq

Sun iostat -cnmxPz 1 would show you the most of the information on IO subsystem throughput and lattency as well as the current load. What is OS you are operating on? Vlad Sadilovskiy Oracle Database

Subject: RE: RMAN question(s)

Just an update on this - after running the compressed backups on this database and another one for 3 weeks now they are consistently running much faster than before the compression - a little less th

Subject: Re: what 's the difference between "CPU I/O Wait " and "db scatter/sqenecail w

Hi Alberto Thanks very much for your message. Based on the formula you mentioned if the cpu is always 100%busy for a long time. Then the time that actually wating to be scheduled will be counted

Subject: Re: what 's the difference between "CPU I/O Wait " and "db scatter/sqenecail w

As far as I know Oracle doesn 't communicate anything to the OS it is the other way around - Oracle reads OS instrumentation data from the OS ). Unless that has changed in some recent version in wh

Subject: v$session_longops

I 've been looking at v$session_longops and I have a couple of questions and I am hoping somebody can give me a hint. There appears to be a maximum number of entries retrieved by the view. What dete

Subject: RE: Link procedure to sql statement in v$sqlarea - one comment

...but best of all in my opinion is have the developers put the call to dbms_application_info.set_module at the very beginning of all procedures. This way v$sqlarea.module won 't lie. I have a proc

Subject: RE: Link procedure to sql statement in v$sqlarea

V$sqlarea holds a PARSING_SCHEMA_ID column. This holds the user-id under which the SQL was parsed. If from stored procedure it holds the user-id from the owner of the stored procedure (assuming auth_

Subject: RE: Link procedure to sql statement in v$sqlarea

I have used v$sql.program_id with moderate success. This is the object id of the stored code so link to dba_objects or obj$ to get the additional information. Regards Daniel Fink ------- Original

Subject: RE: Link procedure to sql statement in v$sqlarea

Apart of checking v$sqlarea.module for any differences I only could think of of joining the addr and hash_value with v$session to obtain v$session.prev_sql_addr and v$session.prev_hash_value and us

Subject: Re: Setup of Multiple Listeners on RAC ?

I 'm not certain of disaster but I think the odds are surely in the house 's favor. I doubt that this application has a requirement for 10000 *active* database connections. For whatever reason the a

Subject: Link procedure to sql statement in v$sqlarea

Hi I have a question about v$sqlarea. Appreciate your help/inputs on this. Background

Subject: Re: Very Strange Query Access Plan

Few questions Can you elaborate on the "bad " values? What makes them bad? Are other values (like NDV) non-representative as well? What is your DBMS_STATS.GATHER_* command? The reason I am asking is

Subject: RE: Very Strange Query Access Plan

Hi Tom Yesterday queries against this table used the index. Today they do not. There was no large data load overnight. We add about 10 000 records per day. This behavior has happened before

Subject: RE: Very Strange Query Access Plan

All Thanks to Alvaro Jose Fernandez & Ric Van Dyke this is solved. The DENSITY and CLUSTER FACTOR values in the user_tab_columns for my database table had bad values. These values are calculat

Subject: Re: Training for Oracle Performance tuning

Sorry for the delayed reaction but I 've been on a long overdue vacation ... Learning to tune Oracle is a never ending process I 'm not an expert and doubt I ever will be thank god. That 's what I lo

Subject: RE: Very Strange Query Access Plan

Can you provide us with a (couple of) example(s) of these queries? -----Oorspronkelijk bericht----- Van oracle-l-bounce@(protected) [mailto oracle-l-bounce@(protected)]Namens Mercadante Thomas
Page 5 of 412 1   2   3   4   5   6   7   8   9   10   Next 10   Next 100