ORA-14551: cannot perform a DML operation inside a query : ORA Error « System Packages « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » System Packages » ORA Error 
ORA-14551: cannot perform a DML operation inside a query
  
SQL>
SQL> CREATE TABLE myTable
  2     (num_col    NUMBER
  3     ,char_col   VARCHAR2(60));

Table created.

SQL>
SQL>
SQL>
SQL>
SQL>
SQL> CREATE TABLE emp (
  2     id         NUMBER PRIMARY KEY,
  3     fname VARCHAR2(50),
  4     lname  VARCHAR2(50)
  5   );

Table created.

SQL>
SQL>
SQL>
SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (1'A''B');

row created.

SQL>
SQL>
SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (2'C''D');

row created.

SQL>
SQL>
SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (3'Enn', 'F');

row created.

SQL>
SQL>
SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (4'G''H');

row created.

SQL>
SQL>
SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (5'G''Z');

row created.

SQL>
SQL>
SQL>
SQL>
SQL>
SQL>
SQL>
SQL> COLUMN char_col format a60
SQL> SELECT FROM myTable ORDER BY num_col;

no rows selected

SQL>
SQL>
SQL>
SQL> CREATE OR REPLACE FUNCTION FullName (p_empID  emp.ID%TYPE)
  2     RETURN VARCHAR2 IS
  3     v_Result  VARCHAR2(100);
  4   BEGIN
  5     SELECT fname || ' ' || lname INTO v_Result FROM emp WHERE ID = p_empID;
  6
  7     INSERT INTO myTable (num_col, char_col)VALUES (p_empID, 'called by FullName!');
  8
  9     RETURN v_Result;
 10   END FullName;
 11   /

Function created.

SQL>
SQL> show errors
No errors.
SQL>
SQL>
SQL> -- The same query will now raise an error.
SQL> SELECT FullName(IDfull_name
  2     FROM emp
  3     ORDER BY full_name;
SELECT FullName(IDfull_name
       *
ERROR at line 1:
ORA-14551: cannot perform a DML operation inside a query
ORA-06512: at "JAVA2S.FULLNAME", line 7


SQL>
SQL>
SQL>
SQL>
SQL> drop table myTable;

Table dropped.

SQL>
SQL>
SQL>
SQL>
SQL> drop table emp;

Table dropped.

SQL>
SQL>
SQL>

   
    
  
Related examples in the same category
1. ORA-00918: column ambiguously defined
2. ORA-00934: group function is not allowed here
3. ORA-00979: not a GROUP BY expression
4. ORA-01403: no data found
5. ORA-01403: no data found exception from procedure
6. ORA-01422: exact fetch returns more than requested number of rows
7. ORA-01426: numeric overflow
8. ORA-01839: date not valid for month specified
9. ORA-06502: PL/SQL: numeric or value error
10. ORA-06502: PL/SQL: numeric or value error: character to number conversion error
11. ORA-06502: PL/SQL: numeric or value error: number precision too large
12. ORA-06503: PL/SQL: Function returned without value
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.