CREATE TABLE source_iot (A NUMBER(10), B CHAR(5), CONSTRAINT PK_source_iot PRIMARY KEY (A)) ORGANIZATION INDEX
Table created.
CREATE INDEX IX_source_iot ON source_iot (UPPER(B))
Index created.
CREATE TABLE dest (B CHAR(5))
Table created.
INSERT INTO dest (B) SELECT /*+ INDEX_FFS(source_iot IX_source_iot) */ UPPER(B) FROM source_iot WHERE UPPER(B) = 'hi'
0 row(s) inserted.
DROP TABLE source_iot
Table dropped.
DROP TABLE dest
Table dropped.