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.
Try creating Insert query in Excel(if data is not that huge):
like :
in AA1 cell write : 'INSERT INTO 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 write your own queries according to your requirement for INSERT STATEMENT.