Au début, vous avez besoin d'une table temporaire :
create global temporary table TBL_TMP_CLOB
(
c_clob CLOB
)
À la deuxième, utilisez "Insérer à partir de la sélection" :
INSERT INTO [email protected](rem_clob) SELECT * FROM TBL_TMP_CLOB;
Au début, vous avez besoin d'une table temporaire :
create global temporary table TBL_TMP_CLOB
(
c_clob CLOB
)
À la deuxième, utilisez "Insérer à partir de la sélection" :
INSERT INTO [email protected](rem_clob) SELECT * FROM TBL_TMP_CLOB;