Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saving results of filter to new table or database

Status
Not open for further replies.

opainc

Vendor
Sep 18, 2002
14
US
I am trying to subdivide a large (160,000 records) table into smaller databases.

How do you save the results of a filter as a new table/mdb?
 
Have a look at MakeTable (SELECT ... INTO) and/or Append (INSERT INTO ...) queries.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 



Hi,

May I ask WHY you need to segment data into separate databases?

Skip,

[glasses] [red][/red]
[tongue]
 
My mistake in typing. The mdb has 1,600,000 records.

All data is in caps. I want a subset of 5000 that I can change into First letter cap rest lowercase and then develop a mailing list. In the past I have exported into word for the case transition and then into excel for the mailing.

I sure this could be done directly in Access by a capable programmer. I am not.
 
I sure this could be done directly in Access by a capable programmer. I am not.
So why not hire somebody ?
 
PHV- Whys.

Retired, not for profit, too cheap. Besides it's a challenge to learn new things, or even remember old things after 75.
 
Use StrConv([field name],3). This will make first character of every word upper case, all other letters lower case.

willybgw
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top