Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
140 views

MySQL CSV Import - date entered as 0000-00-00 00:00:00 if timestamp has milliseconds?

I currently have a large number of CSVs to import to a MySQL database. The files contain timestamps for each record, which are in the format (for example): 2011-10-13 09:36:02.297000000 I am aware ...
3
votes
2answers
117 views

how to import large datasets to mysql - the right way?

I have a 400MB *.sql file which is a dump from a MySQL database. I now want to import this to a new database. I used phpmyadmin but it breaks after a few minutes because it cannot handle such large ...
3
votes
2answers
589 views

How to import a mysql dump while renaming some tables/columns and not importing others at all?

I'm importing a legacy db to a new version of our program, and I'm wondering if there's a way to not import some columns/tables from the dump, and rename other tables/columns as i import them? I'm ...
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
5answers
468 views

How can i import chinese data from excel to mysql?

I'm a excel file where i've Chinese content and i want to import them into my tables. My table is set utf-8 collation and my excel sheet has three worksheets. When i tried to convert the worksheet ...
2
votes
2answers
413 views

Maintain case sensitivity when importing db into windows

I have an export from a MYSQL database on a linux machine however when importing that database into MYSQL on windows all of the table names that were camel cased are now all lower case. The sql dump ...
2
votes
3answers
1k views

How to use mysqlimport to read in result of mysqldump --databases

I have successfully dumped an entire MySQL database using mysqldump --databases generating a nice .txt file. However, I can't see how to read the whole file back into MySQL in one go; mysqlimport ...
2
votes
2answers
394 views

How to refresh a MySQL table without website interruption?

Once a day I need to update an MySQL table with a new file downloaded from the Net using ftp and then mysqlimport. However, I want my website to keep running smoothly during the mysqlimport operation, ...
2
votes
4answers
542 views

On mysqlimport, line breaks, and character encoding (I think)

First, some disclosure: I am not a Linux admin, and my Linux admin is not a programmer. That said, we have a cronjob that runs a mysqlimport command to import a text file that's generated daily. I ...
1
vote
3answers
73 views

Importing database with unknown character set, which collation to use?

I was given a dump from a database in tab delimitered format that I'm trying to import. Unfortunately I can't get the CREATE TABLE query so I'm trying to guess what they used. I've tried importing ...
1
vote
0answers
96 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
99 views

Export and import database on Git push and pull

I need my database to be in sync across two local computers, without using a server in between. After some research I thought I could use Git hooks to do the task for me. What I basically want is to ...
1
vote
1answer
303 views

mySQL: mysqlimport to import comma delimited file - first column = ID which is NOT in the file to be imported

Hi Folks I am trying to import a very large file that has moisture data recorded daily per minute for 20 cities in the US. I have 1 table that I named "cityname" and this table has 2 columns: ...
1
vote
2answers
223 views

mysqlimport - issue with spaces in table name

Dealing with some seriously incompetent database design here. Moving an app from MS Access to mySQL and for the moment it is important to preserve table names. However the Access db creator has ...
1
vote
2answers
705 views

dumping a mysql table to CSV (stdout) and then tunneling the output to another server

I'm trying to move a database table to another server; the complication is that the machine currently running the table has little to no space left; so I'm looking for a solution that can work over ...
1
vote
0answers
59 views

mysqlimport leave out last line of csv file

is it possible to leave out the last line of a CSV file, because i have a huge file, like 300.000 records in a CSV file and at the end i have END because else we had some issues with the FTP server ...
1
vote
3answers
853 views

Using mysqlimport where the filename is different from the table name

I've been playing with mysqlimport and I've run into the restriction where the filename has to be the same as the table name. Is there any way to work round this? I can't rename the file as it is ...
1
vote
2answers
828 views

Can I import tab-separated files into MySQL without creating database tables first?

As the title says: I've got a bunch of tab-separated text files containing data. I know that if I use 'CREATE TABLE' statements to set up all the tables manually, I can then import them into the ...
1
vote
1answer
162 views

How to accumulate results using mysqlimport

I like mysqlimport, its fast and relatively easy to use (much faster then say, PHP or Python front-ends for importing > 20GB data files). However I'd like to do the following. I have a data file that ...
0
votes
1answer
23 views

MySQLIMPORT Hex Values

I am trying to import a CSV file into a MySQL 5.1 database. The script for creating the table is: CREATE TABLE `session_hdr` ( `id` bigint(20) unsigned NOT NULL, `type` smallint(5) unsigned NOT ...
0
votes
0answers
33 views

mysqlimport is not recognized

I have mysql installed in my system and when I say mysql it is going to mysql prompt. Even when I said mysqldump, it is throwing me all help text. But when I said mysqlimport, it is saying that the ...
0
votes
0answers
110 views

MySQL ODBC Import Fail

I am importing data from MySQL to PowerPivot. I have all of the relevant drivers. When I try to import to PowerPivot I get the following errors: When I select from a list of tables: Failed to ...
0
votes
2answers
74 views

mysqlimport without mysql installation?

I'm trying to use mysqlimport to import text files to a mysql database. The problem is that the linux box I am importing the text files from will not have an installation of mysql and I am importing ...
0
votes
2answers
445 views

mysqlimport: Error: 1045, Access denied

Does anyone know why I get this error when running mysqlimport? mysqlimport -u someone -pwhatever --columns=a,b,c,d,e bar /var/tmp/baz.sql mysqlimport: Error: 1045, Access denied for user ...
0
votes
0answers
260 views

Import csv file with mysqlimport

I would like to bulk insert a csv file into a MySQL 5.5 table that I create with the sqlSave() command in the RODBC package. I use sqlSave() to create the table, column names, and variable types, and ...
0
votes
0answers
46 views

MySQL ignoring column from text file on import

I'm importing transaction files from a text file to a MySQL database, and something strange that has never happened to me is happening. I'm working in Sequel Pro, and when importing the file, it is ...
0
votes
1answer
124 views

How do you use mysqlimport to parse a document that uses special characters as delimiters?

I've tried: mysqlimport --local --fields-optionally-enclosed-by='\x254' --fields-terminated-by='\x14' testdb messages.txt as well as: mysqlimport --local ...
0
votes
1answer
98 views

is there any way to import NULLS to mySQL inside of single quotes?

I'm using VBA that encloses every field with single quotes in order to import into mySQL and noticed that every variation I tried on NULL for numeric data types imported as 0. If I drop the backticks ...
0
votes
1answer
77 views

Bad Situation importing/exporting img files - mysql database

I inherited a poorly created mysql database and now I need to migrate data to a new server. Long story short, I need to keep it stored this way and I use phpmyadmin. Know of any tools to help the ...
0
votes
3answers
399 views

Why is MySQL auto_increment skipping numbers

We are running an import of an existing product table into a new table of our own. The import script we've written runs perfectly and inserts the right amount of rows (6000 or so). However, after the ...
0
votes
1answer
188 views

Cannot Successfully Export And Then ReImport A View In MySql 5

When I export a database on my development PC, for import on my webhost, it contains the following line: -- -- Table structure for table `vi_sr_videntity_0` -- CREATE ALGORITHM=UNDEFINED ...
0
votes
2answers
222 views

Importing text to MySQL: strange format

I'm importing some data from a .txt file into a MySQL database table, using mysqlimport. It seems to import OK (no error messages) but looks very odd when displayed, and can't be searched as expected. ...
0
votes
2answers
1k views

MySqlImport - Import a date field not in the proper format

I have a csv file that has a date field in a format like (among other fields): 17DEC2009 When I do a mysqlimport, the other fields are imported properly, but this field remains 0000-00-00 ...
0
votes
2answers
760 views

mysqlimport and double-quotes

We have a large tab-delimited text file (approximately 120,000 records, 50MB) that we're trying to shove into MySQL using mysqlimport. Some fields are enclosed in double-quotes, some not. We're ...