A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Updating a split database



 
 
Thread Tools Display Modes
  #1  
Old April 19th, 2010, 05:52 AM posted to microsoft.public.access
forest8
external usenet poster
 
Posts: 196
Default Updating a split database

Hi there

I've searched through the access forum and found several possible ways to do
this but I thought I'd ask for confirmation.

I have split my database and distributed to my users but I need to make some
updates/changes to the database. I need to modify three tables and its
associated forms. Also, I need to correct a button on one of my forms that
doesnt work.

Should I be working on the split database or the original database before it
was split?

Also, if I work on the split database, do I work on the front end or backend?

How do I get the new database changes to my users if they're currently
working on it?

Thank you in advance for your help.



  #2  
Old April 19th, 2010, 06:10 AM posted to microsoft.public.access
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Updating a split database

On Sun, 18 Apr 2010 21:52:01 -0700, forest8
wrote:

Hi there

I've searched through the access forum and found several possible ways to do
this but I thought I'd ask for confirmation.

I have split my database and distributed to my users but I need to make some
updates/changes to the database. I need to modify three tables and its
associated forms. Also, I need to correct a button on one of my forms that
doesnt work.

Should I be working on the split database or the original database before it
was split?

Also, if I work on the split database, do I work on the front end or backend?

How do I get the new database changes to my users if they're currently
working on it?

Thank you in advance for your help.



You must make the table changes in the backend, because that's where the
tables are. If the users are already sharing the backend, you'll need to get
exclusive access to it to make the changes.

Form, report, query and code changes must be done in your own copy of the
frontend. You'll want to *delete* the links to any tables that you changed,
Compact and Repair the database, and use File... Get External Data... Link to
relink to them. Make the form changes after you have done so; then you can
distribute copies of the new frontend (or, better, a .mde file made from it)
to your users.

The orignal database is now useful for archival, not for much of anything
else.
--

John W. Vinson [MVP]
  #3  
Old April 19th, 2010, 08:39 AM posted to microsoft.public.access
Peter Hibbs
external usenet poster
 
Posts: 871
Default Updating a split database

To make changes to fields and/or tables in the Back-End file then have
a look at the code in the Back End Update Utility at :-

http://www.rogersaccesslibrary.com/f...-89fzzb27.html

You may also need to re-link the front end to the back end at the
user's site automatically, the Back End Re-Linker code at this site
can do that.

If your clients are using a network you could try the Front End
Updater Utility on the same site. You would just email the client a
new version of the front-end file (zipped, of course) and tell them to
unzip it into the appropriate folder on their Server PC. The
documentation provided explains how to set it up.

HTH

Peter Hibbs.



On Sun, 18 Apr 2010 21:52:01 -0700, forest8
wrote:

Hi there

I've searched through the access forum and found several possible ways to do
this but I thought I'd ask for confirmation.

I have split my database and distributed to my users but I need to make some
updates/changes to the database. I need to modify three tables and its
associated forms. Also, I need to correct a button on one of my forms that
doesnt work.

Should I be working on the split database or the original database before it
was split?

Also, if I work on the split database, do I work on the front end or backend?

How do I get the new database changes to my users if they're currently
working on it?

Thank you in advance for your help.


  #4  
Old April 19th, 2010, 01:11 PM posted to microsoft.public.access
Mark Andrews[_4_]
external usenet poster
 
Posts: 169
Default Updating a split database

I just did a change to automate the back-end to update (based on a new
version of the software).
I went with back-end update utility method that Peter recommended.
This one is also good:
http://home.gci.net/~mike-noel/Compa...reEM-About.htm

HTH,

--
Mark Andrews
RPT Software
http://www.rptsoftware.com
http://www.donationmanagementsoftware.com


"Peter Hibbs" wrote in message
...
To make changes to fields and/or tables in the Back-End file then have
a look at the code in the Back End Update Utility at :-

http://www.rogersaccesslibrary.com/f...-89fzzb27.html

You may also need to re-link the front end to the back end at the
user's site automatically, the Back End Re-Linker code at this site
can do that.

If your clients are using a network you could try the Front End
Updater Utility on the same site. You would just email the client a
new version of the front-end file (zipped, of course) and tell them to
unzip it into the appropriate folder on their Server PC. The
documentation provided explains how to set it up.

HTH

Peter Hibbs.



On Sun, 18 Apr 2010 21:52:01 -0700, forest8
wrote:

Hi there

I've searched through the access forum and found several possible ways to
do
this but I thought I'd ask for confirmation.

I have split my database and distributed to my users but I need to make
some
updates/changes to the database. I need to modify three tables and its
associated forms. Also, I need to correct a button on one of my forms that
doesnt work.

Should I be working on the split database or the original database before
it
was split?

Also, if I work on the split database, do I work on the front end or
backend?

How do I get the new database changes to my users if they're currently
working on it?

Thank you in advance for your help.


  #5  
Old April 21st, 2010, 08:56 PM posted to microsoft.public.access
forest8
external usenet poster
 
Posts: 196
Default Updating a split database

Hi again

I won't be able to get my split database from my users until the
administrator returns from holidays.

Can I work on my version of the database (BE and FE) and then somehow add to
the users' version when he sends it to me?

Thank you
Forest

"John W. Vinson" wrote:

On Sun, 18 Apr 2010 21:52:01 -0700, forest8
wrote:

Hi there

I've searched through the access forum and found several possible ways to do
this but I thought I'd ask for confirmation.

I have split my database and distributed to my users but I need to make some
updates/changes to the database. I need to modify three tables and its
associated forms. Also, I need to correct a button on one of my forms that
doesnt work.

Should I be working on the split database or the original database before it
was split?

Also, if I work on the split database, do I work on the front end or backend?

How do I get the new database changes to my users if they're currently
working on it?

Thank you in advance for your help.



You must make the table changes in the backend, because that's where the
tables are. If the users are already sharing the backend, you'll need to get
exclusive access to it to make the changes.

Form, report, query and code changes must be done in your own copy of the
frontend. You'll want to *delete* the links to any tables that you changed,
Compact and Repair the database, and use File... Get External Data... Link to
relink to them. Make the form changes after you have done so; then you can
distribute copies of the new frontend (or, better, a .mde file made from it)
to your users.

The orignal database is now useful for archival, not for much of anything
else.
--

John W. Vinson [MVP]
.

  #6  
Old April 22nd, 2010, 05:54 AM posted to microsoft.public.access
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Updating a split database

On Wed, 21 Apr 2010 12:56:01 -0700, forest8
wrote:

Hi again

I won't be able to get my split database from my users until the
administrator returns from holidays.

Can I work on my version of the database (BE and FE) and then somehow add to
the users' version when he sends it to me?


The frontend, sure; but the changes to the backend must be made in their
backend. That's where all their working information is! Your copy of the
backend (I presume) does not contain the information that they are entering,
so any changes that you make to its structure are irrelevant.

The only out would be to make the changes in your copy of the backend, and
then write a whole mess of append queries to let you link to their backend and
append all the data into the new backend.
--

John W. Vinson [MVP]
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:44 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.