Search Results

0
votes

Oracle - How to have an out ref cursor parameter in a stored procedure?

I don't like to answer a question with a question. But your question has raised two questions: 1) You say it "doesn't work". I take that to mean that Oracle is returning an exception when …
2
votes

How accurate is Oracle’s EXPLAIN PLAN?

Q: Are there any good ways to objectively measure a query's performance in Oracle 10g? Oracle tracing is the best way to measure performance. Execute the query an …
10
votes

Faster ‘select distinct thing_id,thing_name from table1’ in oracle

[LATEST EDIT] My ORIGINAL ANSWER regarding creating the appropriate index on (name,id) to replace the index on (name) is below. (That wasn't an answer to the original ques …
2
votes

relations in oracle objects?

[EDIT] I believe the question is referring to Oracle Objects for OLE (OO40) [/EDIT] For this example, consider a one-to-many relationship between order and line_item. (An order may have ze …
3
votes

Is it possible to use GROUP BY with bind variables?

I suggest re-writing the statement so that there is only one bind argument. This approach is kind of ugly, but returns the result set: select max(col1) , f_col2 from ( …
0
votes

How do I automatically reset a sequence’s value to 0 every year in Oracle 10g?

Sequences aren't really designed to be reset. But there are some cases where resetting a sequence is desirable, for example, when setting up test data, or merging production data back into a test …
6
votes

Oracle 8i Query Help

Here's one approach: select t.type as "Type" , sum(case when t.status = 'A' then 1 else 0 end) as "Count A" , sum(case when t.stat …
3
votes

How can I find the OWNER of an object in Oracle?

You can query the ALL_OBJECTS view: select owner , object_name , object_type from ALL_OBJECTS where object_name = 'FOO' To find synonyms: …
0
votes

In Oracle, is there a function that calculates the difference between two Dates?

Q: In Oracle, is there a function that calculates the difference between two Dates? Just subtract one date expression from another to get the difference expressed as a number of days …
1
vote

SQLPLUS queries

Here's an example, assuming the hostname is "nxgdev.ch.hibm.hsbc", the SID is D1PRO, and the listener is on default port 1521: sqlplus -s BANKREC/password@"(DESCRIPTION=(ADDRESS=(PRO …
1
vote

Oracle ‘identifier myschema.mytable must be declared’

The PLS-00201 exception seems a bit unusual to me, for the "privileges granted through a role not available in a stored procedure" problem. As Steve Broberg and Khb have already pointed out, gran …
0
votes

Oracle lag between commit and select

This sounds like an issue with RAC, with connections to two different instances and the SCN is out of sync. As a workaround, consider not closing the database connection and getting a new o …
5
votes

Oracle Syntax for Creating Database Link Owned by Another User

Sathya is correct, the syntax does not allow you to create a database link in another schema. Let's assume that you do have privilege to create a procedure in another schema, there is a workaround …
0
votes

Where can I query an oracle databases’ case-sensitivity?

For Oracle 10gR2 (and later), the parameters are NLS_COMP and NLS_SORT. select * from v$nls_parameters where parameter in ('NLS_COMP','NLS_SORT'); (These parameter …