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 380 of 412 Previous 100   Previous 10   371   372   373   374   375   376   377   378   379   380   Next 10  

Subject: Linux ES Box Crashing with 9i

Hi No problem with ES nor AS on 9i here. Did your LINUX installer read Werner 's italic notes about leaving a couple thousand extra file handles? You might re-check the other configuration

9.2.0.5 is out...

Not for Linux. Pete where are you? On 03/22/2004 09 50 22 AM "Jesse Rich " wrote > At least for HP/UX. Which works for me since I was waiting for it to > correct a nasty ORA-600/ORA-7445 bug.

PL SQL cursor help

If you must have periodic commits the COPY command works very well. set copycommit 5000 (5000 is as high as you can go iirc) set long 65000 (if needed) set arraysize 100 (or whatever) copy

Advanced queues : aq_tm_processes

<html > <br > I would think that the relationship would be similar to that between the number of jobs and the number <br > of job_queue_processes. <br > <br > If your jobs or queue processes are not due

Table compression

LeRoy Expect performance penalties of 2x on times for "bulk " inserts 3x-4x penalty on "conventional " inserts and updates and up to 6x-8x penalty on deletes. This is an option that shares a lo

My weekly post: use post instead of commit

Hi last week I investigate something interesting related to database work. If your developers are working with form developer/2000 and they are using blocks (one block per table procedure or

difference between child and parent latches?

Each latch in the system has an entry in v$latch. For some latches this is the only entry. For others there are additional entries in v$latch_children. These latches have a set of children eac

Dynamic SQL question

Woo hoo! That was the problem. Thanks! (Sometimes late on a Friday I just can 't see the simple things anymore.) ----- Original Message ----- From "Tim Johnston " > My last response was spars

Subject: New Name for an old friend

Mistyping a tnsentry in 10g gives ORA-12154 TNS could not resolve the connect identifier specified Hugely improved error message I think. I hope there was at least a 3 hour internal meeting

Slow Inserts

In addition to the comments that others have made about doing the whole thing in one insert possibly with nologging I 'd wonder about the index hint in the sql that you give and whether it is really

Subject: LDAP - SunONE vs. OID

The site I 'm working currently uses SunONE (previously called iPlanet) for their LDAP services. Oracle Net name resolution is currently configured through tnsnames. This is getting more and more unm

HP-ux commands

There is also the Rosetta Stone for Unix http //bhami.com/rosetta.html -----Original Message----- From zhu chao [mailto chao_ping@(protected)] Sent Mon 3/22/2004 4 07 AM To oracle-l@(protected)

NAS to SAN

Hi All OS 2.8 Solaris We (DBAs) were informed recently that we were moving from NAS to SAN and we were asked to move oracle apps stack (APPL_TOPs and COMMON_TOPs) files from /u02 to /u0

first (production) bug 10.1 on win32?

I know we 're not supposed to guess but this is Windoze right? If what I 've read in the thread is correct summary 1) You can get it started and stopped using the GUI no problem. 2) Others m

partitioned table maintenance and snapshot refresh

hi list friends I have a primary database using partitioned table and a snapshot site get the data from primary. Whenever I add/drop partition on the partitioned table the snapshot log

index rebuild

> Something to keep in mind when contemplating a rebuild is that (unless > you do LOTS of index fast full scans) performance will NOT be > affected unless > you can reduce the BLEVEL of the index.

Query returning wrong results.

<HEAD > <META content "MSHTML 5.00.3315.2870 " name GENERATOR > </HEAD > <BODY > <DIV >It 's been a rough two weeks so I could certainly be wrong on this one. </DIV > <DIV >  </DIV > <DIV >Let 's simplify

Transportable Tablespace, SCNs and ORA-1555s.

Hi Dan The problem you are contemplating cannot happen because when you plug in a set of tablespaces the SCN is advanced if necessary to ensure that it is higher than that of the source databa

Node in a 2 cluster RAC environment keeps failing over.

Hoping someone can point me to a solution. We are running 9.2.0.3 using Database Edition AC MP3.1 Solaris 8 on Hitachi storage array. Once every other week veritas misses a heartbeat and tell

More DBMS_RLS and Fine-Grained access control

The message returned by Forms was FRM-40400 Transaction complete 1 records applied and saved In the Oracle RDBMS "records " do not exist -- the database has "rows " instead. So we know

Replication

Hello We have an OLTP system. We would like to copy some tables data into an "archive " system. Some part of data should be the exact copy of the original but some should be "accumulated ". In the

Subject: Hetero Services on HP-UX

HP-UX 11.11 Oracle 9.2.0.4 64bit Been following Note 214834.1 on metalink about setting up HSODB on HP-UX. I want to access a sqlsvr database from oracle. I 'm making the stub file to relink the

Recovery -- Can 't place tablespace offline ?

To do a tablespace point in time recovery you have to recover the tablespace to a clone database and export the necessary data and import it to the live database. You can 't do recovery to a live d

Subject: RE: Limit no of recs in cursor

by using a WHERE clause? If you already have a where clause in your query then append the following AND rownum < 100 >-----Original Message----- >From manoj.gurnani@(protected) [mailt

New books and new authors - and experience?

On 03/16/2004 08 33 13 PM Stephen.Lee@(protected) wrote > > You know Sports Illustrated magazine figure out how to sell more magazines > and increase circulation. I see no reason why Oracle boo

sql loader question

If I recall correctly put two of them together like " ". > The column contains a " (double quote) used to designate inches > such as 6 " which I think sql loader is choking on. > Is there a w

Subject: RE: get UTC date in Oracle 7.3.4

Are the UTC and GMT dates are same. Somebody told me that the current difference between UTC and GMT is about 21 seconds. Thanks Ashoke -----Original Message----- From oracle-l-bounce@(protected)

Database security

List Here in the midst of Sarbanes Oxley I 've been pondering methods that might be used to prevent a system administrator from connecting to any databases running on that box. I know that it

How to calculate the size of a transaction?

Ashoke - In answer to the simple question how to find the bytes in a row of a table the simplest way is to analyze the table then look at AVG_ROW_LEN column in USER_TABLES view. Dennis Wi

any way to tell when an extent was added?

> If you know which logfile to look in the following command should do > it. > > ???????alter system dump logfile > '/some/logfile ' layer 14 opcode 4 Btw is there a list of redolog layer
Page 380 of 412 Previous 100   Previous 10   371   372   373   374   375   376   377   378   379   380   Next 10