Limit to New records only after synchro

  • Thread starter Thread starter Sharktyyfa
  • Start date Start date
S

Sharktyyfa

Hi, hoping someone can help.

Access 2003, WinXP.

I have built a database that uses synchro to co-ordinate with the
mothership.

All is well.

The person i built it for wants the satellites to be able to edit the
entries in their database until it is synchro-ed(sic?) with the mothership.

At that point they should only be able to add new entries and not edit
existing records.

Is this possible?

Any and all responses welcome.
 
In general if they are working on the tables using a form where the
AllowAdditions is set to "yes" and the AllowEdits is set to "No" this would
suffice to meet one of your needs, but not the "in between Synch I can edit"
criterion.

Well, it is a conundrum, no doubt about it. Because you are asking to allow
them to selectively edit SOME records, but not ALL records, presumably from
the same table.

I guess one way is to work with a duplicate table ... When they synch, dump
the entire reservoire into another table, and let the Forms work from this
table. The second table gets flushed / refilled with every synch.
Just curious, Does synching cause items they "add" ... to get added to the
mother ship's tables? If so, added records will need to be added to both the
copied table and the main table on the satellite machine.

Just some dumb guesses as to procedure, don't know what kind of a
performance hit we're talking creating a second set of table(s).
 
Hi mate,

Thanks for the reply.

The client's plan is to have editing ability on the mothership only. The
mothership is a complete record and so is each laptop once synched.

The story behind it is that they have one employee who is not too competent
so they want to limit their potential to cause damage as they can check the
new ones added each day from the laptop.

I know, I know, I wouldn't let the employee near the laptop but there you
have it.

Cheers,
 
In which case, all you need to do is synch, dump all data from the mother
ship into both the synched table and the editable one, and all forms and
editable queries will have the editable table as the source table? Bloat
anyone?
 
I guess one way is to work with a duplicate table ... When they
synch, dump the entire reservoire into another table, and let the
Forms work from this table. The second table gets flushed /
refilled with every synch. Just curious, Does synching cause items
they "add" ... to get added to the mother ship's tables? If so,
added records will need to be added to both the copied table and
the main table on the satellite machine.

Not an attractive option in a replicated application, which the
poster failed to explain clearly.
 
In which case, all you need to do is synch, dump all data from the
mother ship into both the synched table and the editable one, and
all forms and editable queries will have the editable table as the
source table? Bloat anyone?

You're assuming synchronization in code, not via Jet replication.

Your suggestions are useless in a replicated scenario.
 
Access 2003, WinXP.

I have built a database that uses synchro to co-ordinate with the
mothership.

All is well.

The person i built it for wants the satellites to be able to edit
the entries in their database until it is synchro-ed(sic?) with
the mothership.

At that point they should only be able to add new entries and not
edit existing records.

Is this possible?

You *still* didn't follow Larry's suggestion to include the word
REPLICATION in the subject. Because of that, I missed this new
thread and replied in the original one.

The suggestion to change the AllowEdits property of the forms on the
laptops is the best solution. However, it is not foolproof -- you'd
still need to secure your data tables.
 
Right, sorry. So - have you offered the OP a better plan, or are you not
aware of any? I was trying to help the OP, sorry if I goofed.
 
David W. Fenton said:
message news:[email protected]...

Right, sorry. So - have you offered the OP a better plan, or are
you not aware of any? I was trying to help the OP, sorry if I
goofed. "

Yes, but I posted in the original thread, because I was expecting
the new thread to have "replication" in the subject, as Larry Linson
had recommended.

I suggested the same thing you suggested for setting the editing
properties of the form, well before I'd read either of your answers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top