Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
4k views

Switching from MySQL to PostgreSQL - tips, tricks and gotchas?

I am contemplating a switch from MySQL to PostgreSQL. What are your tips, tricks and gotchas for working with PostgreSQL? What should a MySQLer look out for? See also: How different is ...
10
votes
8answers
2k views

What is the fastest way to load an XML file into MySQL using C#?

Question What is the fastest way to dump a large (> 1GB) XML file into a MySQL database? Data The data in question is the StackOverflow Creative Commons Data Dump. Purpose This will be used in an ...
7
votes
6answers
382 views

What is the best way to achieve speedy inserts of large amounts of data in MySQL?

I have written a program in C to parse large XML files and then create files with insert statements. Some other process would ingest the files into a MySQL database. This data will serve as a ...
6
votes
6answers
3k views

mysqldump table without dumping the primary key

I have one table spread across two servers running MySql 4. I need to merge these into one server for our test environment. These tables literally have millions of records each, and the reason they ...
6
votes
1answer
1k views

How does 'LOAD DATA INFILE' work in statement-based replication?

In MySQL, using statement based replication I assume that every SQL statement gets executed on the slave exactly the same way as on the master. However, when I run the statement: LOAD DATA INFILE ...
5
votes
4answers
5k views

mysql LOAD DATA INFILE

I am trying to load a data file into mysql table using "LOAD DATA LOCAL INFILE 'filename' INTO TABLE 'tablename'". The problem is the source data file contains data of every fields but the primary ...
5
votes
3answers
3k views

MySQL load data null values

I have a file that can contain from 3 to 4 columns of numerical values which are separated by comma. Empty fields are defined with the exception when they are at the end of the row: 1,2,3,4,5 ...
4
votes
2answers
895 views

MySQL load data infile - acceleration?

sometimes, I have to re-import data for a project, thus reading about 3.6 million rows into a MySQL table (currently InnoDB, but I am actually not really limited to this engine). "Load data infile..." ...
4
votes
3answers
1k views

How to import latitude/longitude data correctly into MySQL?

I've got a dataset of city names with their corresponding latitudes/longitudes that I've loaded into a MySQL table, like so: city_id | city_name | latitude DECIMAL(9,6) | longitude DECIMAL(9,6) ...
4
votes
1answer
2k views

LOAD DATA LOCAL, How do I skip the first line?

I'm trying to Load a CSV file into my MySQL database, But I would like to skip the first line. I fact It contains the name of my columns and no interesting data. Here is the query I'm using: LOAD ...
4
votes
3answers
455 views

Is it possible to use a LOAD DATA INFILE type command to UPDATE rows in the db?

Pseudo table: | primary_key | first_name | last_name | date_of_birth | | 1 | John Smith | | 07/04/1982 | At the moment *first_name* contains a users full name for many ...
4
votes
6answers
3k views

Program for working with large CSV Files

Are there any good programs for dealing with reading large CSV files? Some of the datafiles I deal with are in the 1 GB range. They have too many lines for Excel to even deal with. Using Access can ...
3
votes
5answers
408 views

How to convert date in .csv file into SQL format before mass insertion

I have a csv file with a couple thousand game dates in it, but they are all in the MM/DD/YYYY format 2/27/2011,3:05 PM,26,14 (26 and 14 are team id #s), and trying to put them into SQL like that ...
3
votes
1answer
365 views

Load data infile with blob field

Given I have to dump a lot amount of inserts in a short period managed to dump all records to a file and then loading them by the load data infile sentence of mysql. This was working fine but now I ...
3
votes
1answer
245 views

LOAD DATA LOCAL INFILE loses connection, how do I fix the timeout?

I am loading a large text file into my db through LOAD DATA. The file is about 122,000 lines long. Let alone, The db is designed to be triggered on AFTER INSERT's on that table. What happens exactly ...
3
votes
3answers
1k views

What file and directory permissions are required for MySQL LOAD DATA INFILE?

I have a script that is trying to load some data into MySQL with LOAD DATA INFILE. For some reason, it works if the file is in the /tmp directory, but not if the file is in another directory with ...
3
votes
1answer
3k views

How to skip columns in CSV file when importing into MySQL table using LOAD DATA INFILE?

I've got a CSV file with 11 columns and I have a MySQL table with 9 columns. The CSV file looks like: col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, col11 and the MySQL table looks ...
3
votes
3answers
1k views

Upload 95 GB CSV file into MySQL MyISAM table via Load data infile: CSV engine an alternative?

I'm trying to upload a 95 GB CSV file into a MySQL database (MySQL 5.1.36) via the following command: CREATE TABLE MOD13Q1 ( rid INT UNSIGNED NOT NULL AUTO_INCREMENT, gid MEDIUMINT(6) UNSIGNED NOT ...
3
votes
2answers
2k views

What mysql settings affect the speed of LOAD DATA INFILE?

Let me set up the situation. We are trying to insert a modestly high number of rows (roughly 10-20M a day) into a MyISAM table that is modestly wide: ...
3
votes
4answers
2k views

How do I import a whitespace-delimited text file into MySQL?

I need to import largish (24MB) text files into a MySQL table. Each line looks like this: 1 1 0.008 0 0 0 0 0 There are one or more spaces after each field, and the last field is tailed by ...
2
votes
2answers
73 views

Is there a work-around that allows missing data to equal NULL for LOAD DATA INFILE in MySQL?

I have a lot of large csv files with NULL values stored as ,, (i.e., no entry). Using LOAD DATA INFILE makes these NULL values into zeros, even if I create the table with a string like var DOUBLE ...
2
votes
1answer
193 views

Load XML Update Table--MySQL

LOAD XML LOCAL INFILE 'file1.xml' INTO TABLE my_table ROWS IDENTIFIED BY '<product>'" Is it possible to use this function to update a table? I used REPLACE INTO TABLE my_table but that ...
2
votes
2answers
488 views

How to hold MYSQL performance while large data file import using LOAD DATA INFILE?

I'm working with a large database (some tables 500000000+ rows) . Each day 3-10 millions rows should be replaced and each import is about 1 million rows (so 3-10 times a day with CRON) using LOAD DATA ...
2
votes
1answer
487 views

LOAD DATA LOCAL INFILE only works sometimes

I have a LOAD DATA command that works fine in the MySQL terminal. It works fine in a test PHP file served from my local server. It works fine in phpMyAdmin on the same server. It inexplicably breaks ...
2
votes
1answer
3k views

mysql load data infile can't get stat of file Errcode: 2

I have looked all over and found no solution, any help on this would be great. Query: LOAD DATA INFILE '/Users/name/Desktop/loadIntoDb/loadIntoDB.csv' INTO TABLE `tba`.`tbl_name` FIELDS TERMINATED ...
2
votes
1answer
454 views

mysql load data infile where clause

I need to update existing rows in table with load data infile based on some condition, is this possible? load data infile 'E:/xxx.csv' into table tld_tod @aaa, @xxx_date, @ccc fields terminated by ...
2
votes
2answers
2k views

Import CSV to mysql

I have created a database and table. I have also created all the fields i will be needing. I have created 46 fields including 1 that is my ID for the row. The CSV doesn't contain the id field, nor ...
2
votes
2answers
3k views

How to change string date to MySQL date format at time of import of CSV using MySQL's LOAD DATA LOCAL INFILE

I'm using MySQL's LOAD DATA LOCAL INFILE SQL statement to load data from a CSV file into an existing database table. Here is an example SQL statement: LOAD DATA LOCAL INFILE 'file.csv' INTO TABLE ...
2
votes
3answers
927 views

access denied for load data infile in MySQL

I use MySQL queries all the time in PHP, but when I try LOAD DATA INFILE, I get the following error #1045 - Access denied for user 'user'@'localhost' (using password: YES) Does anyone know what this ...
2
votes
1answer
1k views

Importing bulk CSV data in UTF-8 into MySQL

I'm trying to import about 10K rows of UTF-8 encoded data into a new MySQL table. I can do so successfully with LOAD DATA INFILE via MySQL Workbench but it the UTF-8 characters get mangled. I've ...
2
votes
1answer
2k views

MySQL LOAD DATA INFILE - Loading a file with no primary key

I was trying to load a data file into mysql table using "LOAD DATA LOCAL INFILE 'filename' INTO TABLE 'tablename'". The problem is the source data file contains data of every fields but the primary ...
2
votes
4answers
2k views

MySql bulk load command line tool

Does MySql have a bulk load command line tool like bcp for SQLServer and sqlldr for Oracle? I know there's a SQL command LOAD INFILE or similar but I sometimes need to bulk load a file that is on a ...
2
votes
2answers
2k views

MySQL LOAD DATA LOCAL INFILE example in python?

I am looking for a syntax definition, example, sample code, wiki, etc. for executing a LOAD DATA LOCAL INFILE command from python. I believe I can use mysqlimport as well if that is available, so ...
2
votes
14answers
772 views

collecting mysql statistics

What would be the easiest way to count the new records that are inserted into a database? Is it possible to include a count query in with the load query? Or is something more complex needed, such as ...
2
votes
3answers
2k views

Mysql permission errors with 'load data'

I am running into a permission error when trying to load data from a flat file database dump into a new table. I know that the schema of the file and my table is the same and I tried tweaking the ...
2
votes
2answers
227 views

problem while importing the data from text to mysql

I have used an application to import some data from a text file to mysql. I have used the following code. try { stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ...
2
votes
4answers
798 views

mysql import script

Is it possible to import csv data into mysql and automatically create the column names, as in can I create just the table, or must I create the table names as well? Is it possible to check for ...
2
votes
3answers
1k views

Loading flatfiles into a normalized MySQL database

What is the fastest way to load data from flatfiles into a MySQL database, and then create the relations between the tables via foreign keys? For example... I have a flat file in the format: ...
1
vote
1answer
33 views

Round Trip INTO OUTFILE, Excel Editing, and LOAD DATA INFILE without corruption

I have been trying to export a mysql table with INTO OUTFILE to CSV for editing in Excel and then inserting back into mysql using LOAD DATA INFILE. I can export ok, and even reinsert the unedited ...
1
vote
1answer
63 views

How to use LOAD DATA INFILE statement when file is another location?

I want to use LOAD DATA INFILE statement to import data in my table. If the file is available on the same system, it works nicely and imports successfully, but when the file is located on another ...
1
vote
1answer
40 views

define PK before or after LOAD DATA INFILE

I neet to load >1 billion rows into empty MyISAM table. I'm sure all entries in the file are unique. Is it better to load the data into table with PK defined, or add PK later? I have got 8GB RAM and ...
1
vote
0answers
102 views

Is it not possible to show warnings when using mysqlimport?

This article: http://www.linuxask.com/questions/how-to-show-the-warnings-during-mysqlimport says it is not possible to show warnings when using mysqlimport: When you use mysqlimport to import ...
1
vote
1answer
42 views

Perform calculations on MySQL Load Data

I have the following two sql statements LOAD DATA LOCAL INFILE '~/data/geo_blocks.csv' INTO TABLE geo_blocks FIELDS ENCLOSED BY '\"'TERMINATED BY ',' LINES TERMINATED BY '\n' (ip_start, ip_end, ...
1
vote
1answer
61 views

in mysql database,how to upload the modified data from csv file

Initially, I created a database called "sample" and updated the data from massive size CSV file. Whenever I have small changes in .csv file (some data are added/deleted/modified), I have to update ...
1
vote
1answer
262 views

LOAD DATA INFILE does not import all rows in a CSV data source

I'm trying to load data from a CSV file into a MySQL database, and noticed that a large number of records seem to be skipped when I import the file. The data comes from a Government source, and is ...
1
vote
2answers
179 views

Date problem when importing from file into MySQL

I have a table with payDate DATETIME in which I'm inserting using load data local infile 'file.txt' into table tableName; dates like 26/04/2012 00:00:00. This gives warnings like Warning | 1265 | ...
1
vote
3answers
833 views

How to speed up a data loading into InnoDB (LOAD DATA INFILE)?

I want to speed up a data loading. I use MySQL 5.5, InnoDB and have 1M rows of data (65Mb file). It takes 5 minutes. What mysql settings and commands affect the speed of LOAD DATA INFILE for InnoDB? ...
1
vote
1answer
314 views

MySQL: Insert data from one file into two tables, one with auto_increment id, and one join table

I've got data with 500M+ records, in a file with 2 fields, blob and c_id. There are also two other files with the same data in other formats: A file with 90M unique blobs. A file with a blob, and a ...
1
vote
1answer
499 views

LOAD DATA INFILE (*.csv) - ignore empty cells

I'm about to import a large (500 MB) *.csv file to a MySQL database. I'm as far as that: LOAD DATA INFILE '<file>' REPLACE INTO TABLE <table-name> FIELDS TERMINATED ...
1
vote
1answer
194 views

load data infile question

I'm currently using LOAD DATA INFILE in my query, but I am not sure how to separate the data The data is in the following format firstname:lastname $this->db->query("LOAD DATA INFILE ...

1 2 3