Is anyone can help

  • Thread starter Thread starter Anthony
  • Start date Start date
A

Anthony

My problem is that on most of the databases that i created there is too many
talbes. i tried the compact/repair feature but that still disnt work. i
need to put the database onto other computers so other computers users will
have the information too.
 
Not sure what you are asking. There will be as many tables as you create
(plus a few system tables that are always there). Compacting and repairing
does not get rid of tables (thank goodness) it just organizes the data on
the disk a little better and gets rid of some wasted space.

You should have about six system tables plus any tables you created. If you
created tables that you no longer need, simply delete them.

As far as sharing the information with other users, this is most commonly
done by splitting your database into a front-end (with all the queries,
reports, and forms) and a back-end (with the tables containing your data).
The back-end is typically placed on a shared drive on your LAN and a copy of
the front-end is typically placed on each user's PC. The front-end
databases contain links to the data in the back-end. This allows all your
users to view, add, and modify data on one shared back-end database.
 
thank you, Rick I will try this
Rick B said:
Not sure what you are asking. There will be as many tables as you create
(plus a few system tables that are always there). Compacting and
repairing does not get rid of tables (thank goodness) it just organizes
the data on the disk a little better and gets rid of some wasted space.

You should have about six system tables plus any tables you created. If
you created tables that you no longer need, simply delete them.

As far as sharing the information with other users, this is most commonly
done by splitting your database into a front-end (with all the queries,
reports, and forms) and a back-end (with the tables containing your data).
The back-end is typically placed on a shared drive on your LAN and a copy
of the front-end is typically placed on each user's PC. The front-end
databases contain links to the data in the back-end. This allows all your
users to view, add, and modify data on one shared back-end database.
 

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