oracle - Join parameters to make INFILE string in SQL Loader Control File -


i have below control file. parameter $i_chr_infile_name being passed via concurrent program parameter.

load data infile '$i_chr_infile_name' replace table <table_name> fields terminated "|" trailing nullcols . . . -- columns 

i want create 2 parameters in concurrent program , pass values control file, can -

load data infile '$parameter_1' || '$parameter_2' replace table <table_name> fields terminated "|" trailing nullcols . . . -- columns 

the parameters have values below -

$parameter_1 = /somepath/ $parameter_2 = filename 

i know, above doesn't work. passing values via concurrent program, don't want create host file concatenation me. there way in control file or magic can done concurrent program parameters.

oracle ebs version - r11, oracle db version - 11i


Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -