How to insert data directly from Excel to Oracle Database
问题 I would like to know how to insert data from Excel to Oracle meaning lets say i have a worksheet full of data and i want to insert them all into Oracle database. how do i do that? thanks in advance. 回答1: Try creating Insert query in Excel(if data is not that huge): like : in AA1 cell write : 'INSERT INTO <TABLE> VALUES(' then respective values from different cells(i.e. 'A1,'+'B1,'...+')') it will create Insert scripts in excel. Just copy the scripts and execute. these are sample queries, plz