Tagged Questions

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 **oracle11g** are assumed to be specific to this version or features introduced in this version.

learn more… | top users | synonyms (1)

19
votes
4answers
497 views

How to eliminate subtype dependency?

In the example below I have written one to_str() function and one set() procedure for every pls_integer subtype. The functions and procedures are almost identical except the type. How I can eliminate ...
10
votes
4answers
124 views

DBMS_DATA_MINING.CREATE_MODEL causes “ORA-40103: invalid case-id column: TID” on 11.2.0.1.0 64b, but on 10g OK

I have a problem with DBMS_DATA_MINING.CREATE_MODEL on version 11.2. On 10g this code below works OK, and I'm quite sure that on 11.1 it works too. CREATE OR REPLACE VIEW "SH"."ITEMS" AS SELECT ...
10
votes
5answers
188 views

update x set y = null takes a long time

At work, I have a large table (some 3 million rows, like 40-50 columns). I sometimes need to empty some of the columns and fill them with new data. What I did not expect is that UPDATE table1 SET y = ...
10
votes
2answers
202 views

Oracle - How to create a materialized view with FAST REFRESH and JOINS

So I'm pretty sure Oracle supports this, so I have no idea what I'm doing wrong. This code works: CREATE MATERIALIZED VIEW MV_Test NOLOGGING CACHE BUILD IMMEDIATE REFRESH FAST ON COMMIT ...
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 ...
10
votes
4answers
970 views

Is it possible to store '' (empty string) as a non NULL value in the database?

I am using Oracle DB. At the database level, when you set a column value to either NULL or '' (empty string), the fetched value is NULL in both cases. Is it possible to store '' (empty string) as a ...
9
votes
4answers
1k views

Strategy to improve Oracle DELETE performance

We've got an Oracle 11g installation that is starting to get big. This database is the backend to a parallel optimization system running on a cluster. Input to the process is contained in the database ...
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
4answers
254 views

Speed of paged queries in Oracle

This is a never-ending topic for me and I'm wondering if I might be overlooking something. Essentially I use two types of SQL statements in an application: Regular queries with a "fallback" limit ...
7
votes
2answers
104 views

What type of join is '…where A.ID = B.ID (+)'

I've come across such code which I need to re-write using ANSI Standard and I want to make sure I'm keeping the joins correct. Also, what convention is this? What is the syntax for the other types ...
6
votes
3answers
204 views

Oracle 11g DB returning Streams instead of Strings

I've got a new database here and it's an upgraded version from Oracle 10g to Oracle 11g - the main problem is with LOB columns and everytime any function returns a LOB as result, the new database ...
6
votes
3answers
77 views

What is the easiest way to make a column READONLY in Oracle?

We have one of those weird cryptic data corruption bugs that pops up every few weeks and no one knows why. So far, it appears that the primary key on a table is spontaneously changing, so other rows ...
6
votes
3answers
159 views

Oracle - Why is SELECT * FROM Foo; so slow?

I'm working on some Oracle performance issues with our web app. One thing I've noticed that's seems to obfuscate any sort of tests is that simple queries that return a lot of results are still very ...
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
3answers
1k views

CLOB vs. VARCHAR2 and are there other alternatives?

I am using DevArt's dotConnect and Entity Developer for my application. I've created the tables using the Entity-First feature. I notice that many of the column types are set to CLOB. I only have ...
6
votes
2answers
363 views

Oracle RAC and sequences

I have various database applications that use sequences, I´m migrating these applications to Oracle RAC from 10g without RAC to 11g with RAC. I need ordered sequences and gaps are tolerated. I'm ...
6
votes
2answers
10k views

Hibernate dialect for Oracle Database 11g?

Is there a Hibernate dialect for Oracle Database 11g? Or should I use the org.hibernate.dialect.Oracle10gDialect that ships with Hibernate?
6
votes
4answers
2k views

Query works with Oracle 10g but not with 11g?

DECLARE trn VARCHAR2(2) := 'DD'; cur SYS_REFCURSOR; BEGIN OPEN cur FOR SELECT TRUNC(some_date, trn), NULL AS dummy_2, COUNT( DISTINCT dummy_1 ) FROM (SELECT ...
6
votes
4answers
567 views

Round date to fiscal year

The following database view rounds the date back to the closest fiscal year (April 1st): CREATE OR REPLACE VIEW FISCAL_YEAR_VW AS SELECT CASE WHEN to_number(to_char(SYSDATE, 'MM')) < 4 THEN ...
6
votes
2answers
2k views

Executing an Oracle Stored Proc as Another User

I'm mostly an oracle novice, so forgive me if this is a stupid question... I have a schema called 'CODE' with a stored proc that executes arbitrary SQL (for now, please ignore the potential security ...
6
votes
2answers
30k views

Default passwords of Oracle 11g?

I installed Oracle 11g. I didn't change the passwords for SYSTEM and SYS. However now I find that the default passwords do not work. Please help.
5
votes
3answers
64 views

can't insert data into table

I have created table using this command successfully create table Person( first_name varchar(25) not null, last_name varchar(25) not null, persoin_id number not null, birth_date date, ...
5
votes
2answers
83 views

Recursive Insert using connect by clause

I have hierarchical data (right) in table in following manner which creates Hierarchy as shown in left. Tables are kept in oracle 11g. TREE Hierarchy Tree Table -------------- ...
5
votes
1answer
74 views

How do I load OS Variables into PL/SQL?

This should be pretty straightforward but the search words are so common that I am not finding an answer: Q. How do I load the values from an operating system variable (RHEL) into PL/SQL on an ...
5
votes
1answer
551 views

How to call Oracle function, with return value using LINQ to Entities?

I'm working on an application which accesses data from an Oracle 11g database. I'm using EF4 and data is accessed using LINQ. I have come across a scenario where I need to call a function stored in a ...
5
votes
2answers
212 views

Loop through an implicit cursor

How can I loop through an implicit cursor which is created, for example, from a query? Here is the sample code: SERVEROUTPUT on; DECLARE TYPE ref_cursor IS REF CURSOR; cur REF_CURSOR; ...
5
votes
4answers
130 views

Empty RELIES_ON for RESULT_CACHE

I have a query inside the function with RESULT_CACHE. So when the table is changed - my cache is invalidated and function is executed again. What I want is to implement the function that depends ...
5
votes
2answers
449 views

Oracle partitioning solution for DELETE performance problem

This is a follow-up question to Strategy to improve Oracle DELETE performance. To recap, we have a large DB with a hierarchy of tables representing 1D through 4D output data from an optimization ...
5
votes
2answers
90 views

Solution to implementing caching layer in pl/sql

I have a function with 1 argument (date) which encapsulates 1 query like SELECT COUNT(*) FROM tbl WHERE some_date_field BETWEEN param_date - INTERVAL '0 1:00:00' DAY TO SECOND ...
5
votes
1answer
560 views

Oracle query rewrite with virtual columns in the source table

I have a table, demo_fact in Oracle 11g and it has several virtual columns defined as such: ALTER TABLE demo_fact ADD (demo_measure_from_virtual NUMBER GENERATED ALWAYS AS (CASE WHEN ...
5
votes
4answers
155 views

Grouping rows considering “difference” between rows

I've got a table which contains start-times (using number in example to keep it simple), and durations of events. I would like to identify "blocks" and their start- and the end-time. Whenever the ...
5
votes
4answers
240 views

Why does a query with a sub-select cost less than query with a constant in Oracle

I've got an SQL-table with some million entries and I tried to query how much entries are older than 60 days (Oracle 11.2.0.1.0). For this experiment I used 3 different versions of the ...
5
votes
2answers
1k views

Oracle data provider pegs IIS worker process when web site is stopped

We're experiencing a nasty issue in Oracle 11g Release 2 where the w3wp process takes over and entire processor core, and debugging shows that the Oracle data provider is throwing ...
5
votes
5answers
3k views

Getting location of file tnsnames.ora by code

How can I get the location of the tnsnames.ora file by code, in a machine with the Oracle client installed? Is there a windows registry key indicating the location of this file?
5
votes
3answers
953 views

SQLDeveloper using over 100MB of PGA

Perhaps this is normal, but in my Oracle 11g database I am seeing programmers using Oracle's SQL Developer regularly consume more than 100MB of combined UGA and PGA memory. I'd like to know if this ...
4
votes
3answers
68 views

Delayed update in Oracle PL/SQL

I have a simple PL/SQL procedure, with one cursor and I iterate over it. In each iteration I make an UPDATE statement (after performing some business logic to the data). However, if there are lots of ...
4
votes
2answers
64 views

Table Name with more than 30 characters

I have a table in a MySQL database. The name of the table is more than 30 characters long and I want to make the same table in Oracle 11g, but Oracle only allows tables with a maximum of 30 ...
4
votes
1answer
108 views

Relationship between CURSOR_SHARING, Bind Variable Peeking and Histograms

I'm trying to make sure I have a good understanding regarding the relationship between CURSOR_SHARING, bind variables, bind variable peeking and histograms as most sources cover these topics is ...
4
votes
2answers
64 views

Consolidate several Oracle triggers. Any performance impact?

Most of our tables have one BEFORE INSERT OR UPDATE trigger, in order to set ID's BEFORE INSERT and to set creation / modification users / dates BEFORE INSERT OR UPDATE. There are a couple of tables ...
4
votes
1answer
74 views

Adding columns to existing index in Oracle

I have a relatively large table (81M rows) and an index on it. I want to add a column to the existing index. I searched for it on Google, but I couldn't find a way for it. I've read somewhere that ...
4
votes
4answers
66 views

How to use LIKE and IN operators in one query?

My simple sql statement is this: SELECT USERNAME FROM ALL_USERS; But I want to filter system users from the result. I searched but couldn't find anything that Oracle provided; so I tried a ...
4
votes
2answers
271 views

LIMIT / OFFSET in Oracle 11G

I'm trying to update a table in Oracle and I'm running into some difficulty. I'm porting over my code from MySQL and some of the commands that MySQL allows are not supported in Oracle. Here is the ...
4
votes
2answers
102 views

How can I do a yearly report grouped by month?

I am using the below query to list the number of transactions by month. Does anyone know how can I list by year too. This means that the query returns all my transactions for the whole year except the ...
4
votes
1answer
102 views

How can I get the unique characters from a string in Oracle?

How to get the unique characters from a string in Oracle? Lets say I have a column with data CCCXXXCCCCCCCCCCCCCCCCXXCCCCCCCCCCCCCCCCCCCCCCC and I want to return 'CX' as the list of unique ...
4
votes
2answers
52 views

Can we specify degree of parallelism dynamically?

I have a select SQL query which use parallelism, something like this INSERT/*+ APPEND PARALLEL (tst, 6) */ INTO test_table tst ( ************** ...
4
votes
4answers
265 views

Database access in parallel threads , viable option?

I have the following situation main() { hnd = CreateTHread( func1 ); // Call fun2() wait(hnd); return ; } fun2() { //Access database to perform some read operation on TAble A } ...
4
votes
1answer
90 views

One large table partitioned and then subpartitioned or several smaller partitioned tables?

I currently have several audit tables that audit specific tables data. e.g. ATAB_AUDIT, BTAB_AUDIT and CTAB_AUDIT auditing inserts, updates and deletes from ATAB, BTAB and CTAB respectively. These ...

1 2 3 4 5 23