Hi @Sajid01
Oracle does not have schemas; it has users. In DB2, a user can issue a "CREATE SCHEMA" DDL statement. You can't do that in Oracle. It is common for Oracle DBAs to mimick schemas by creating a user, creating a bunch of objects under this user, then revoking connection privileges. In other words, it is a user who owns objects, but cannot connect to the database.
In the paper, SASUSERS is actually an Oracle user. I believe that the author refers to SASUSERS as a "public schema" because it is a set of database objects used by many people. The SCHEMA=sasusers enables the SAMJI user to transparently access the tables, view, etc. that are owned by SASUSER.
The author's description of PATH= is a little off, too. Here is how the author describes an Oracle Path:
The data of interest reside in the path called "nesug".
An Oracle Path contains the technical information (hostname, port, SID) needed to connect to an instance of Oracle. In other words, the Oracle database. I used an in-line path in the article. If you are interested in the details, take a look at it.
Best wishes, Jeff
... View more