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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reduce Size of Text Fields (Many Text Fields)

Status
Not open for further replies.

hext2003

Technical User
Oct 9, 2006
119
US
I am working with a table with about 50 fields. Many of these fields are Text fields... And All Text Fields have a Size of 255. I want to shrink that down to about 25 or 30.

Is there are way to do this at once with out doing


CurrentDb.Execute "ALTER TABLE test ALTER COLUMN Last Text(25)"

for each field?
 
Is your table normalized? If you're worried about storage, you may have duplicate data in your table. Sure sign it's not normalized. And inefficient.
 
Yes, This is a BAD table. Not Normalized at all. I am trying to clean it up. I have split it into several tables right not. Getting Closer to getting where it should be.

I guess there is really no GOOD reason to change the size... So maybe I'll just leave it alone.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top