Oracle is an RDBMS product. Specific releases of the product are known as Oracle9i, Oracle10g and Oracle 11g. Generally there are two releases within each major version. Questions tagged [tag:oracle10g] are assumed to be specific to this version or features introduced in this version.
26
votes
5answers
4k views
Why are Oracle table/column/index names limited to 30 characters?
I can understand that many years ago there would be this kind of limitation, but nowadays surely this limit could easily be increased. We have naming conventions for objects, but there is always a ...
12
votes
2answers
374 views
Is this a bug in the PL/SQL Compiler?
In our SVN-Code Repository, I came across a package specification that -after
removing a few lines- boils down to
create or replace package tq84 as
return varchar2(10);
end tq84;
/
It seems to ...
12
votes
7answers
30k views
How do I use CREATE OR REPLACE?
Am I correct in understanding that CREATE OR REPLACE basically means "if the object exists, drop it, then create it either way?"
If so, what am I doing wrong? This works:
CREATE TABLE foo (id ...
11
votes
3answers
19k views
Oracle “ORA-01008: not all variables bound” Error w/ Parameters
This is the first time I've dealt with Oracle, and I'm having a hard time understanding why I'm receiving this error.
I'm using Oracle's ODT.NET w/ C# with the following code in a query's where ...
11
votes
3answers
1k views
How can I implement conditional inserting in Oracle?
I'm new to oracle and having a problem with one of my SQL Queries.
There are 2 Users: User1 and User2:
Tab1 Tab2
-------- --------
EmpNo EmpNo
...
10
votes
2answers
167 views
unexpected query success
SELECT COUNT (*)
FROM rps2_workflow
WHERE workflow_added > TO_DATE ('01.09.2011', 'dd.mm.yyyy')
AND workflow_finished < TO_DATE ('wtf', 'dd.mm.yyyy')
AND workflow_status IN ...
10
votes
2answers
6k views
Different behavior for REF CURSOR between Oracle 10g and 11g when unique index present?
Description
I have an Oracle stored procedure that has been running for 7 or so years both locally on development instances and on multiple client test and production instances running Oracle 8, then ...
10
votes
3answers
4k views
Why doesn't Oracle raise “ORA-00918: column ambiguously defined” for this query?
I've just come across a strange behaviour in Oracle where I would expect ORA-00918 to be raised, but isn't. Take this query, for example.
SELECT *
FROM USER_TABLES TAB
JOIN USER_TRIGGERS TRG ON ...
9
votes
2answers
185 views
How to implement context based DB auditing?
I have a current DB driven application which has several methods for accessing data.
Web Application
Direct SQL Access users (I'm trying to remove these)
Client Server application
Batch inputs and ...
9
votes
3answers
2k views
PL/SQL Logging - How to control?
I am looking to introduce a logging framework into our existing Oracle application to replace the use of DBMS_OUTPUT.
The framework will be used primarly to aid debugging and would detail such ...
9
votes
4answers
15k views
Oracle: Does a 10g oracle client work with an 11g server?
This is the reciprocal to this question. Currently, I am trying to use the instant client for Mac, version 10.2. There's no 11g version for Mac, as of now, based on this page(you have to click into ...
9
votes
5answers
13k views
Is it ok to use oracle 11g client with a 10g server?
I am creating a .NET program that uses odp.net, specifically the 11g version. Our oracle server is running 10g. I am too late in the development process to make a change. Am I heading for trouble? ...
8
votes
2answers
157 views
Why is Oracle eating my string?
i currently try to execute the following query on an Oracle DB
select tzname || ' (UTC'|| tz_offset(tzname) || ')' from v$timezone_names
It not seems to be very complicated. Just the name of the ...
8
votes
4answers
756 views
BigDecimal to SQL NUMBER: check for value larger than precision
In my app, I handle numbers as BigDecimal and store them as NUMBER(15,5). Now I'd need to properly check on Java if the BigDecimal values would fit the column, so that I can generate proper error ...
8
votes
1answer
720 views
Best way/tool to get the results from an oracle package procedure
EDIT: Clarified the question
In MS SQL Server if I want to check the results from a Stored procedure I might execute the following in Management Studio.
--SQL SERVER WAY
exec sp_GetQuestions('OMG ...
8
votes
3answers
18k views
how do i clear oracle execution plan cache for benchmarking?
On oracle 10gr2, i have several sql queries that i am comparing performance, but after first run, the v$sql table has the execution plan stored for caching, so for one of the queries i go from 28 ...
8
votes
5answers
8k views
Is it possible to kill a single query in oracle without killing the session?
I would like to be able to kill a user's query in Oracle 10.2.0.4 without killing their entire session. This would allow the query to end, but not log that user out of their session, so they can ...
7
votes
7answers
158 views
Is there a reason not to use views in Oracle?
I have recently noticed that nobody uses views in my company (and it's a big company).
I want to create a few views largely because they make my queries simpler to the eye, and these views are on ...
7
votes
2answers
454 views
Inventory Average Cost Calculation in SQL
I want to compute inventory costs using average value, and I'm somewhat stuck here...
Consider a simple transaction table tr: (ids are autoincrement, negative volume indicates a sell transaction)
...
7
votes
1answer
1k views
PLS-00123: program too large (Diana nodes) while trying to compile a package
While compiling a package, I ran into an error message:
Error: PLS-00123: program too large (Diana nodes)
Line: 1
The package in question has about 1k lines (spec) + 13k lines in body. While ...
7
votes
1answer
109 views
Solution to problem done in PL/SQL what would it look like in SQL?
I've written a solution to problem using PL/SQL and SQL and I can't help thinking that it could be done 100% in SQL but am I am struggling to get started.
Here is the structure of the two tables (If ...
7
votes
9answers
620 views
Sql: Optimizing BETWEEN clause
I wrote a statement that takes almost an hour to run so I am asking help so I can get to do this faster. So here we go:
I am making an inner join of two tables :
I have many time intervals ...
6
votes
1answer
115 views
How to identify invalid values stored in Oracle DATE columns
Oracle 10.2.0.5
What is the easiest way to identify rows in a table that have "invalid" values in DATE columns. By "invalid" here what I mean is a binary representation that violates Oracle rules for ...
6
votes
1answer
150 views
Oracle MIN as analytic function - odd behavior with ORDER BY?
This particular case was distilled from an example where the programmer assumed that for two shipments into a tank car, line #1 would be loaded first. I corrected this to allow for the loading to be ...
6
votes
6answers
153 views
Query problem - rows are returned when query is run in sql navigator , but not in my c# program
Update:
This is the query from the debugger, which was retrieved from a string builder:
{SELECT * FROM FCR.V_REPORT WHERE DATE BETWEEN to_date('14/09/2001' , 'dd/mm/yyyy') AND to_date('30/09/2011' ...
6
votes
3answers
173 views
Is it possible to stop an sql query from executing?
I wish to ask if it is possible to stop an sql query during its execution. I wish to do this so that if someone else is executing the same query at the same time, the application would not jam. I am ...
6
votes
1answer
234 views
Oracle - string combinatorial permutation
I think I have a complex requirement.
It's a combinatorial permutation using Oracle 10.2, I'was able to solve it using cartesian joins, but I think that it need some improvements to made it simplest ...
6
votes
1answer
105 views
Impact of Package Size to Performance in Oracle 10g
Using Oracle 10g. The original Oracle designer for this project has moved on and those of us remaining are reasonable developer's for Oracle but we need some tuning and planning assistance.
We have ...
6
votes
3answers
151 views
What's the significance of # in SQL?
I have the following code to create an object type in Oracle (PL??)
CREATE OR REPLACE TYPE STAFF_T as OBJECT(Staff_ID# NUMBER, Person PERSON_T); \
I'd like to know what is the significance of the ...
6
votes
2answers
1k views
Which .NET data type is best for mapping the NUMBER Oracle data type in NHibernate?
I've seen some examples in which decimal is used in NHibernate projects for mapping to whole number columns in Oracle. Right now I'm using int and long in my program.
What are the advantages of ...
6
votes
1answer
257 views
Oracle database link
I'm currently using Windows Authentication with 2 Oracle servers - SP3DSMP1 & SP3DSMP4. I created a database link on SMP1 to connect to SMP4 as:
SQL> create public database link LINK_SMP4
2 ...
6
votes
1answer
423 views
Using BETWEEN or <=, >= for Oracle timestamps
My Oracle table has a column tmstp with the TIMESTAMP(3) WITH TIME ZONE datatype.
When I run the following query
SELECT COUNT(column1)
FROM table1
WHERE tmstp BETWEEN to_timestamp_tz('10-OCT-10 ...
6
votes
4answers
1k views
What datatype in oracle would map to a Java int?
What type in Oracle (10 Express Edition) would be the "same" as a Java int?
6
votes
6answers
3k views
(Oracle) How get total number of results when using a pagination query?
I am using Oracle 10g and the following paradigm to get a page of 15 results as a time (so that when the user is looking at page 2 of a search result, they see records 16-30).
select *
from
( ...
6
votes
2answers
497 views
Can I substitute savepoints for starting new transactions in Oracle?
Right now the process that we're using for inserting sets of records is something like this:
(and note that "set of records" means something like a person's record along with their addresses, phone ...
6
votes
3answers
16k views
How to find Current open Cursors in Oracle
What is the query to find the no. of current open cursors in an Oracle Instance?
Also, what is the accuracy/update frequency of this data?
I am using Oracle 10gR2
6
votes
7answers
2k views
What is a good Oracle reference book for a beginner? [closed]
I suppose I don't necessarily need an actual reference book per se, but I tend to learn as I go. Thus, it would be nice to have some kind of terse but readable book that I can read in chunks either ...
5
votes
2answers
104 views
Does Oracle's “date'[yyyy-mm-dd]'” literal always use the yyyy-mm-dd pattern?
Rephrased, given I use date like so:
date'2010-04-10'
, could the outcome be anything but April 10th 2010 (e.g. October 4th 2010)?
UPDATE I hear what you, and the docs, say. But...
When a batch ...
5
votes
2answers
401 views
What's the difference between pls_integer and binary_integer?
I've inherited some code which is going to be the base for some additional work. Looking at the stored procs, I see quite a lot of associative-arrays.
Some of these are indexed by binary_integers, ...
5
votes
1answer
243 views
Oracle - Materialized View still accessible during complete refresh. How does this work?
In one of our applications, we have a massive Materialized View that refreshes three times a day, and takes seven hours to refresh. (Not ideal, I know). This perplexed me, because I surely thought ...
5
votes
1answer
509 views
Configuring Informatica Repository with Oracle 10g [Oracle not connecting]
Oracle Details:-
Oracle 10g Enterprise Edition
Host running XP x32
I use scott tiger for logging with SQL* Plus . I dont provide any HOST STRING. How can i setup Oracle to accept Host String ? i am ...
5
votes
4answers
434 views
Python: How to determine subprocess children have all finished running
I am trying to detect when an installation program finishes executing from within a Python script. Specifically, the application is the Oracle 10gR2 Database. Currently I am using the subprocess ...
5
votes
2answers
193 views
Difference in two row values of the same table
I have a lab values table that I would like to query and get the difference between the last value and the most recent value if its >= 0.2. How do I go around doing that. Here is the query I have so ...
5
votes
1answer
36 views
Oracle in the back, Access in the front?
I "inherited" an Access 2003 project. Now they've begun upgrading us to 2007. I'm low man on the totem pole (and rightly so), so I don't have access - ha, no pun intended - to the Big Mama Oracle ...
5
votes
1answer
446 views
Business Reporting on an OLTP Application
We have an OLTP application using Oracle Database 10g Enterprise Edition,
and plan to build a business reporting layer to meet the following needs.
Sheilding complexity of the current OLTP database ...
5
votes
4answers
387 views
(Oracle) how to group rows for pagination
I have a table that outputs similar to this (although in thousands):
EMPNO ENAME TRANDATE AMT
---------- ---------- --------- -------
100 Alison 21-MAR-96 45000
100 ...
5
votes
2answers
713 views
Oracle sequence caching
I am trying to implement a sequence in an Oracle database to act as a surrogate key creator for a table. For performance reasons, I want this sequence to be cached. I have read that there are ...
5
votes
2answers
2k views
How to disable oracle cache for performance tests
I'm trying to test the utility of a new summary table for my data.
So I've created two procedures to fetch the data of a certain interval, each one using a different table source. So on my C# console ...
5
votes
5answers
3k views
Oracle query using 'like' on indexed number column, poor performance
On Query 1 a full table scan is being performed even though the id is an indexed column. Query 2 achieves the same result but much faster. If Query 1 is run returning an indexed column then it returns ...
5
votes
3answers
1k views
Does Oracle roll back the transaction on an error?
This feels like a dumb question, but I see the following in the Oracle concepts guide on transaction management:
A transaction ends when any of the
following occurs:
A user issues a COMMIT ...