Re: Secure File Privilege
With your table on a Windows machine where secure_file_prov="c:/in", this Load Data cmd works ...
LOAD DATA INFILE 'c:/in/aisle.csv'
INTO TABLE aisle
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n';
select * from aisle;
+---------+------------------+
| idaisle | aisleDescription |
+---------+------------------+
| 1 | 1 |
| 2 | 2 |
| 3 | 3 |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
+---------+------------------+
Subject
Views
Written By
Posted
1685
February 22, 2022 12:17PM
719
February 22, 2022 12:39PM
711
February 22, 2022 01:00PM
713
February 22, 2022 01:03PM
656
February 22, 2022 01:41PM
1007
February 22, 2022 03:16PM
718
February 22, 2022 05:09PM
844
February 26, 2022 03:34AM
955
August 18, 2022 12:34PM
582
August 18, 2022 10:47PM
598
August 19, 2022 10:22AM
Re: Secure File Privilege
650
August 19, 2022 11:54AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.