A mySQL function for loading external data directly into the database.
0
votes
1answer
25 views
LOAD DATA INFILE won't find file every now and then?
I have an application that submits data to a MySQL database, which is read from a csv file.
Sometimes it works just fine, but every now and then the LOAD DATA INFILE won't find the file from the ...
2
votes
1answer
22 views
Dynamic table name & LOAD DATA INFILE
Is it possible to LOAD DATA INFILE within a table name set in a user variable ?
Here is the script that doesn't work:
INSERT INTO Demand (name, comment, scale) VALUES (A,A,1);
SET @Demand_id = ...
0
votes
0answers
20 views
SQL Load inconsistently delimited data
I can't seem to get this data into appropriate fields.
Data looks like this:
+---------+----------+-----------------+-----------------+-----------------+-------------+
| 15 9 | 2.73 4 | 1.26 ...
0
votes
1answer
14 views
How to create view using STR_TO_DATE in mysql.?
I have a table with 5 columns, created from csv file.
I was unable to load it using str_to_date function on date column.
I also need to create a view to use it in php scripts, So now I would like to ...
0
votes
0answers
7 views
LOAD DATA INFILE not working properly for previledge using php script
I am using LOAD DATA INFILE process to execute a .csv file for populating a mysql database. The .csv file contains more than 1 lacks records.So I can't use any looping statement because of time out.
...
0
votes
1answer
78 views
PHP MySQL - Import CSV Using LOAD DATA INFILE - Determine file path?
I need some help connecting the dots on this. There's plenty of snippets floating around but I haven't found a good end to end tutorial.
For a simple custom CMS I'm building I want an option for end ...
0
votes
1answer
50 views
How to resolve Mysql error 13 for loading data infile
I have seen several question regarding this error, and have tried all the suggested solutions with no success.
I am running a python script to parse xml into csv file and then load it to MySQL ...
0
votes
0answers
22 views
Where the best place to put an LOAD DATA INFILE query with doctrine2?
I perform mass insert by using LOAD DATA INFILE (MySQL) and Doctrine 2
But actually I don't know where this query has to be placed in order to respect Doctrine architecture?
an Entity Manager?
a ...
0
votes
1answer
86 views
MySQL “LOAD LOCAL DATA INFILE”
I have hit a problem and i cant seem to get over it. I am taking information from a text file(two columns 29.12 23.42 for example separated by a space), using LOAD LOCAL DATA INFILE. Initially this ...
0
votes
0answers
29 views
MySQL load command: is there a wildcard available for the datafile so i can combine multple csv files?
I have a lot of csv files that I am trying to combine into one table using MySQL. I am very new to this, so please be understanding. I was able to load in one file, but I was wanting to do a bulk load ...
0
votes
1answer
14 views
Sum duplicate's values when using LOAD FILE
I have a table:
| foo | bar |
+-----+-----+
| abc | 4 |
| def | 1 |
| ghi | 2 |
foo has unique index.
I want to load a file into this table summing bar values of duplicates by foo column:
...
0
votes
0answers
29 views
Using LOAD DATA INFILE on a list of items (multilevel parent/children)?
I have a textfile of Quickbooks items (multilevel parent/children) that need to be loaded into a MySQL database on a regular basis. I wanted to use something similar to LOAD DATA INFILE vs looping ...
0
votes
1answer
20 views
Load Data from another file in MATLAB
I am doing some calculations in MATLAB on a data from a particular cell(biological) type and obtain some plots at the end of it. I do simlilar kind of calculations on data from another cell type, by ...
4
votes
2answers
103 views
Mysql Load Data for existing column of a table
Initially I have uploaded Using load Data Infile row is having like 100000 Im Using Ubuntu
Example:data
ToneCode....Artist...MovieName...Language
1....................Mj..........Null........... ...
0
votes
0answers
14 views
Return ids generated via DATA LOAD INFILE
Is it possible to obtain all the auto_increment IDs created by MySQL when I bulk insert a set of records using LOAD DATA INFILE in a fast, thread-safe manner?
In MSSQL I could use the OUTPUT clause ...
0
votes
0answers
81 views
Accelerating MySQL Insert Performance?
There is the need to insert more than 10M records at minimum time in an indexed table. These 10M records are a result of a cursor running within a stored procedure. Currently, it takes approximately ...
0
votes
0answers
146 views
mysql load data infile for a list of files
I am using ubuntu 12.04 operating system. I have a folder full of .csv files. I need to import all these csv files into a mysql data base on the local machine. Currently, I have been using this ...
0
votes
1answer
173 views
MySQL LOAD DATA INFILE with ON DUPLICATE KEY UPDATE
For loading huge amounts of data into MySQL, LOAD DATA INFILE is by far the fastest option. Unfortunately, while this can be used in a way INSERT IGNORE or REPLACE works, ON DUPLICATE KEY UPDATE is ...
1
vote
2answers
150 views
LOAD DATA LOCAL INFILe: loading data form text file auto incerment syntax
I'm trying to load data from a .txt file into mysql. The table looks like this:
+-------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | ...
0
votes
0answers
107 views
Load data local infile not inserting into database
I have a .CSV file which will import to mysql database, using Load data local infile syntax, my csv file contains 23 columns, but I want to import the selected columns only in database.
My problem ...
0
votes
1answer
73 views
LOAD DATA INFILE with txt file
i have txt file containing more than 50000 records.those 4 records (pid,#_pro_used,notused,selected) are separate with tab space.i want to insert these records to a table which having 5 columns ...
0
votes
1answer
39 views
LOAD DATA INFILE adding \r at the end of each insertion
I am loading about 1 million rows from a file to my table using this query
LOAD DATA LOCAL INFILE '/usr/share/dict/words' INTO TABLE source_words(word).
It works well except it inserts \r at the end ...
0
votes
0answers
26 views
ignore duplicate row but keep one table
I have created a database in mysql in which i load data (from a .csv file) on a daily basis.
The table in which data is loaded into every day consist of 3 columns, example:
identifier | date-time ...
0
votes
1answer
48 views
LOAD DATA LOCAL INFILE from line after line
i am trying to copy data from text file into db with "load data local infile".
the text example:
jack
|
hi
|-
ron
|
whats new
|-
jack
|
ok
|-
ron
|
bye
|-
the code i am trying:
include ...
-1
votes
2answers
130 views
Python inFile with loop
I am attempting to open a file with python in order to take the averages off of a file input.txt. After the averages are taken, they then must be displayed after each person's name such as
...
0
votes
0answers
32 views
mysql check if warning while insertion of row in insert after trigger added on LOAD DATA INFILE
I have added insert after trigger for LOAD DATA INFILE and wants to insert records for which mysql does not give warning or error to some other table. if there is warning, i want to skip that row. so ...
0
votes
1answer
228 views
how to ignore / skip invalid data row in LOAD DATA INFILE while loading data from csv.
I am trying to load data from CSV file, In few date field columns data in CSV is invalid. But when i run LOAD DATA INFILE statement, it inserts NULL value in those column. how can I skip entire row ...
0
votes
0answers
347 views
php LOAD DATA LOCAL INFILE csv to mysql
I've been trying this for a while and investigating as many avenues as I could before asking my first questions here.
I have a very simple csv file. One column, data separated by linux line feeds. I ...
0
votes
1answer
144 views
No SQL Query results after successful CSV import in mysql using LOAD DATA LOCAL INFILE
I am facing a strange problem after successfully importing the contents of a .csv file in mysql db. The data from the csv file is imported into the db table successfully but no query results are ...
0
votes
0answers
251 views
mysql command LOAD DATA INFILE for utf8 characters doesn't work
i have a database with name "my_db" and i have one table with name "words" with two columns:
id: int(11)
word: varchar(40)
Collation of db, table, and column word is "utf8_unicode_ci"
Character set ...
1
vote
2answers
234 views
MySQL from JAVA: LOAD DATA INFILE skips rows from input file
I am trying to input a 10 million line text file into a MySQL table using Java. The file has two columns separated by a white space character and I am using LOAD DATA INFILE to input the data to a ...
0
votes
1answer
45 views
Using Data Load Infile, terminal shows implemented, but no records were loaded into the table
I used DATA LOAD INFILE to load a txt file which is about 2.5MB. After I execute the query in MySql, it shows 0 rows effected.
Is that related to the file size? But there is no error popped up.
My ...
1
vote
1answer
61 views
MySQL & Java , LOAD DATA LOW_PRIORITY synchronous statement execution
I wish to execute LOAD DATA LOW_PRIORITY INFILE statement from java.
I am dealing only with MyISAM engine.
I am interested if statement.execute("LOAD DATA LOW_PRIORITY INFILE ...") will execute this ...
0
votes
1answer
61 views
MySQL, LOAD DATA CONCURRENT LOCAL, disable & enable keys
I currently insert data into tables with MyISAM engine,
I wish to optimize LOAD DATA by building the indexes after LOAD DATA finishes (disabling keys beforehand and enabling them after it finishes).
...
3
votes
1answer
101 views
Java Statement, Load Data return generated keys
My Question might be very simple, but i can't find any answer for it.
If i execute statement.execute("LOAD DATA ...") will it generate return keys exactly like INSERT Statement,
If i do not wish to ...
0
votes
1answer
261 views
MySql, LOAD DATA or BATCH INSERT or any other better way for bulk inserts
I am trying to create a web application, primary objective is to insert request data into database.
Here is my problem, One request itself contains 10,000 to 1,00,000 data sets of information
(Each ...
0
votes
2answers
72 views
Retrieving ID's of imported CSV (LOAD DATA INFILE)
I have the following scenario:
I have to import a CSV file to a table. For this i use the LOAD DATA LOCAL INFILE.
Is there a way to retrieve the id's (column 'id') of all inserted rows, since i need ...
2
votes
2answers
391 views
mysql infile convert string to time format
I have a TSV that I'm trying to infile into a mySQL table. A couple columns are time formats, but they don't match the standard time format of HH:MM:SS, instead they look like HH:MM AM/PM
I've seen ...
0
votes
0answers
93 views
load data infile with unknown system variable error
I´ve been trying to use load data infile procedure to load data from a csv file to mysql, althougt I'ven been unable to due it because of a unknown variable error in the set statement.
LOAD DATA ...
1
vote
1answer
66 views
LOAD DATA LOCAL FILE (Replace) needing to combine fields to form a key(?)
I've been given a very large .txt(csv) (100k+ entries) which is ftp'd to my server nightly then i'm using this query:
LOAD DATA LOCAL INFILE '/x/x/public_html/2013/fluid1/x3export/x3export.txt' ...
0
votes
0answers
86 views
MySQL, LOAD DATA INFILE and using the header
I have a data file which I need to read into MySQL. I have used LOAD DATA INFILE for reading CSV in but this time the file includes a header which I would need to utilize as well.
The file looks ...
0
votes
2answers
194 views
How can I improve LOAD DATA performance on large InnoDB tables?
I have this table with more than 7 million rows and I am LOAD DATA LOCAL INFILE'ing more data in the order of 0.5 million rows at a time into it. The first few times were fast, but this addition is ...
1
vote
2answers
743 views
MySQL Load Data Infile auto incremented ID value
I want to insert an ID column to my table and get data of this table from a text file.
For example my text file is like that:
12 1212 4989 121
121 23 123 110
789 99 234 ...
1
vote
0answers
68 views
Mysql LOAD DATA INFILE performance, Windows vs Unix
I have created a benchmark of multiple LOAD DATA operations inserting millions of records into different tables.
i have surprised when i discovered that on windows my Benchmark finished after 1.15 ...
0
votes
1answer
171 views
MySQL LOAD DATA Error can't resolve…!
mysql> LOAD DATA INFILE '/abc.txt' INTO TABLE test1 FIELDS TERMINATED BY '|';
ERROR 13 (HY000): Can't get stat of '/abc.txt' (Errcode: 2)
I used LOAD DATA as per the syntax. But getting the above ...
2
votes
1answer
227 views
load data local infile - select ignoring last column
I'm trying to import csv file into mysql database using load data local infile
My csv file looks like this:
1;Lubos;Chrapna;92;muz;Topolcany
2;Branislav;Grecni;28;muz;Topolcianky
...
2
votes
2answers
175 views
Minimum database privileges to use load data infile
I'm using mysqlimport to replace data in a table with values from a TSV file. Everything is working fine (importing data using the DB superuser name and password), so now I want to lock it down so ...
0
votes
1answer
97 views
Confused behavior when importing data in Mysql using LOAD DATA INFILE
I am trying to import my data form text file into mysql database. I used the LOAD DATA INFILE statement but it does not work successfully.
My text file is as follows with fields terminated by '\t' ...
0
votes
1answer
183 views
Google Cloud SQL: Alternative to LOAD DATA INFILE
I am working in Google App Engine and we have a Python script that dumps data in Google Cloud SQL. One of the data sets we have to dump is huge. We dump around 150K rows of data once a day daily.
I ...
3
votes
1answer
285 views
MySQL: LOAD DATA reclaim disk space after delete
I have a DB schema composed of MYISAM tables, i am interested to delete old records from time to time from some of the tables.
I know that delete does not reclaim the memory space, but as i found in ...



