Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: update with an external file
M. Ostertag schrieb:
> Hello,
>
> I want to update a field in a table with an external text-file.
Load the text file as an external table.
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#sthref2448
Then
UPDATE zeichnungen
SET ... = ...
WHERE id IN (SELECT id FROM external_table)
Hth
Urs
Received on Wed Sep 13 2006 - 05:04:38 CDT
![]() |
![]() |