Posts by Odisley Silva • 9 points
2 posts
-
-1
votes4
answers4316
viewsA: How to import a csv file to Mysql?
The error is in ";" after the file path. If taking it will work it is a beauty CREATE DATABASE stock exchange; USE POUCH; LOAD LOCAL DATA INFILE "c:/test.csv" INTO TABLE BAG FIELDS TERMINATED by ','…
-
1
votes1
answer6120
viewsA: Run script file directly in PLSQL
Good afternoon, I managed to do so: 1 - Opening the command window option 2 - SQL> @"c:\arquivo.sql" Note that the "@" is out of quotation marks and does not have ";".…