i'm having two DB (DB1 & DB2) in oracle SQL developer.I need to copy a column of DB1.table1 to the table of DB2.table2. I tried many times but its not working
INSERT INTO database1.table1 ( column1,column2 )SELECT (column1,column2) FROM database2.table2
please help. I want to insert only one row at a time.