The oracleinternals tag has no wiki summary.
0
votes
2answers
1k views
Oracle Error: ORA-00600: internal error code, arguments: [13009], [5000], [1], [17], [1], [], [], [], [], [], [], []::
I am getting a weird problem while running one procedure .
Proc is like shown below :
procedure abc
IS
CURSOR xyz_cur IS
SELECT x
,y
,z
from temp
where y IN ...
1
vote
4answers
1k views
Oracle: How are sequences implemented?
To meet some odd business requirements, I'm going to have to implement my own sequence-like counters. I'm going to make a first cut of this in the obvious way, but I would like to understand a bit ...
3
votes
2answers
3k views
Where are java classes stored in Oracle?
Where is the java bytecode for loaded java classes stored within an oracle database? Specifically, is there a view or table I can use to obtain the raw bytes for java class schema objects within ...
2
votes
2answers
1k views
Oracle datafile autoextend question
If I have 2 datafiles attached to a tablespace, and BOTH are set to AUTOEXTEND and BOTH are set to unlimited, will Oracle know to extend both datafiles, or only extend one of them. I have read through ...
1
vote
1answer
1k views
How does SCN_TO_TIMESTAMP work?
Does the SCN itself encode a timestamp or is it a lookup from some table.
From an AskTom post he explains that the timestamp to +/-3seconds is stored in raw field in smon_scn_time. IS that where the ...
0
votes
3answers
2k views
What is the Oracle KGL SIMULATOR?
What is this thing called a KGL SIMULATOR and how can its memory utilisation be managed by application developers?
The background to the question is that I'm occasionally getting errors like the ...
12
votes
2answers
18k views
What do the letter codes in Oracle user_contraints table's constraint_type column stand for?
select distinct constraint_type from user_constraints;
C
-
C
P
R
U
Seems P means primary key and R means foreign key, correct? What are U and C?
1
vote
1answer
3k views
Discover what process/query is using the oracle SGA
I have a query to monitor SGA (non-)utilisation:
select sum(bytes)/1024/1024 " SGA Free " from v$sgastat where name='free memory';
That's great, but I need more detail about what exactly is using ...
1
vote
4answers
925 views
In an Oracle cluster will sysdate always return a consistent answer?
In an Oracle cluster (more than one machine co-operating to serve one database) will the "sysdate" function always return a consistent answer? Even if the servers' Operating System clock reports ...
6
votes
2answers
26k views
Discover what process/query is using oracle temp tablespace
Oracle FAQ defines temp table space as follows:
Temporary tablespaces are used to
manage space for database sort
operations and for storing global
temporary tables. For example, if you
...
