Sql error ora 02291

ORA-02291: Integrity Constraint-Parent Key Not Found (WWV_FLOW_FND_GU_INT_G_FK) — When Importing A Workspace In APEX — ORDS(with Weblogic) (Doc ID 1992236.1) Last updated on OCTOBER 25, 2022 Applies to: Symptoms Steps to reproduce: 1) In APEX Instance #1 , create a developer accountand assign it to one (or all) of the pre-created user groups: RESTfulServices, […]

Содержание

  1. ORA-02291: Integrity Constraint-Parent Key Not Found (WWV_FLOW_FND_GU_INT_G_FK) — When Importing A Workspace In APEX — ORDS(with Weblogic) (Doc ID 1992236.1)
  2. Applies to:
  3. Symptoms
  4. Cause
  5. To view full details, sign in with your My Oracle Support account.
  6. Don’t have a My Oracle Support account? Click to get started!
  7. Oracle / PLSQL: ORA-02291 Error Message
  8. Description
  9. Cause
  10. Resolution
  11. Option #1
  12. ORA-02291: Integrity Constraint,parent Key Not Found Error Code: 2291 Call: Insert Into MEDIATOR_RE (Doc ID 2494061.1)
  13. Applies to:
  14. Symptoms
  15. Changes
  16. Cause
  17. To view full details, sign in with your My Oracle Support account.
  18. Don’t have a My Oracle Support account? Click to get started!
  19. ORA-02291: integrity constraint violated — parent key not found
  20. Answers
  21. ORA-02291: integrity constraint violated — parent key not found
  22. Answers

ORA-02291: Integrity Constraint-Parent Key Not Found (WWV_FLOW_FND_GU_INT_G_FK) — When Importing A Workspace In APEX — ORDS(with Weblogic) (Doc ID 1992236.1)

Last updated on OCTOBER 25, 2022

Applies to:

Symptoms

Steps to reproduce:

1) In APEX Instance #1 , create a developer account
and assign it to one (or all) of the pre-created user groups: RESTful
Services, SQL Developer, OAuth2 Client Developer.

2) Export this workspace.

3) In APEX Instance #2, log in as instance administrator and open Manage
Workspaces / Import Workspace page.

4) Upload the export file from Step 2 and complete the import wizard — the
following error is displayed:

Execution of the statement was unsuccessful. ORA-02291: integrity constraint
(APEX_040200.WWV_FLOW_FND_GU_INT_G_FK) violated — parent key not found

This error occurs because pre-created user groups (SQL Developer, etc) do not
have the same IDs in two APEX instances.

ORA-02291: integrity constraint (APEX_040200.WWV_FLOW_FND_USER_GRPS_FK) violated — parent key not found when importing a workspace into a newly reinstalled instance

Cause

To view full details, sign in with your My Oracle Support account.

Don’t have a My Oracle Support account? Click to get started!

In this Document

My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.

Oracle offers a comprehensive and fully integrated stack of cloud applications and platform services. For more information about Oracle (NYSE:ORCL), visit oracle.com. пїЅ Oracle | Contact and Chat | Support | Communities | Connect with us | | | | Legal Notices | Terms of Use

Источник

Oracle / PLSQL: ORA-02291 Error Message

Learn the cause and how to resolve the ORA-02291 error message in Oracle.

Description

When you encounter an ORA-02291 error, the following error message will appear:

  • ORA-02291: integrity constraint violated — parent key not found

Cause

You tried to reference a table using a unique or primary key, but the columns that you listed did not match the primary key, or a primary key does not exist for this table.

Resolution

The option(s) to resolve this Oracle error are:

Option #1

This error commonly occurs when you have a parent-child relationship established between two tables through a foreign key. You then have tried to insert a value into the child table, but the corresponding value does not exist in the parent table.

To correct this problem, you need to insert the value into the parent table first and then you can insert the corresponding value into the child table.

For example, if you had created the following foreign key (parent-child relationship).

Then you try inserting into the products table as follows:

You would receive the following error message:

Since the supplier_id value of 5000 does not yet exist in the supplier table, you need to first insert a record into the supplier table as follows:

Then you can insert into the products table:

Источник

ORA-02291: Integrity Constraint,parent Key Not Found Error Code: 2291 Call: Insert Into MEDIATOR_RE (Doc ID 2494061.1)

Last updated on OCTOBER 21, 2021

Applies to:

Symptoms

On : 12.2.1.3.0 version, Fabric

While using a composite with mediator, execution after running a purge is throwing the error as below.
ORA-02291: integrity constraint (OPS_SOAINFRA.MEDIATOR_GROUP_STATUS_FK1) violated — parent key not found

ERROR
————————
Got an exception: Exception [EclipseLink-4002] (Eclipse Persistence Services — 2.6.5.v20170607-b3d05bd): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-02291: integrity constraint (OPS_SOAINFRA.MEDIATOR_GROUP_STATUS_FK1) violated — parent key not found Error Code: 2291 Call: Insert into MEDIATOR_RESEQUENCER_MESSAGE (ID,OWNER_ID,COMPONENT_DN,OPERATION,LEVEL_DETAIL2,GROUP_ID,SEQUENCE_ID, CREATION_DATE,NEXT_SEQUENCE_ID, SOURCE_URI,STANDARD_SEQUENCE_ID,STATUS,INSTANCE_CREATED,property1,property2,DUMMY1,FLOW_ID,SCA_PARTITION_ID,PARTITION_DATE) values (. systimestamp at time zone ‘UTC’. ) bind = 4

Changes

Cause

To view full details, sign in with your My Oracle Support account.

Don’t have a My Oracle Support account? Click to get started!

In this Document

My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.

Oracle offers a comprehensive and fully integrated stack of cloud applications and platform services. For more information about Oracle (NYSE:ORCL), visit oracle.com. пїЅ Oracle | Contact and Chat | Support | Communities | Connect with us | | | | Legal Notices | Terms of Use

Источник

ORA-02291: integrity constraint violated — parent key not found

Hi all,
I have two tables
A,B

A has primary key referenced as foreign key in B table

When I need to dleete some rows from table A.But when i tried to delete them,Iwas thrown with the error.
ORA-02292: integrity constraint (string.string) violated — child record found

So idisble the constraint from table B.
AFter that i delete the rows from table A and reserted some other rows.
But now when i try to enable the constraint,I am getting this error.
ORA-02291: integrity constraint (string.string) violated — parent key not found.

How to overcome this situation?

Answers

Error: ORA 2291
Text: integrity constraint (%s.%s) violated — parent key not found
——————————————————————————-
Cause: Attempted to insert or update values that do not have corresponding
Parent key values.
Action: obvious.

Explanation:
If you have a FOREIGN KEY constraint on a table you cannot INSERT
or UPDATE rows such that they would not have a matching PARENT
in the MASTER table.
>

Refer to metalink Doc ID: Note:19524.1

Yes you are getting the correct error .

If Oracle allows you to do this that is allow you to insert into the foreign key column without corresponding primary key then What is the purpose of enforcing primary and foreign key or parent child relationship.

In your case you can only insert into the foreign key if you have the corresponding entry in the Primary key.

If at the time of creating foreignn key, you have use «On delete cascade or On delete set null» Then you can simply delete the primary key without doping anything to the foreign key. Corresposnding values for the foreignn key will automatically be deleted or set to null.

When you enable the constraint it check existing data also. so overcome from this situation enable the constraint with novalidate option so it check for future insertion only not check existing data.

Edited by: Vivekdhiman on Oct 21, 2008 12:12 PM

The correct answer is to ensure that you DO have the parent key values — ie in the Parent table.

You would use NOVALIDATE only under exceptional circumstances — eg you are «fixing» data which was erroneous OR that you need to ignore existing rows but want the constraint enabled for future rows to be inserted after this point in time.

I have a table A which has a column x as primary key.
This column x is referenced in column y of table B.
Now as per my understanding,table A is the primary table and table B is the foriengn key table.
On deleteing from table A,i got the error child record found as x is foreign key in table B.
I disabled the foriegn key constraint in table B.
I deleted the rows from table A.
I,then reserted some rows in tbale A.
I committed the transaction.
Now I want to enable the foriegn key constraint in table B.
But I am getting parent key not found.

I have records in parent table ie table A. I am not inserting in table B[foreign key table].
I inserted in table A.
The situation is like this.

table A table B
x y
1 1
2 1
3 2
4 3
5
6
7
8

Now when i enable cforiegn key constraint in table B,I get parent key not found,but all the parent key is present in table A.
I inserted 5,6,7,8 in table A after deleting some records.

Edited by: MYH on Oct 21, 2008 12:33 AM

SQL> create table parent1(id number primary key);

SQL> insert into parent1 values(&i);
Enter value for i: 1
old 1: insert into parent1 values(&i)
new 1: insert into parent1 values(1)

SQL> /
Enter value for i: 2
old 1: insert into parent1 values(&i)
new 1: insert into parent1 values(2)

SQL> /
Enter value for i: 3
old 1: insert into parent1 values(&i)
new 1: insert into parent1 values(3)

SQL> /
Enter value for i: 4
old 1: insert into parent1 values(&i)
new 1: insert into parent1 values(4)

SQL> create table child1(id number CONSTRAINT FK_ID references parent1(id));

SQL> insert into child1 values(&i);
Enter value for i: 1
old 1: insert into child1 values(&i)
new 1: insert into child1 values(1)

SQL> /
Enter value for i: 1
old 1: insert into child1 values(&i)
new 1: insert into child1 values(1)

SQL> /
Enter value for i: 3
old 1: insert into child1 values(&i)
new 1: insert into child1 values(3)

SQL> /
Enter value for i: 2
old 1: insert into child1 values(&i)
new 1: insert into child1 values(2)

SQL> /
Enter value for i: 4
old 1: insert into child1 values(&i)
new 1: insert into child1 values(4)

SQL> select * from parent1;

SQL> delete from parent1 where > delete from parent1 where > *
ERROR at line 1:
ORA-02292: integrity constraint (SCOTT.FK_ID) violated — child record found

SQL> select constraint_name,constraint_type from user_constraints where table_name=’CHILD

SQL> ALTER TABLE CHILD1 DISABLE CONSTRAINT FK_ID;

SQL> delete from parent1 where >
1 row deleted.

SQL> ALTER TABLE CHILD1 ENABLE CONSTRAINT FK_ID;
ALTER TABLE CHILD1 ENABLE CONSTRAINT FK_ID
*
ERROR at line 1:
ORA-02298: cannot validate (SCOTT.FK_ID) — parent keys not found

SQL> INSERT INTO PARENT1 VALUES(1);

SQL> ALTER TABLE CHILD1 ENABLE CONSTRAINT FK_ID;

Источник

ORA-02291: integrity constraint violated — parent key not found

I have a row in parent table. I am using the same sequence from the parent table during insertion. (In fact I am getting the sequence from the drop down during insertion in plsql developer tool). Still I am getting this error.

1) Parent table’s primary key is Child table’s primary key as well as foreign key.
2) Parent table’s primary key is referred as primary key in some other child table as well.
3) But not using Supertype-Subtype relationship. Just direct reference

Can you please tell me why am I getting this error.

Answers

Because the integrity check is made immediately, and the database is temporarily inconsistent.
When you set the foreign key to be deferred it will evaluate at commit, when everything should be ok again.

———
Sybrand Bakker
Senior Oracle DBA

I am assuming you know the fact that by this design, your Parent can have a Single Child. Hence, a change in Business req, to support multiple childs can be a headache for you.>

Can you please let me know why can’t I have more than 1 table. As I mentioned in my 2nd point, I have more than 1 child table for a same parent.

sybrand_b wrote:
Because the integrity check is made immediately, and the database is temporarily inconsistent.
When you set the foreign key to be deferred it will evaluate at commit, when everything should be ok again.

———
Sybrand Bakker
Senior Oracle DBA

Curious to understand this.

In below test case (which I am assuming is on same lines as OP’s):
In this test case, an Integrity was made immediately and reported an error.

Can you please explain if I misunderstood your point?

I am assuming you know the fact that by this design, your Parent can have a Single Child. Hence, a change in Business req, to support multiple childs can be a headache for you.>

Can you please let me know why can’t I have more than 1 table. As I mentioned in my 2nd point, I have more than 1 child table for a same parent.

I never mentioned «can’t I have more than 1 table». I was talking in terms of Records.

Say, your Parent ID 1, can possibly have more than 1 child (speaking in General terms excluding your Requirements), hence if you keep your Foreign Key as Primary Key, your Table would not allow you, would it?
I do understand that you being knowledgeable about your requirements have designed the Tables accordingly, I was just raising a concern I saw.

No Objections to your design.

Источник

May 1, 2021

I got ” ORA-02291: integrity constraint (string.string) violated – parent key not found ” error in Oracle database.

ORA-02291: integrity constraint (string.string) violated – parent key not found

Details of error are as follows.

ORA-02291: integrity constraint (string.string) violated - parent key not found

Cause: A foreign key value has no matching primary key value.

Action: Delete the foreign key or add a matching primary key.




integrity constraint (string.string) violated – parent key not found

This ORA-02291 errors are related with the foreign key value has no matching primary key value.

To solve this error, you need to drop the foreign key or add a matching primary key.

Or firstly you need to insert the same value into the parent table, then you can insert the value into child table.

For example; I have 2 table which has relation between two table with EMPLOYEE_ID column as follows.

CREATE TABLE EMPLOYEE
( EMPLOYEE_ID numeric(10) not null,
NAME varchar2(50) not null,
LAST_NAME varchar2(50),
CONSTRAINT emp_pk PRIMARY KEY (EMPLOYEE_ID)
);

CREATE TABLE MANAGER
( ID numeric(10) not null,
EMPLOYEE_ID numeric(10) not null,
CONSTRAINT fk_EMPLOYEE
FOREIGN KEY (EMPLOYEE_ID)
REFERENCES EMPLOYEE (EMPLOYEE_ID)
);

I have inserted the following record.

INSERT INTO MANAGER (ID, EMPLOYEE_ID) VALUES (10, 63);

But I got this error, because 63 employee_id doesn’t exist in the employee table. So You need to insert this record to parent table, then you can insert the child table as follows.

INSERT INTO EMPLOYEE (EMPLOYEE_ID, NAME, LAST_NAME) VALUES (63, 'Mehmet ', 'Deveci ');

Then you can insert into the MANAGER table:

INSERT INTO MANAGER (ID, EMPLOYEE_ID) VALUES (10, 63);

Or you need to drop the emp_pk constraint.

Do you want to learn Oracle Database for Beginners, then read the following articles.

Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )

 1,230 views last month,  3 views today

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

PC running slow?

  • 1. Download ASR Pro from the website
  • 2. Install it on your computer
  • 3. Run the scan to find any malware or virus that might be lurking in your system
  • Improve the speed of your computer today by downloading this software — it will fix your PC problems.

    If you have an error integrity constraint in Oracle on your system, I hope this guide will help you.

    ORA-02291 is usually followed by “Integrity message constraint – parent not found”. This means that you tried to reference this table using the primary key, but the posts you specified did not match the primary key type.

    [“Business Unit”: “Code”: “BU059”, “Label”: “IBM Software without GST”, “Product”: “Code”: “SSVSEF”, “Label”: “IBM InfoSphere DataStage”, ” Component” :””,”ARM Category”:[],”Platform”:[“code”:”PF025″,”label”:”Platform”,”Independent”],”Version”:”7.5.1″, “Issue “:””,”Industry”:”code”:”LOB10″,”label”:”Data & AI”]

    APAR Status

  • Closed Due To Error.

  • Error Description

  • Oracle Enterprise considers some constraint violations to be fatalErrors - Most restrictions for both are reported as an integrity error.sqlcode-1. There are several that fall outside the scope:ORA-02290: limits will bethis is the test condition(string.The string)hurtreason: inserted values ​​don't do itsatisfy the given check constraint.Action: N   insert which values ​​violateforced it.ORA-02291: integrity constraint (string-string)wounded foundReason: Guardian Key of the foreign Key value is the sameno primary key value.Action: remove the Australian key or add one that suits you.primary key.Restrictionora-02292: lifetime values ​​(string.string)wounded - foundReason: abstinence of the child. Attempting to remove the value "Mom", "Important" or "Dad".which dependency had on a foreign key.Action: Remove dependencies from duplicate content then parent first orDisable restriction.They must be created to be in the SQL list.oraUpsert code. which, c, according to experts, are more likely to be sent to the failure servicewhich cause a fatal error for encoding.
  • Local Solution

  • 
    
  • Issue Overview

  • ************************************************** ******* * **** IN A RELATIONSHIP:all S **** *********************custom platforms 7.5.1******************************************************* ******************************DESCRIPTION OF THE PROBLEM:The original patch that was deployed in Aprilal has a problem that is notpossible to perform.number of blocks'******************************************************* ******************************RECOMMENDATION:use the current patch number. Conclusion
  • We******************************************************* ******************************
  • Problem: It's Impossible To Reproduce The Look Of This Art. However, A New Patch Is Coming Out.The Last Code That Solved The Problem On The Client's Site.

  • Workaround

  • 
    
  • Comments

  • 
    
  • Information-apar

  • Apar Sys Is Routed In One Or More Of The Following Ways:

  • The

  • APAR Is Redirected By The System To One Or More Of The Following Devices:

  • Correct Information

    What are integrity constraints in Oracle?

  • Fixed Deposit Ratio Name

    WIS DATA

  • Fixed Component ID

    5724Q36DS

  • Applicable Components

  • PSN Levels R751

    UP

  • APAR Number

    JR28935

  • Name Of Component To Report

    What is Sqlstate 23000 integrity constraint violation?

    Error Database error: SQLSTATE[23000]: Violation of the integrity constraint itself means that your hug ‘s_id’ could be a primary key and therefore the system does not allow it to be null.

    WIS DATA

  • Id Of The Specified Component

    error integrity constraint in oracle

    5724Q36DS

  • Disclaimer Reported

    751

  • Status

    CLOSED

  • PE

    Not PE

  • HIPER

    Which action could cause an integrity constraint error?

    No HIPER

  • Special Attention

    No clarification

  • Filing Date

    2008-04-09

  • Closing Date

    2008-10-29

  • Last Year Of Release

    2008-10-29

  • The following example shows a bug, and there are a few fixes we can handle living in Oracle:

    PC running slow?

    ASR Pro is the ultimate solution for your PC repair needs! Not only does it swiftly and safely diagnose and repair various Windows issues, but it also increases system performance, optimizes memory, improves security and fine tunes your PC for maximum reliability. So why wait? Get started today!

    Error

    -- Create
    SQL> main table create cart testprimary(primary key id, name varchar2(10));
    The table has been created.
    -- Table Foregin create SQL> table
    Create testforeign(f_id f_name number, varchar2(10), number, foreign key(p_id) p_id recommendation testprimary(id) );
    the table has been created.

    insert

    What is integrity constraint violated?

    Constraints occur when an insert, update, or delete notification violates a primary key, a key, an external unique evaluation or constraint, or another index.

    — Data in your two tables
    Insert sql> basic test parameters (1, ‘RAM’);
    1 short period created.
    SQL> testprimary to values(2,’RAM2′);
    Insert 1 Creates scratches.
    Pastesql> in Testprimary(3,’RAM3′);
    Feed value 1 created.

    happened
    error integrity constraint in oracle

    — error:
    SQL> remove from where id testprimary is 1 testprimary;
    remove from where=detection 1
    *
    Internet Integrity Discipline, ERROR 1:
    ora-02292: (TEST.SYS_C008202) broken – child record
    found

    Reason
    If we try to successfully delete the data from the maintables, we will first remove the mention table (child table)
    When creating foreign keys, owners can specify an ON DELETE clause to indicate why rows behind the parent table are being deleted.
    ON DELETE If cascading: a row from the parent table is frequently deleted, everything from the child table row related to this short period will be deleted.
    ON DELETE SET NULL: and when the row of the parent row is deleted, all rows from the reference to table 1 to the row of this external content key are set to NULL.

    How do you resolve integrity constraint violated parent key not found?

    chain) parent – dishonored key not found. ORA-02291 Errors. They are related to the fact that the fundamental foreign instrument does not have a primary corresponding key market price. To fix this error, you need to remove the foreign key or add an important matching key. primary key. Violations.

    Option 1: Correct information about table search restrictions in data

    1. Find foreign table key name and column name from invalid constraint name:

    col for multiple owner table names a15
    Collar for a15
    column name column associated with a15
    primary owner pass for a10
    main constraint name col a15
    select for a.constraint_type,a.owner,a.table_name,b.column_name,a.r_owner "PrimaryOwner",a.All_constraints r_constraint_name "primaryconstraintname" from all_cons_columns a where
    A b.CONSTRAINT_NAME = b.CONSTRAINT_NAME and a.constraint_name is OWNER 'sys_c008202';

    c PrimaryOwn table_name column_name PrimaryConstrai- ————– ————— ————— ——————-R —— TEST FOREIGN TEST P_ID TEST SYS_C0082012. The best primary key of the table has now been found.
    Note. Use a longer query exit constraint name and enter the enforcement information key.

    col for table name a15
    Branded collar for working with a15
    column name column for a15
    main owner pass with a10
    Constraint name col is primary for a15
    select a.constraint_type,a.owner,a.table_name,b.column_name,a.r_owner "PrimaryOwner",a."PrimaryConstraintName", r_constraint_name created by a, all_constraints all_cons_columns b where
    A.CONSTRAINT_NAME means b.CONSTRAINT_NAME and a.constraint_name 'SYS_C008201';

    C = TABLE_NAME OWNER COLUMN_NAME PrimaryOwn PrimaryConstrai- —- ———– —- ————— —— ——— TEST ——p PRIMARY IDENTIFICATION TEST3. Now you can get any of our existing rows of numbers in the reverse child that you want to delete in the main table using IN clause query.

    -- I'm only giving you an example, you can also use it to delete data.
    select * from TESTFOREIGN where p_id is selected (when id comes from id testprimary where = 2:1;)

    option You can disableinclude or data with restrictions and operations performed

    Improve the speed of your computer today by downloading this software — it will fix your PC problems.

    What is integrity constraint in Oracle?

    Restrictions A constraint is a declarative means of defining a table rule for a single order. Oracle supports the following set of constraints: a pair of NOT NULL rules bound to null values ​​in another column.

    How do you resolve ORA 02292 integrity constraint violated child record found?

    To solve this problem, you must first allow them to update or delete a value in some child tables, and then be able to delete the corresponding value in the old table. For example, if you planned the following foreign key (child-parent relationship).

    When the below error occurs Ora 02292 integrity constraint violated PK ): child record found?

    The error concludes that “constraint fundamentally violates child element – record found.” This certainly indicates that the user was trying to delete a record from the parent table.Name (which is referred to by the international key), but the record exists in the child cabin.

    How do I disable referential integrity constraints in Oracle?

    Description. After creating a foreign key in Oracle only, you may need to disable the key in the global specific.Syntax. The syntax for disabling a new foreign key in Oracle/PLSQL is: ALTER TABLE table-name CONSTRAINT disable constraint-name;Example.ORA-02292

    What are integrity constraints in database?

    In database management systems, integrity constraints are predefined sets of rules that are explicitly applied to table fields (columns) or associations to ensure the overall validity, value, and consistency of the data present in a database table.

    Понравилась статья? Поделить с друзьями:
  • Sql error ora 01722 неверное число
  • Sql error ora 01653
  • Sql error ora 00972
  • Sql error ora 00942 table or view does not exist
  • Sql error ora 00936 missing expression