ERROR:Insert or update on table"accnt" violates foreign key
constraints "acct_to_curr_symbol"
DETAILS:KEY(accnt_curr_id)(-2)is not
present in the table "curr_symbol" ......solve The Problem..
what is the Default Libraries for Oracle Report 6i
How do I start sql profiler?
What is the best strategy to use COMMIT in a pl/sql loop?
Why coalesce is used in sql?
What is sql injection vulnerability?
How delete all data from all tables in sql?
How to know the last executed procedure?
define sql
How is a PL/SQL code compiled?
what is meant by tuning and tk proof?
How to read xml file in oracle pl sql?
ename empno deptno amar 1 10 akbar 2 20 anthonny 3 30 jonathan 4 40 write a procedure to dispaly the column values ina row separated by a deleimiter eg - input - select ename from emp '|' output - amar|akbar|anthony|jonathan input - select empno from emp '@' o/p - 1@2@3@4 input - select deptno from emp '/' o/p - 10/20/30/40 Pls answer this questn.