Tagged Questions

Oracle is a relational database management system (RDBMS) product. Specific releases of the product are known as Oracle9i, Oracle 10g and Oracle 11g. Generally there are two releases within each major version. Questions tagged "oracle9i" are assumed to be specific to this version or features introduced in this version.

learn more… | top users | synonyms

7
votes
4answers
359 views

Convert colums to rows in SQL

I need to write a query which takes rows and converts it into columns - here's my table: Count fname lname id ----------------------------- 1 abc def 20 2 pqr ...
7
votes
4answers
416 views

What does +0 mean after an ORDER BY in Oracle

I am trying to understand what the +0 at the end of this Oracle 9i query means: SELECT /*+ INDEX (a CODE_ZIP_CODE_IX) */ a.city, a.state, LPAD(a.code,5,0) ZipCode, ...
7
votes
2answers
236 views

Greatest not null column

I need to update a row with a formula based on the largest value of two DATETIME columns. I would normally do this: GREATEST(date_one, date_two) However, both columns are allowed to be NULL. I need ...
6
votes
5answers
544 views

Looking to design a tool to Translate Business logic from Stored Procedures to C# Business Layer

Without getting into a discussion about whether the business logic should be in the database or at the application layer, since it has been covered elsewhere. My team is translating 100K+ lines of ...
6
votes
2answers
6k views

Get a list of all functions and procedures in an Oracle database

I'm comparing three Oracle schemas. I want to get a list of all the functions and procedures used in each database. Is this possible via a query? (preferably including a flag as to whether they ...
5
votes
2answers
134 views

Large performance difference: Using sysdate vs using pre-formatted date

Why is there such a huge performance difference between these two queries? -- (89 seconds) SELECT max(mydate) FROM mytable WHERE eqpid = 'ABCDEFG' AND mydate < sysdate - 5 vs. -- (0.6 seconds) ...
4
votes
3answers
140 views

pl/sql function called how many times?

Assume you have the following update: Update table set col1 = func(col2) where col1<>func(col2) The func function is evaluated two times for every row, or once for every row? Thanks,
4
votes
2answers
141 views

Why does select max(field) from table work so fast as compared to select min(field) from table, Oracle 9i

i ran into the chance of running a select max statement in Oracle 9i and it ran very fast. select max(id) from audit_log; select min(id) from audit_log; However when running a select min, the ...
4
votes
5answers
773 views

Close SQLDataSource Connection

I bind a SQLDataSource to a GridView using GridView.DataBind() and these queries often take a significant time to execute. What code would cancel an in-progress DataBind()? I can't seem to find ...
4
votes
2answers
653 views

oracle 9i get highest member of tree with given child

I have a parent-child relationship in an Oracle 9i database-table like: parent | child 1 | 2 2 | 3 2 | 4 null | 1 1 | 8 I need to get the absolute parent from a given ...
3
votes
6answers
69 views

Using distinct on a column and doing order by on another column gives an error

I have a table: abc_test with columns n_num, k_str. This query doesnt work: select distinct(n_num) from abc_test order by(k_str) But this one works: select n_num from abc_test order ...
3
votes
2answers
68 views

Finding the datatype of a cursor or table column in a block

Is is possible to find out the datatype of a column of a cursor or variable within block without using system tables? While I understand that I can use the system tables to find out this information ...
3
votes
1answer
63 views

Create table from select in Oracle

I would like to do something like this: create table NEW_TABLE (select * from OLD_TABLE where id=3582) And have a new table created from the resulting columns of that select statement. I bet its ...
3
votes
2answers
324 views

ORA-01008: not all variables bound. They are bound

I have come across an Oracle problem for which I have so far been unable to find the cause. The query below works in Oracle SQL developer, but when running in .NET it throws: ORA-01008: not all ...
3
votes
1answer
216 views

Oracle proprietary joins- joining on multiple conditions

I've the follwing 2 versions of ANSI compliant SQL(column/table names changed to protect confidential data), of which one of them satisfies my requirement by following the right logic while the other ...
3
votes
2answers
2k views

Node.js + Oracle 9i Database

I am new to node.js and I already did my research with no success, so that is my question: It is possible to use Node.js with an Oracle 9i Database? If so, where do I find some stuff about it? ...
3
votes
2answers
173 views

SQL Statement - Query a set of records with the most recent date

I'm writing a View in Oracle 9 database, and I'm stumped. What I'm trying to solve is this: A_WPD_ADDRESS_HISTORY contains a FK called WPD_PLAN_CHECK_S, and this view holds multiple addresses for ...
3
votes
4answers
237 views

Get me the clear picture of outer joins in Oracle 9i

Outer joins seem to me a little bit confusing. Is there anyone can get me a clear picture of outer joins (right, left and full)?
3
votes
1answer
262 views

Why does Linq to Nhibernate produce an outer join

I have an issue with Linq to Nhibernate producing queries with outer joins. For example: return Session.Linq<ClientContact>().Where(c => c.Client.Id = 13).ToList(); Produces a query ...
3
votes
3answers
1k views

How can you tell which columns are unused in ALL_TAB_COLS?

When you query the ALL_TAB_COLS view on Oracle 9i, it lists columns marked as UNUSED as well as the 'active' table columns. There doesn't seem to be a field that explicitly says whether a column is ...
3
votes
3answers
10k views

UTL_FILE.FOPEN() procedure not accepting path for directory?

I am trying to write in a file stored in c:\ drive named vin1.txt and getting this error .Please suggest! > ERROR at line 1: ORA-29280: invalid > directory path ORA-06512: at > ...
3
votes
3answers
472 views

Better way to set unix permissions when deploying war file

We have a vendor application where we download their updates and deploy a war file. We are deploying the war file on a unix application server running oracle application server 9i. I believe when we ...
3
votes
4answers
575 views

SQL - join up two separate sql queries

I have a table that stores the page hits on a web application, storing unique_row_id http_session_id page_name page_hit_timestamp ---------------------------------------------------------------- ...
3
votes
4answers
9k views

Hibernate > CLOB > Oracle :(

I am trying to write to an Oracle clob field a value over 4000 characters. This seams to be a common issue but non of the solutions seem to work. So I pray for help from here. Down and dirty info: ...
3
votes
3answers
1k views

Oracle 9 - Resetting Sequence to match the state of the table

I have a sequence used to seed my (Integer based) primary keys in an oracle table. It appears this sequence has not always been used to insert new values into the table. How do I get the sequence ...
2
votes
1answer
132 views

Remove all characters after a specific character in PL/SQL

How do I get a substring from this example value: john.abc_1234 I want it to return john.abc.So basically we need to remove all the information after _. More examples: 1234_abc
2
votes
2answers
57 views

Selecting all rows after a row with specific values without repeating the same subquery

I have a table t1 and t2 which I join and order to form data set set1. Two columns c1 and c2 form a unique identifier for the rows in set1. I want to get all values from set1 after the first row ...
2
votes
2answers
180 views

Oracle PL/SQL - How to create a simple array variable?

I'd like to create an in-memory array variable that can be used in my PL/SQL code. I can't find any collections in Oracle PL/SQL that uses pure memory, they all seem to be associated with tables. ...
2
votes
4answers
74 views

PL/SQl question, oracle 9i

We have a scenario here where we need to return the car if the below condition is not true and not return anything (or null)if its true table-> from car_list condition where color = red and ...
2
votes
2answers
100 views

Oracle 9i - Optimizer Issues with Date Arithmetic?

We have a query that includes (but has other joins, tables and where conditions): SELECT o.contact_id, o.completed_date, o.submitted_date FROM orders o /* 860,000 row table */ WHERE ...
2
votes
1answer
717 views

MVC3 with Oracle use ADO.NET would like a nice way of using IEnumerable

I'm converting a web forms application to mvc3 , for the current database it is calling asmx web services returning datasets. Since I'm rebuilding quite a bit of the application I really have no need ...
2
votes
2answers
80 views

PL/SQL - Oracle 9.1

Here is the scenario we are working on here. We have a customer table and a sales table. The tables join via the transaction ID in cust table. A customer can buy any fruit from the store. What we ...
2
votes
1answer
269 views

Conditional INSERT / UPDATE in Oracle 9i (PL / SQL)

I am trying to build a query to INSERT or UPDATE / DELETE a row depending on some conditions. I was trying to use the MERGE clause but it has some restrictions that doesn't let me change some fields. ...
2
votes
2answers
104 views

Oracle/SQL - Grouping items by action by day over time

Hi all I have a 'widget' table that has the following columns: widget, action, timestamp_. What we want to do is pull all the widgets that were rejected more than once a day between certain dates. So ...
2
votes
5answers
64 views

Make Oracle 9i use indexes

I'm having a performance issue when deploying an app developed on 10g XE in a client's 9i server. The same query produces completely different query plans depending on the server: SELECT DISTINCT ...
2
votes
1answer
64 views

analyzing STATSPACK report

I am looking for a free tool that can analyzes ORACLE 9i statspack report and recommend ways to optimize the DB. Is there such a tool or something similar ?
2
votes
3answers
1k views

How to avoid DIVIDE BY ZERO error in an SQL query

SELECT YEAR, period, round((1- sum(rej_qty) / sum(recd_qty))*100, 0) FROM TAB_A WHERE sid = '200' AND sdid IN ('4750') AND ( ( YEAR ='2011' AND period ...
2
votes
2answers
439 views

Is view faster than a natural join in Oracle? what about postgresql?

SELECT cec.* FROM mam.category cec SELECT cec.year, ces.* FROM mam.subcategory ces JOIN mam.category cec ON CEC.CATEGORY_ID = CES.CATEGORY_ID SELECT cec.year, ceo.* FROM mam.options ceo ...
2
votes
4answers
229 views

How do we optimize oracle database?

We have a Oracle 9i Database with 7 tables each with 15+ Million records. There is no relation between the table i.e. no foreign keys. Here is an example of one of the tables CREATE TABLE ...
2
votes
1answer
320 views

Timezone offsets in oracle

Using Oracle 9.2i I need to get the offset of various dates from one timezones in relation to another timezone, previously I did this as such select (TO_DATE('10-Oct-2010 09:00:00','DD-Mon-YYYY ...
2
votes
1answer
832 views

Specify IBatis query timeout

There is a way to specify IBatis query timeout using oracle jdbc and Java? Thanks
2
votes
5answers
449 views

SQL - Specified Alphabetical Order

I want a specific order for the Completion_Status column as in: Completed, Passed, Incomplete & Failed How do I do I order this? I want to define the order above. I tried CASE but it give me an ...
2
votes
1answer
40 views

Where is all_nested_table_cols in 9i?

Oracle 9i has nested tables, however it doesn't have the all_nested_table_cols sysview (like 10g and 11g) which lets me see what the columns are for these nested tables. How can I find this ...
2
votes
1answer
738 views

Inline functions in pl/sql?

I have 5 lines of code as function which is being called 100000 times is there a way to make the function inline so that I don't experienced a call overhead in PL/SQL. Oracle 9i is the version I am ...
2
votes
1answer
980 views

DBMS_OUTPUT.NEW_LINE and DBMS_OUTPUT.NEW_LINE() difference?

What is the difference between these two statements? dbms_output.new_line(); // with no parameters. dbms_output.new_line; // with no parameters,no round brackets If there is function ...
2
votes
1answer
220 views

Creating a view using subquery,with alias for columns in ORACLE 9i!

CREATE VIEW employee_vu AS( SELECT employee_id,last_name "employee",department_id FROM employees); I am giving alias of columns in lower case ,and in it is stored in lower case after doing ...
2
votes
2answers
393 views

Oracle analytic function window defined by data

I have a table which represents a line-by-line dump of the data read from a particular text file format. Each line may represent a "master" or a "detail" line, indicated via rec_type code. I'd like to ...
2
votes
8answers
322 views

How can I know which values are numeric in oracle 9i

I have this database which contains a varchar. I want to know which records holds numeric values. I tried REGEXP_COUNT and other but I'm running on 9i and I think this is for 10g > How can I ...
2
votes
6answers
804 views

Pattern Matching with Like Clause

I am attempting to use a LIKE clause in a SQL statement to match a certain pattern within Oracle. I would like to do something as such: LIKE '[A-Z][A-Z][1-4]%' ..but I can't use a regex because ...
2
votes
2answers
287 views

Oracle Date format - Strange behaviour

I am writing a SQL query to retrive data from a table between two dates. I give two inputs as shown. I convert the Date TO_CHAR(DD/MON/YYYY). 1. StartDate > 01/SEP/2009 EndDate < ...

1 2 3 4 5 6