Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bd_bench
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
bd_bench
Commits
83576e7c
Commit
83576e7c
authored
11 years ago
by
Hannes Mühleisen
Browse files
Options
Downloads
Patches
Plain Diff
mariadb load
parent
e6d8d07f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/mariadb.load.sql
+8
-8
8 additions, 8 deletions
scripts/mariadb.load.sql
with
8 additions
and
8 deletions
scripts/mariadb.load.sql
+
8
−
8
View file @
83576e7c
COPY
customer
FROM
'DIR/customer.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/customer.tbl'
INTO
TABLE
customer
FIELDS
TERMINATED
BY
'|'
;
COPY
lineitem
FROM
'DIR/lineitem.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/lineitem.tbl'
INTO
TABLE
lineitem
FIELDS
TERMINATED
BY
'|'
;
COPY
nation
FROM
'DIR/nation.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/nation.tbl'
INTO
TABLE
nation
FIELDS
TERMINATED
BY
'|'
;
COPY
orders
FROM
'DIR/orders.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/orders.tbl'
INTO
TABLE
orders
FIELDS
TERMINATED
BY
'|'
;
COPY
part
FROM
'DIR/part.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/part.tbl'
INTO
TABLE
part
FIELDS
TERMINATED
BY
'|'
;
COPY
partsupp
FROM
'DIR/partsupp.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/partsupp.tbl'
INTO
TABLE
partsupp
FIELDS
TERMINATED
BY
'|'
;
COPY
region
FROM
'DIR/region.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/region.tbl'
INTO
TABLE
region
FIELDS
TERMINATED
BY
'|'
;
COPY
supplier
FROM
'DIR/supplier.tbl'
WITH
DELIMITER
AS
'|'
;
LOAD
DATA
INFILE
'DIR/supplier.tbl'
INTO
TABLE
supplier
FIELDS
TERMINATED
BY
'|'
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment