Tuesday, October 24, 2017

Populate a Sequence Value in SQL * LOADER

LOAD DATA
INFILE *
INTO TABLE xx_test_seq_positional
(seq_number "xx_seq.nextval"
 column1 POSITION(1:5),
 column2 POSITION(6:15),
)

No comments:

Post a Comment

Query to get Parent and Child Accounts in Oracle APPS R12

SELECT ffv1.flex_value parent_account       ,ffvt1.description parent_account_desc   ,ffv2.flex_value child_account   ,ffvt2.description...