0
votes
Oracle String Concatenation Operator
There's also concat, but it doesn't get used much
select concat('a','b') from dual;
…
2
votes
PL/SQL compilation fails with no error message
try
SHOW ERRORS PACKAGE BODY FLOWS_020000.WWV_FLOW_QUERY
…
2
votes
Find out name of PL/SQL procedure
If you are pre-10g, you can 'dig' (parse) it out of
dbms_utility.format_call_stack
Procedures/functions in packages can be overloaded (and nested), so the package name/line number is normally bette …
1
vote
Network Outage Causes Stored Procedure Querying Across DB Link to Hang Forever
What database version ? Are they stuck running SQL or in PL/SQL ?
Has anyone added exception handling into the routines recently ?
I remember in 9iR2, we were told that, instead or raising an excep …
1
vote
Oracle function concurrency
"You don't need to know at all what it is, its just a code that the function generates"
It must be time based then, because anything else and we WOULD need to know to be able to give an appropriate …
1
vote
What simple guidelines would you give your developers for writing good SQL against Oracle?
An hour long presentation on some Oracle fundamentals (eg parsing, SGA vs PGA). "Do this" rules may or may not apply to your situation. Give them an understanding of what the DB side does, and they …
5
votes
What is the best approach for decoupled database design in terms of data sharing?
Streams is the Oracle replication technology.
You can use MVs over database links (so database 'A' has a materialized view of the data from database 'B'. If 'B' goes down, the MV can't be refreshed …
1
vote
Database Deadlocks when using Rownum?
A deadlock occurs when transaction A locks a record then has to wait for transaction B to unlock a record, while transaction B is waiting on a record already locked by transaction A.
Oracle …
1
vote
Slow deletes from table with CLOB fields in Oracle 10g
Trace it, with waits enabled
http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_monitor.htm#i1003679
Find the trace file in the UDUMP directory. TKP …
1
vote
Oracle Database 10g VIEW performance
Are you talking the creation or replacement of an existing view (ie executing the CREATE OR REPLACE VIEW... statement) or selecting from a view.
In the former case, it is probably that some …
0
votes
Deleting a LOT of data in Oracle
If your original SQL takes a very long time, some concurrent SQLs may run slowly as they have to use UNDO to rebuild a version of the data without your uncommitted changes.
A compromise may …
0
votes
pl/sql Stored procedure… where does the execution time go?
What does the procedure do ?
One possible explanation may be DBMS_OUTPUT.
If, on SQL*Plus, you do a SET SERVEROUTPUT ON, after a statement has executed, the client does a 'behind-the-scenes' fetch …
0
votes
Oracle Analytics inside Cursor
The SQL you can use in Forms hasn't progressed in over a decade.
Dynamic SQL is the best answer. I think you should look at …
1
vote
How to fetch named column from row parameter dynamically in Oracle PL/SQL?
What's wrong with a IF/ELSIF
IF p_field_name = 'COL1' THEN v_value := p_record.col1
ELSIF p_field_name = 'COL2' THEN v_value := p_record.col2
...
END IF;
You c …
1
vote
How to show result when table is my type in Oracle
You can also do
select * from table(my_function(30))
…
