私はインターフェースが初めてで、今書いています。私はいくつかの課題を経験しています。1 つの質問があります。
パテを使用して(sqlldrを使用して).datファイル(および.ctl)からステージングテーブルにデータをロードする方法に精通していますが、同じタスクを達成する必要があります(.datファイルからステージングテーブルにデータをロードするなど) ) いくつかの pl/sql プロシージャを介して。ロジックを提案してください.....
Normally, you would use external tables. The syntax is going to be very similar to a SQL*Loader control file but it is an object defined in the database that allows you to expose the file as if it were a relational table. You can then do your load simply by querying the external table.
This does require, though, that the data file is present on the database server's file system.