- Local time
- Today, 18:15
- Joined
- Jul 9, 2003
- Messages
- 17,410
My db is too big
Have you run compact and repair? Then put it in a zip file... It should be ok I reckon...
My db is too big
Wait, why am I getting your file? What did I miss?Thank you very much. I will work on it, My db is too big to try and send via AWF. Can I sent you a link via drop box?
I think I covered that in the *Starter Kit* I posted. In tlkpServices you have Sunday School or Wednesday you can select from and then once selected you can enter the Time for that Church also allowing you to select a Service multiple times as there may be more than one Service Time on a particular day. And they certainly won't be the same for all Churches.If churches can have multiple "morning" services, then it is best to store an actual time rather than a general idea of when.
By "slotting" I was referring to making a calendar. Somehow you need to map your list of services to a calendar. Simple, discrete pieces of data will simplify this.
Thank you very much. I have learned a lot from you example. Lot more to learn.So, I got finished a little early tonight and...
Okay so a few things:
When you enter a Church and select the Services they have you enter the Times there not in tlkpServices which just holds Sunday School, Wednesday, Evening Services. Because while the Services may be the same, i.e. Sunday School, the Times may not be.
Sermons are linked to tblChurchServices which is linked to tblChurches. You select your Sermon from there which are stored in tlkpSermons.
I broke out Contacts because there will most likely be more than one Contact per Church. You have the ability to add their Role and their Title as they don’t always match but the Role will come in handy if you want to send an eMail to those assigned a specific Role.
tblLinks is not linked because it can be used for Churches or Sermons for access external documents or websites.
There are some extra fields in there so don’t think I meant for you to use all of them but I was pulling from some stock tables. That said, I also did not add all the fields I think you might need. Not sure I have the full picture of what you are trying to do so consider this a *Starter Kit*. Hope it helps.![]()
Gina,So, I got finished a little early tonight and...
Okay so a few things:
When you enter a Church and select the Services they have you enter the Times there not in tlkpServices which just holds Sunday School, Wednesday, Evening Services. Because while the Services may be the same, i.e. Sunday School, the Times may not be.
Sermons are linked to tblChurchServices which is linked to tblChurches. You select your Sermon from there which are stored in tlkpSermons.
I broke out Contacts because there will most likely be more than one Contact per Church. You have the ability to add their Role and their Title as they don’t always match but the Role will come in handy if you want to send an eMail to those assigned a specific Role.
tblLinks is not linked because it can be used for Churches or Sermons for access external documents or websites.
There are some extra fields in there so don’t think I meant for you to use all of them but I was pulling from some stock tables. That said, I also did not add all the fields I think you might need. Not sure I have the full picture of what you are trying to do so consider this a *Starter Kit*. Hope it helps.![]()
INSERT INTO tblChurchesAWF ( cChurch )Hmm, well going to need to see the SQL of the append query to determine why the record count difference and the other differences. (May be mute if you do the below.)
As for the ID's if you are using the Autonumber field in your table they will not match ,y table and you shouldn't try to append those.. Since you need them to match I suggest bringing your original table in and first break the relationships to tblChurches, renaming the fields and then recreate the links.
yes appended Churches to see if I was doing it correctly, then appended states. From what you just posted I am assuming I have to do everything at once. Is that correct?Not sure I understand you appended the Churches and then appended the States. You should append the Churches and then UPDATE the State based on the Churches. Appending is adding so when you *added* the States it created duplicates.
Is that all you have to do all day is help retarded people. Thanks. I think I need to look over all the other tables you made me before I try it again and see what else I need to consider.Correct or run an update query for the States. Also, view it before you actually append it.