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 import the first 1E4 rows with
library(RODBC)
# read data and write to db
my.sqlSave <- function(x, y) {
temp <- read.csv(x, nrows = 1E4)
sqlSave(channel = db, dat = temp, tablename = y, rownames = F)
}
mapply(my.sqlSave, x = list.files.long, y = list.files.short)
where list.files.long is a vector of csv file names with path, and list.file.short is a vector of csv files names without path or extension (to use as table names). Then I try to import the remainder of the csv files one at a time with
C:\Users\richard\Documents>mysqlimport
--fields-optionally-enclosed-by="\""
--fields-terminated-by=,
--lines-terminated-by="\r\n"
--user=root --password
--delete
--ignore-lines=1
finance
C:\Users\richard\Documents\compustat_qtr_a_data.csv
Enter password: ****
finance.compustat_qtr_a_data: Records: 0 Deleted: 0 Skipped: 0 Warnings: 0
The result is an empty table (i.e., the 1E4 rows I started with are gone, and no rows are added). I use the --delete option because I only write 1E4 rows with sqlSave() to create the table and variable types (most of these tables have hundreds of columns, so entering them manually would be tedious) so I'm fine removing them and loading all rows. Is there an easier workflow? In the past I've had smaller tables (in terms mb) and done this entire process with sqlSave(). Should I only use smaller csv files and stick with the sqlSave() solution? Thanks!
FWIW, if I omit the --delete option, then I still can't import. And --verbose adds little insight (just "Connecting...", "Selecting...", "Loading...", and "Disconnecting...").