January 6, 2005 at 2:15 pm
I may need to design a database that will have an Avg of 1220 bytes and a max of 6900 bytes in one of the fields. The data in this field will be the reason users access the database. There isn't really a way to break it up into different fields. I was just curious if anyone had any tips on the best way to handle this.
Thanks
fryere
fryere
January 6, 2005 at 3:08 pm
What is the total maximum size of a row (record) given the 6900 bytes?
K. Brian Kelley
@kbriankelley
January 7, 2005 at 5:30 am
I will have 4 fields that have open text, which I plan on making a varchar type and limit to 8000 chars. One of these fields is a 'Notes' field and could be saved in another table. Two other would probably have a max of 2000 chars while the last one may get close to the max on occassion.
6 other text fields that the max would be 100 chars.
A few other Bit and one Int(PK).
fryere
fryere
January 7, 2005 at 6:41 am
Generally you have two options, 1 make a text field or 2 place each into a seperate table which can be joined to to rebuild the original required results. But I would prefer to see what you table would look like as a single thing ignoring the 8K limit just to see what you are dealing with.
January 12, 2005 at 1:28 pm
Just to update those who replied. The database runs faster than I would have thought. The design that I came up with was to only pull in the Main text field when the form loads. Then the user can click a button to view one of the other large text fields.
Thanks
fryere
fryere
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply