Skip to content

Commit deef674

Browse files
committed
fix filegroups
1 parent 2c6336a commit deef674

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

samples/features/in-memory/benchmark-order-processing/create-database-and-tables/Disk-Based/Create_Indexes_DiskBased.sql

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GO
2323
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'PK_CUSTOMER' )
2424
CREATE UNIQUE CLUSTERED INDEX PK_CUSTOMER ON Customer( C_ID )
2525
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
26-
26+
ON DiskBased_fg
2727
GO
2828

2929
CHECKPOINT
@@ -33,7 +33,7 @@ GO
3333
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'PK_FULFILLMENT' )
3434
CREATE UNIQUE CLUSTERED INDEX PK_FULFILLMENT ON Fulfillment( FM_ID )
3535
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
36-
36+
ON DiskBased_fg
3737
GO
3838

3939
CHECKPOINT
@@ -49,7 +49,7 @@ GO
4949
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'IX_ORDERLINES_NC1' )
5050
CREATE UNIQUE INDEX IX_ORDERLINES_NC1 ON OrderLines( OL_O_ID, OL_SEQ )
5151
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
52-
52+
ON DiskBased_fg
5353
GO
5454

5555
CHECKPOINT
@@ -59,19 +59,19 @@ GO
5959
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'PK_ORDERS' )
6060
CREATE UNIQUE CLUSTERED INDEX PK_ORDERS ON Orders( O_ID )
6161
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
62-
62+
ON DiskBased_fg
6363
GO
6464

6565
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'IX_ORDERS_NC1' )
6666
CREATE INDEX IX_ORDERS_NC1 ON Orders( O_C_ID )
6767
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
68-
68+
ON DiskBased_fg
6969
GO
7070

7171
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'IX_ORDERS_NC2' )
7272
CREATE INDEX IX_ORDERS_NC2 ON Orders( O_FM_DTS, O_DTS ASC )
7373
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
74-
74+
ON DiskBased_fg
7575
GO
7676

7777
CHECKPOINT
@@ -81,7 +81,7 @@ GO
8181
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'PK_PRODUCTS' )
8282
CREATE UNIQUE CLUSTERED INDEX PK_PRODUCTS ON Products( PR_ID )
8383
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
84-
84+
ON DiskBased_fg
8585
GO
8686

8787
CHECKPOINT
@@ -90,7 +90,7 @@ GO
9090
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'IX_PRODUCTS_NC1' )
9191
CREATE INDEX IX_PRODUCTS_NC1 ON Products( PR_TYPE )
9292
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 8)
93-
93+
ON DiskBased_fg
9494
GO
9595

9696
CHECKPOINT
@@ -100,7 +100,7 @@ GO
100100
IF NOT EXISTS ( SELECT name FROM sysindexes WHERE name = 'PK_PURCHASE_CRITERIA' )
101101
CREATE UNIQUE CLUSTERED INDEX PK_PURCHASE_CRITERIA ON Purchase_Criteria( PC_ID )
102102
WITH (FILLFACTOR = 100, SORT_IN_TEMPDB=ON, MAXDOP = 24)
103-
103+
ON DiskBased_fg
104104
GO
105105

106106
CHECKPOINT

0 commit comments

Comments
 (0)