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 :: left join with only first record 
Sql :: sql where last 12 months 
Sql :: sql current_timestamp 
Sql :: O SGBD MySQL utiliza um schema próprio para o armazenamento das tabelas que compõem o dicionário de dados. Marque a alternativa que indica o nome do s 
Sql :: insert all or first in oracle sql 
Sql :: sql server utc to local 
Sql :: postgres check blocking 
Sql :: postgres check timezone 
Sql :: mysql remove definers 
Sql :: hibernate with springboot mysql 
Sql :: mysql full outer join java 
Sql :: mysql show carset 
Sql :: delete top 100 rows in sql server 
Sql :: sql join exists 
Sql :: What is the compatibility level of a SQL database 
Sql :: drop table if exists oracle 
Sql :: mysql trigger after update 
Sql :: how to change owner in postgres 
Sql :: get all table names in sql 
Sql :: how to delete table sqlite 
Sql :: postgres make sql dump 
Sql :: import .sql into postgres db command 
Sql :: how to get slow query log in mysql 
Sql :: mysql root localhost run 
Sql :: mysql connection string 
Sql :: oracle sql create view 
Sql :: mysql alter table set column unique 
Sql :: mysql last year 
Sql :: oracle sessions_per_user 
Sql :: how to alter table column name in mysql 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =