Problems caused by simultaneous OracleSchema names and Object names

Source: Internet
Author: User
Problems caused by simultaneous OracleSchema names and Object names

Problems caused by simultaneous Oracle Schema names and Object names

The Table name and Schema name are the same:

The schema and table names are both Arwen.
Schema Arwen contains a PKG package with the Plus function. The result of adding two numbers is returned.
SELECT Arwen. PKG. Plus (1, 2) FROM dual; -- no error occurred while executing this SQL statement. 3 is returned.
However, an error occurs in a pl/SQL block.
Declare
Result int;
Begin
Select Arwen. PKG. Plus (1, 2) into result from dual;
Dbms_output.put_line (result );
End;

If you Drop the table Arwen, the pl/SQL block is correctly executed. (If the names of other objects such as functions or views are the same as the schema, an error occurs)

Explanations

I thought it was a bit strange. I searched the internet and saw an introduction to the pl/SQL name resolution method on the Oralce official website. Here is a passage:
PL/SQL and SQL resolve qualified names differently.
For example, when resolving the table name HR. JOBS:
PL/SQL searches first for packages, types, tables, and views named HR in the current schema, and then for objects named JOBS in the HR schema.
SQL searches first for objects named JOBS in the HR schema, and then for packages, types, tables, and views named HR in the current schema.

It seems that you can understand the problem above. in SQL name parsing, when such a prefix with a dot number first resolves the Schema before the DoT number, then Arwen. PKG. plus (1, 2) is the first statement to set Arwen
Schema, and then PKG is parsed into the objects in the Schema. Here is the package. however, in PL/SQL, the preceding vertex is regarded as the object in the current schema, so that Arwen. PKG. in Plus (1, 2), Arwen is first parsed into the Arwen table, and then pkg is parsed into fields in the Table. An error occurs because no such field exists.

It seems that the Oracle document is correct. However, if you try another example, you still have a problem. The document says HR. JOBS is a table, which is not a good example. I will change JOBS to a function. example:
With Schema HR, in HR
There is a function job, (No parameter, the return string 'jobs of scheme ').
There is a package HR, and there is a function JOBS in the package (No parameter, the return string 'jobs of pkg ').
If, according to the document, select hr. jobs from dual; -- the returned value is jobs of schema.
In pl/SQL blocks
Declare
V_txt varchar2 (100 );
Begin
Select hr. JOBS into v_txt FROM dual;
Dbms_output.put_line (v_txt); -- print jobs of pkg.
End;
However, the actual results are jobs of pkg in SQL or pl/SQL.

Is it said in the official Oracle document that it is a pitfall?


No matter whether it is difficult or not, try not to make the object name and schema name the same, otherwise it is not easy to know what went wrong when there is a problem,
In fact, I didn't really like the syntax to study this problem, but I did encounter this problem at work. After a long time, I found the cause of this pain.
I encountered this problem in such a scenario. I used the FGA function and created some audit policies to record all schema DML operations. the Audit Policy calls a function in a package. The schema prefix is added before the package name. this prefix must be added. because DML operations in other schemas trigger Audit Policy calls, the function cannot be found without the schema prefix. As a result, the table name and schema name in the schema where the audit policy is located are the same, the result is a tragedy. all schemas trigger the audit policy when performing DML operations, and then call the function, but an error occurs during the call. this means that all schema DML operations cannot be completed, and it means that almost the whole database is useless. Think about the serious impact and then sweat, if the whole production environment is like this, I would probably be scolded ........

Recommended for editing: date and timestamp Time Difference Calculation for Oracle time

For more information about Oracle, see the Oracle topic page? Tid = 12

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.