oracle - SQL LOADER CONTROL FILE -
oracle - SQL LOADER CONTROL FILE -
i have loader command file.
load info replace table test when test_cd != 'a' , test_cd = 'b' , test_type_cd = 15 currently loading info when test_cd = 'b' , test_type_cd = 15 want modify when test_cd = 'b' test_type_cd = 15 too.. dont want load test_type_cd when 15.. want load when satisfies both condition.. keeping braces around going work.. plz 1 allow me know how can modify this..
i thinking confused need.. want first status satisfy 2nd , 3rd status 1 status not deed seperately.. illustration if test_cd not equal load info 2nd , 3rd status should deed 1 piece..when test_cd = b , test_type_cd 15 load data.. dont want test_type_cd apply other test_cd other b.. have 5 of test_cd b c d e.. want b apply test_type_cd = 15..
try
load info replace table test when test_cd = 'b' , test_type_cd = 15 -- load b , 15 table test when test_cd != 'a' , test_cd != b -- load not , not b (because loaded above) sql oracle sql-loader controlfile
Comments
Post a Comment