Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle synonym

-- Can be a table, package, procedure...
CREATE OR REPLACE SYNONYM syn_name FOR my_schema.my_table;      
CREATE OR REPLACE PUBLIC SYNONYM syn_name FOR my_schema.my_table;

-- Through a dblink:
CREATE OR REPLACE SYNONYM syn_name FOR my_schema.my_table@my_dblink;

SELECT * FROM DBA_SYNONYMS WHERE SYNONYM_NAME = 'synonym_name';
Comment

synonym oracle

CREATE OR REPLACE PUBLIC SYNONYM suppliers FOR app.suppliers;
Comment

PREVIOUS NEXT
Code Example
Sql :: sql queries practice 
Sql :: how to find 2nd highest salary in mysql 
Sql :: mysql order by list 
Sql :: how to print out column name differently in mysql 
Sql :: postgresql add not null and not empty constraint 
Sql :: mysql curdate between two dates 
Sql :: select row with latest date mysql 
Sql :: oracle procedure teamplate 
Sql :: mysql with docker 
Sql :: asp.net core sql server stored procedure 
Sql :: what is common table expression in sql 
Sql :: inner join vs outer join 
Sql :: mysql_union 
Sql :: sql file in postgres with pgadmin 
Sql :: call rest api from postgresql 
Sql :: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client . Can not run php artisan migrate 
Sql :: how to create notes in mysql 
Sql :: oracle database status v$logfile 
Sql :: exectuer myssql .sql 
Sql :: sql int vs integer 
Sql :: how to order result of subquery in select 
Sql :: sql int +1 
Sql :: ring SQLite sqlite_open 
Sql :: ms sql bacup table 
Sql :: Template MySQL Zabbix agent 
Sql :: the most common use php method 
Sql :: Find Last Fractal Function MQL4 
Sql :: Components/Fields of Internal Table 
Sql :: SQL RIGHT JOIN With AS Alias 
Sql :: how do you execute the fragment or sqlBatch using scriptdom 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =