All'inizio hai bisogno di una tabella temporanea:
create global temporary table TBL_TMP_CLOB
(
c_clob CLOB
)
Al secondo utilizzo 'Inserisci da Seleziona':
INSERT INTO [email protected](rem_clob) SELECT * FROM TBL_TMP_CLOB;
All'inizio hai bisogno di una tabella temporanea:
create global temporary table TBL_TMP_CLOB
(
c_clob CLOB
)
Al secondo utilizzo 'Inserisci da Seleziona':
INSERT INTO [email protected](rem_clob) SELECT * FROM TBL_TMP_CLOB;