472,958 Members | 2,149 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

Add a Fields to a Table w/ Existing Data

hi everyone-

i inheritrd a database that wasn't designed very well. i'm trying to
decide whether or not it is a good idea to add at least 8 more fields
to a table that already has existing records in it- about 800.

right now, a combo box records the reason why a particular person
called. i want to add 3 more combo boxes to record the other reasons
why someone called.

the table with the records in it has 6 six firlds. i want to add like
eight more fields. the records already in the database will not be
updated. we aren't going to go back to the old calls records and add
more reasons for the call. we're only going to start recording more
reasons why a person calls from now on or whenever i find the best
solution to this.

so is it safe/ ok to add more fields to a table that already has a lot
of existing records? in the different books i've read, the authors say
to never do this.

i'm thinking about creating a new table with all of the fields i need
and then somehow copying the old records and pasting them into the new
table. does this sound like a better idea?

thanks for your time,

miguelito
Nov 12 '05 #1
2 1642
No problem with adding additional fields to an existing table.

For a good database, though, you would be better creating a new related
table to handle the reasons for the call. With a one-to-many relation, you
would use a subform to enter the reasons - one per row - as many reasons as
needed.

If you do need to add data to the new fields, you can do that with an Update
query.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Miguelito Bain" <mi***********@hotmail.com> wrote in message
news:1b**************************@posting.google.c om...
hi everyone-

i inheritrd a database that wasn't designed very well. i'm trying to
decide whether or not it is a good idea to add at least 8 more fields
to a table that already has existing records in it- about 800.

right now, a combo box records the reason why a particular person
called. i want to add 3 more combo boxes to record the other reasons
why someone called.

the table with the records in it has 6 six firlds. i want to add like
eight more fields. the records already in the database will not be
updated. we aren't going to go back to the old calls records and add
more reasons for the call. we're only going to start recording more
reasons why a person calls from now on or whenever i find the best
solution to this.

so is it safe/ ok to add more fields to a table that already has a lot
of existing records? in the different books i've read, the authors say
to never do this.

i'm thinking about creating a new table with all of the fields i need
and then somehow copying the old records and pasting them into the new
table. does this sound like a better idea?

thanks for your time,

miguelito

Nov 12 '05 #2
Mr. Bain,
Like the other person posting here, I'd think about listing reasons why a
person called along with the details recorded about the call in a row.
There would be a single column called "call_reason" that tied to another
table listing call reasons, perhaps a column to store a date/time of the
call, a large text column (255 is the limit in Access XP unless you are
working with MSDE, then the limit increases to 4000 characters) to store
notes about the call, a column indicating status (open, closed, on-hold,
etc.) and some way of linking the call to the contact calling, if possible.
Then again, MS Outlook does all of this and more, comes with some versions
of MS Office, and . . . would put you out of a job, never mind.

"Miguelito Bain" <mi***********@hotmail.com> wrote in message
news:1b**************************@posting.google.c om...
hi everyone-

i inheritrd a database that wasn't designed very well. i'm trying to
decide whether or not it is a good idea to add at least 8 more fields
to a table that already has existing records in it- about 800.

right now, a combo box records the reason why a particular person
called. i want to add 3 more combo boxes to record the other reasons
why someone called.

the table with the records in it has 6 six firlds. i want to add like
eight more fields. the records already in the database will not be
updated. we aren't going to go back to the old calls records and add
more reasons for the call. we're only going to start recording more
reasons why a person calls from now on or whenever i find the best
solution to this.

so is it safe/ ok to add more fields to a table that already has a lot
of existing records? in the different books i've read, the authors say
to never do this.

i'm thinking about creating a new table with all of the fields i need
and then somehow copying the old records and pasting them into the new
table. does this sound like a better idea?

thanks for your time,

miguelito

Nov 12 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Aaron | last post by:
I've been using MySQL for several months and enjoyed great success when installing other people's scripts to databses I make using phpMyAdmin. My challenge is developing from scratch the...
3
by: Raj | last post by:
Hi, I am trying to add some more information to the table which already has a lot a data (like 2-3000 records). The new information may be adding 2-3 new columns worth. Now my questions are:...
2
by: MikeY | last post by:
Hi everyone, Using C#, Windows forms. I am trying to learn how to modify existing data with in MSDE table/fields. If anyone could help me out with my code, I would appreciate it. My code is as...
13
by: nyt | last post by:
I have a problem of number and text field. I got the database file(mdb) that contains many combo boxes used and its list values are created by "value list" For eg field Field name= 'furniture'...
1
by: Nishtha | last post by:
Can anybody tell me how to add text box in front end at runtime and also to add corresponding fields in database with connectivity in vb.net I know i can add controls at runtime and also add...
20
by: technocraze | last post by:
Hi guys & commnunity experts, Does anyone knw how to go about checking for existing data in an MS Acess table? I have tried out the following code using vb but doesnt seem to work that well? Can...
2
by: Gary42103 | last post by:
Hi I need Perl Script to do Data Parsing using existing data files. I have my existing data files in the following directory: Directory Name: workfs/ams Data File Names: 20070504.dat,...
0
by: cb123 | last post by:
Hello, Please bear with me I'm new to t-sql. I've had no luck trying to figure this out yet using sql code. I need to use an existing table (data dictionary) as input for creating a new table. ...
1
by: drwigginton | last post by:
I have created several bar charts in MS Access using query results to provide the data for the chart. I added data tables to the charts to show the actual values. My problem is that one of the fields...
2
by: kostasgio | last post by:
Hello, this is my first post here, i hope i'll find this forum usefull. Although i did a search about my question, i didnt find what i need , because the question isnt exactly what it sounds. ...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.