Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle synonym package dblink

CREATE OR REPLACE SYNONYM syn_name_proc FOR my_schema.my_procedure@my_dblink;
CREATE OR REPLACE SYNONYM syn_name_pkg my_schema.my_package@my_dblink;

-- Call:
BEGIN
	syn_name_proc@my_dblink();							-- procedure
	my_schema.syn_name_proc@my_dblink(param1, param2);	-- if parameters
	syn_name_pkg.my_proc@my_dblink();					-- my_proc in a package
END;
Comment

PREVIOUS NEXT
Code Example
Sql :: sql_inner_join 
Sql :: java input type sql date 
Sql :: how to save result of sqlite query in a table 
Sql :: fetching data from mysqldb 
Sql :: Windows internal database connection 
Sql :: mysql find char in string 
Sql :: exel bulk insert 
Sql :: how to make trigger in phpmyadmin 
Sql :: veri girme SQL 
Sql :: cassandra query example 
Sql :: oracle sql developer script output limit 
Sql :: ring execute SQL Statements on the database using the odbc_execute() 
Sql :: mysql collation for case sensitive 
Sql :: update top 100 order by sql server 
Sql :: oracle run_duration to number 
Sql :: sql xampp gabungan nama awal dan akhir 
Sql :: opensuse start MySQL 
Sql :: setval postgres example table id 
Sql :: mysql let join 
Sql :: my sql data file extention 
Sql :: mysql view command does not work - privileges problem 
Sql :: Time difference in hh:mm:ss 
Sql :: print intervals of 15 minutes in sql query 
Sql :: how to select only id where is not in column mysql 
Sql :: sql statement checker corrector 
Sql :: How to return only the Date from a SQL Server DateTime datatype 
Sql :: Laravel SQLSTATE[HY093] with array query 
Sql :: Sql testing queries 
Sql :: insert into one table from another table in oracle 
Sql :: i wanted to select among the rows the highest value in mysql 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =