Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle synonym procedure 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 :: concatenate text from multiple rows into a single text stringin SQL Server 
Sql :: tsql find the value and count of the item that occurs the most in a column 
Sql :: Creating aMySQL database and a table 
Sql :: mysql configuration file storage location 
Sql :: cast find duration in sql 
Sql :: how to see password mysql vestacp 
Sql :: sql find record cannot cast date 
Sql :: salesforce cpq apply immediately 
Sql :: add sql file to seeder 
Sql :: geopoint from json mysql function 
Sql :: phone number data type in sql 
Sql :: dollar format in sql server 
Sql :: MySQL copy row with * 
Sql :: database schema for mcqs type exam in sql 
Sql :: mysql drop table 
Sql :: add new column in table 
Sql :: delete duplicate sql 
Sql :: how to find constraints on a table in oracle 
Sql :: oracle temp tablespace size 
Sql :: sql split comma separated string into rows 
Sql :: data structures in sql 
Sql :: wincc 7.4 to sql stackoverflow 
Csharp :: but dotnet-ef does not exist. 
Csharp :: c# get executable path 
Csharp :: loop over object properties c# 
Csharp :: unity how to convert to byte 
Csharp :: c# for each textbox lines 
Csharp :: unity check for internet connection 
Csharp :: how to change the color of your text in c# 
Csharp :: Linq - Random Elements 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =