I
Ian
I'm trying to create a table with 31 million rows so I created an append
query.
INSERT INTO rawdata ( [User], Data, UsageDate, [Hour] )
SELECT 1284 AS Expr1, 10.586 AS Expr2, #1/1/2009# AS Expr3, 12 AS Expr4
FROM rawdata;
The uniqueID is called ID. I want the append query to run repeatedly until
the count of ID is greater than 31,000,000.
Any ideas?
query.
INSERT INTO rawdata ( [User], Data, UsageDate, [Hour] )
SELECT 1284 AS Expr1, 10.586 AS Expr2, #1/1/2009# AS Expr3, 12 AS Expr4
FROM rawdata;
The uniqueID is called ID. I want the append query to run repeatedly until
the count of ID is greater than 31,000,000.
Any ideas?