Created
November 28, 2018 18:02
-
-
Save tpjfern03/cbc7a2f81dfb39cda321c0698926902b to your computer and use it in GitHub Desktop.
[Oracle Control File] Oracle Control File #oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LOAD DATA | |
| INFILE csvDevices.csv | |
| append | |
| INTO TABLE UTIL_DEVICE | |
| fields terminated by '^' optionally enclosed by '"' | |
| trailing nullcols | |
| (device_name "trim(:device_name)", | |
| device_type "trim(:device_type)", | |
| sub_station_abbr "trim(:sub_station_abbr)", | |
| device_id "DEVICE_ID_SEQ.NEXTVAL" ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment