oracle script to postgresql

Started by FERREIRA William (COFRAMI)almost 21 years ago2 messagesgeneral
Jump to latest
#1FERREIRA William (COFRAMI)
william.ferreira@airbus.com

hi,

i'm trying to port an oracle script to postgresql, but i don't find any
alternative for some problems
this is an extract of the oracle script :

DEFINE MDNSImportBlobDirectory = C:\Temp\_lm_\ExternalTablesSpace\mdns;
@createFraweWorkTables_script.ddl;
@createMDNSProcStockImport.sql &MDNSImportBlobDirectory;

so i need to declare variables and to pass them to others script

is there any alternative for doing this ?

Regards

Will

#2Guy Rouillier
guyr@masergy.com
In reply to: FERREIRA William (COFRAMI) (#1)
Re: oracle script to postgresql

FERREIRA William (COFRAMI) wrote:

hi,

i'm trying to port an oracle script to postgresql, but i don't find
any alternative for some problems this is an extract of the oracle
script :

DEFINE MDNSImportBlobDirectory =
C:\Temp\_lm_\ExternalTablesSpace\mdns;
@createFraweWorkTables_script.ddl; @createMDNSProcStockImport.sql
&MDNSImportBlobDirectory;

so i need to declare variables and to pass them to others script

is there any alternative for doing this ?

You can define variables in PG functions and pass them to other
functions:

DECLARE

numRows integer := 5;

BEGIN

perform add_5_min_table(numRows);

--
Guy Rouillier