You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**B. Create Database** - enter the GRID (or SecureCRT) and use the following commands on the command line interface.
15
19
1.`mysql`
16
20
2.`use agoldenberg_twitter_data;`
17
-
3.`create table TABLENAME (Column_1 char(20), Column_2 char(20), Column_3 char(20));` - this command should have also appeared in the file formatter above
18
-
4.`quit;` - exit the database interface to import the data
21
+
3.`create table table_import (Column_1 char(20), Column_2 char(20), Column_3 char(20));` - this command should have also appeared in the file formatter above
3. load data local infile '/export/mdb_external/import/username/SampleData.txt' into table table_import fields terminated by '|' lines terminated by '\n' ignore 1 lines;
32
+
**Import File**
33
+
1.`mysql`
34
+
2.`use agoldenberg_DATABASENAME;`
35
+
3.`load data local infile '/export/mdb_external/import/username/SampleData.txt' into table table_import fields terminated by '|' lines terminated by '\n' ignore 1 lines;`
0 commit comments