Upsizing mdb to MSDE

hooi

Registered User.
Local time
Tomorrow, 04:20
Joined
Jul 22, 2003
Messages
158
Hi,

I've three questions:
1. I'd like to know how to go about upsizing mdb be to MSDE. Should I use the same Upsizing Tool for this purpose?
2. How is security taken care of when data is upsized to MSDE. I presume the FE will continue to use the mdw file, how about the MSDE?
3. Has anyone tried to allow users to access the database via the web using Visual Basic.Net, is there anything I should be aware of especially user login authentication (and possibly security issue)?

Thanks...
 
Last edited:
Hi Pat,

Thank you for your reply.

Does the 4 users being referred to accessing the database concurrently?
Will it be slower than the full-fledge papa-SQL Server?
Will it be as slow with the SQL Server if the number of concurrent user is 4?

Thanks...
 
Thank you Pat for your insight.
 
The MSDE has more than 4 allowable connections.
Like all versions of SQL Server 2000, SQL Server 2000 Personal Edition and MSDE 2000 allow 32,767 connections to an instance of the database engine. There is no limit for the number of connections that can be executing operations at the same time. The only effect of the workload governor is that it starts slowing down the database engine when more than eight operations are actively running at the same time.

and remember, some of that is based on how you code your application.
 
The source I quote was direct from the MS document about how it governs.
You can use things like SQLExecMS to admin an MSDE. The MSDE is very useful for controlled environments (intranets) where budgets are tight and you need more than an access db.
 

Users who are viewing this thread

Back
Top Bottom