Good morning friends, I hope you have an excellent Friday day !!! , I would like to be able to make a query, I have several insert - select and some are with the INSERT /*+APPEND */
sentence and others with the /*+APPEND NOLOGINS*/sentence, and I would like to know what the difference is please
-- examples
INSERT /*+APPEND */
INTO TTRB_TL_INT_PAG
(
TL_ORD_LIQ_NUM_ORD ,
NUM_INT_PAG
)
values
(
campo_1,
campo2
)
--examples 2
INSERT /*+APPEND NOLOGINS*/
INTO TTRB_TL_INT_PAG
(
TL_ORD_LIQ_NUM_ORD ,
NUM_INT_PAG
)
values
(
campo_1
campo2
)