Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
12:57:57 SQL> create synonym y for summit.x;
Synonym created.
(re-connect as user SUMMIT)
12:59:43 SQL> alter table x add (new_col number);
Table altered.
(re-connect as synonym-owning user)
select object_name,object_type,status from user_objects where object_name = 'Y';
OBJECT_NAME OBJECT_TYPE STATUS
--------------- ------------------- -------
Y SYNONYM VALID
1 row selected.