Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle synonym procedure

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

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

PREVIOUS NEXT
Code Example
Sql :: create table if not exists 
Sql :: index postgres 
Sql :: mysql delete duplicate rows except one 
Sql :: 0 
Sql :: json_modify sql server 
Sql :: neo4j command to run script file 
Sql :: sql join on wildcard 
Sql :: how to install sql server management studio in ubuntu 18.04 
Sql :: how to declare variable date in mysql 
Sql :: how to get last element sql 
Sql :: except in sql 
Sql :: query to get all primary keys and foreign key 
Sql :: postgres create trigger if not exists 
Sql :: postgres advance auto increment 
Sql :: sql select statements 
Sql :: timestamp(0) postgresql 
Sql :: Insufficient memory to excute the sql query 
Sql :: mysql earlier than date 
Sql :: alter rename command in mysql 
Sql :: joint query 
Sql :: if exist column in table drop sql query mysql 
Sql :: can sqldatareader be null 
Sql :: sql procedure 
Sql :: postgresql multiple insert with subquery 
Sql :: how to exit mysql terminal 
Sql :: sql check 
Sql :: SQL SELECT-Klausel 
Sql :: insert overwrite table in mysql in nifi 
Sql :: make a socket server to detect changes in mysql 
Sql :: mysql and or 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =