ExcelデータをOracle DBにインポートしたい。Excel の部分については十分な助けが得られました。Oracle 側で助けてもらえますか?
filehelpers を使用してoracledbにインポートできますか? 参考までにサンプルコードを提供してください。
ありがとうディー
ExcelデータをOracle DBにインポートしたい。Excel の部分については十分な助けが得られました。Oracle 側で助けてもらえますか?
filehelpers を使用してoracledbにインポートできますか? 参考までにサンプルコードを提供してください。
ありがとうディー
A simple and relatively fool-proof way to do that for one-off tasks is to create a new column in the excel sheet, containing a formula like that:
="insert into foobar values('"&A1&"','"&A2&"');"
Copy that to all rows, then copy the whole column into an editor and run it in SQL*Plus or sql developer.
Sqlloaderを使用して CSV から Oracle DB にデータをアップロードしています。