• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Microsoft Access Help.....please :)

bunker

Lifer
Let me preface this by saying if it were in SQL server I would have no problems, I hate Access!!!

I've got a table with 40k records and I need to split it up into eight 5k record tables for an operation I have to run on the data.

If it were SQL I would just do a

select into <table> where <id> between 1-5000

etc...until I was done.

Access isn't working with me here.

Help....please....🙂
 
Shouldn't the statement be:

select * into <to table>
from <from table>
where <id> between 1 and 5000
 
Yes it should 😛.

I just said screw it and imported it into SQL, split it up, then exported back to Access.

I still hate access!
 
Back
Top