Skip to content

Instantly share code, notes, and snippets.

@aurels
Created April 5, 2012 13:33
Show Gist options
  • Save aurels/2311062 to your computer and use it in GitHub Desktop.
Save aurels/2311062 to your computer and use it in GitHub Desktop.
SELECT * INTO OUTFILE '/tmp/sales.csv' FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '"' ESCAPED BY '\\' LINES TERMINATED BY '\n' FROM cloud.sales WHERE 1;
LOAD DATA INFILE '/tmp/sales.csv' INTO TABLE sales CHARACTER SET UTF8 FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '"';
User must have the "FILE" permission set.
@aurels
Copy link
Author

aurels commented Apr 6, 2012

Installation :

http://www.infinidb.org/resources/getting-started

Télécharger les .deb et les installer tous les 3 avec "dpkg -i"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment