MSDE

  • Thread starter Michael S. Montoya
  • Start date
M

Michael S. Montoya

I have on several occasions created databases that ran quickly. But once I
split the tables out into another MDB database and link to those tables, I
notice the front end takes ALOT longer to load and process. I even try
copying the front end to everyone's local hard drive but that doesn't seem
to help any.

I had heard once of using MSDE (my client's projects are not yet "worthy" of
purchasing SQL server). Where can I get more information on how to use
Access with MSDE?
 
J

James Goodman

I would always make my users run local copies. It protects the original
copy, & should give better performance.

When you connect to SQL Server authentication will occur, this could explain
the time difference in loading. In all honesty, I expect SQL Server would be
slower than a small mdb (with small numbers of records etc) file used by
individual users. However it will give the same performance for n users,
where Access will not...
 
M

Michael S. Montoya

I am not using SQL currently. I am experiencing the delay using the Access
Front end AND back end.

I was wondering about MSDE and how to use it with Access
 
S

Sylvain Lafontaine

This is taking longer because more data must now travel on the network.

With MSDE, if you don't know what you are doing, it will probably even take
longer than with using Access as the BE. You have essentially 4 choices:

1- Use linked tables to MSDE (or SQL-Server, no practical difference in
your case) : this is without doubt the must easier solution but also the
must slower. You can probably achieve it in less than a few hours.

2- Use linked tables to MSDE but take the precaution of creating a lot
of views to minimize the network traffic, especially in case of joined
tables. You will get a much better performance and lower network traffic
but it requires that you know exactly what you are doing.

You can also add here and there some stored procedures and accessing
them using SQL Passthrough.

This big avantage of this one is that you can build it using the
first solution as your starting point but forget about achieving in only a
few hours.

3- Use an ADP project instead and a lot of Stored Procedure - very high
performance, very low network traffic but a much, much harder solution for
newbies and at leat one month of development for someone who knows what to
do.

4- Forget now about Access and go directly to the .NET Framework: this
solution have a very step learning curve but is the way of the future,
without any doubt in my mind (but you will probably find a lot of people
telling you exactly the reverse).

S. L.
 
W

wong wei wha

-----Original Message-----
I have on several occasions created databases that ran quickly. But once I
split the tables out into another MDB database and link to those tables, I
notice the front end takes ALOT longer to load and process. I even try
copying the front end to everyone's local hard drive but that doesn't seem
to help any.

I had heard once of using MSDE (my client's projects are not yet "worthy" of
purchasing SQL server). Where can I get more information on how to use
Access with MSDE?


.no comen
 
W

wong wei wha

-----Original Message-----
I have on several occasions created databases that ran quickly. But once I
split the tables out into another MDB database and link to those tables, I
notice the front end takes ALOT longer to load and process. I even try
copying the front end to everyone's local hard drive but that doesn't seem
to help any.

I had heard once of using MSDE (my client's projects are not yet "worthy" of
purchasing SQL server). Where can I get more information on how to use
Access with MSDE?


.
I don't know
 

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

Similar Threads

ADP vs. MDB? 16
MSDE 1
udf's with access 2000 nad msde 1
MSDE 1
ACCESS 2000 - ODBC - MSDE 2
Connect to MSDE file on ISP Server 3
Upsizing .mdb for split DB 3
Temp tables for reporting data 3

Top