Click here to Skip to main content
16,006,065 members
Home / Discussions / Database
   

Database

 
AnswerRe: Making an enterprise app database independent... Pin
rwestgraham13-Sep-05 9:13
rwestgraham13-Sep-05 9:13 
GeneralRe: Making an enterprise app database independent... Pin
Salil Khedkar15-Sep-05 4:03
Salil Khedkar15-Sep-05 4:03 
Questionshow duplicates client within 28 days Pin
Anonymous12-Sep-05 22:13
Anonymous12-Sep-05 22:13 
AnswerRe: show duplicates client within 28 days Pin
Frank Kerrigan13-Sep-05 3:00
Frank Kerrigan13-Sep-05 3:00 
QuestionManipulating the DataSet Index Pin
watagal12-Sep-05 13:16
watagal12-Sep-05 13:16 
AnswerRe: Manipulating the DataSet Index Pin
Frank Kerrigan13-Sep-05 3:05
Frank Kerrigan13-Sep-05 3:05 
QuestionMSDE Pin
Ahsan Askare12-Sep-05 1:56
Ahsan Askare12-Sep-05 1:56 
AnswerRe: MSDE Pin
rwestgraham12-Sep-05 6:21
rwestgraham12-Sep-05 6:21 
Ahsan Askare wrote:
Can i distribute MSDE with my commercial apllication without worrying about the licensing isses so that my clients can use it ??

Yes. MSDE, unlike SQL Server, is intended for distribution along with your application - you may freely distribute MSDE with your applications.

Ahsan Askare wrote:
Can i use MSDE in client/server environment i.e MSDE running on some machine on the network and clients on some other machines ???

Yes.

Ahsan Askare wrote:
If yes, the how many concurrent connections are supported ?

OK, this is a tricky question. Many DB platforms are licensed by purchasing license packs for x number of users. For example, you may purchase a license that allows 1-15 connections, and if you need more you purchase an additional license for users 16-30, etc.

MSDE does not work this way.

MSDE uses an internal connection pool to support concurrent connections. The documents do not divulge how many threads are in this pool, nor can you configure a maximum number of connections. Instead, the way MSDE works is it will accept a practically unlimited number of concurrent connections, but depending on the load, some operations on some connections may time out because the connection pool could not service them in time.

There is an absolute limit on the maximum number of concurrent connections, and that limit is 32,767. But what this really represents is the upper limit of a small integer. MSDE will accept up to 32,767 concurrent connections because that is the maximum number of unique connection IDs (positive non-zero integer values) that it can assign.

So basically MSDE will accept concurrent connections until it runs out of IDs to assign each new connection - 32,767.

In practical terms, the maximum number of concurrent users MSDE will support is determined entirely by your application - what database operations are being requested, and how long is the maximum response time you consider acceptable. Only you can determine what the practical capacity limit is for your particular application.
AnswerRe: MSDE Pin
Luis Alonso Ramos12-Sep-05 14:14
Luis Alonso Ramos12-Sep-05 14:14 
QuestionThe question about DataView.Filter Pin
dreamwinter11-Sep-05 19:24
dreamwinter11-Sep-05 19:24 
AnswerRe: The question about DataView.Filter Pin
miah alom12-Sep-05 3:13
miah alom12-Sep-05 3:13 
QuestionHelp !!! Pin
WDI10-Sep-05 22:14
WDI10-Sep-05 22:14 
AnswerRe: Help !!! Pin
Colin Angus Mackay11-Sep-05 0:34
Colin Angus Mackay11-Sep-05 0:34 
GeneralRe: Help !!! Pin
WDI11-Sep-05 0:49
WDI11-Sep-05 0:49 
GeneralRe: Help !!! Pin
Colin Angus Mackay11-Sep-05 1:46
Colin Angus Mackay11-Sep-05 1:46 
QuestionStored Procedure - Verification Pin
phokojoe10-Sep-05 2:35
phokojoe10-Sep-05 2:35 
AnswerRe: Stored Procedure - Verification Pin
Colin Angus Mackay10-Sep-05 5:04
Colin Angus Mackay10-Sep-05 5:04 
GeneralRe: Stored Procedure - Verification Pin
phokojoe10-Sep-05 23:56
phokojoe10-Sep-05 23:56 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay11-Sep-05 0:15
Colin Angus Mackay11-Sep-05 0:15 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay11-Sep-05 0:21
Colin Angus Mackay11-Sep-05 0:21 
GeneralRe: Stored Procedure - Verification Pin
phokojoe11-Sep-05 22:11
phokojoe11-Sep-05 22:11 
GeneralRe: Stored Procedure - Verification Pin
Colin Angus Mackay12-Sep-05 1:55
Colin Angus Mackay12-Sep-05 1:55 
QuestionFree Databases Pin
Robert M Greene9-Sep-05 16:56
Robert M Greene9-Sep-05 16:56 
QuestionSQL Restore Mystery Pin
mjackson119-Sep-05 13:06
mjackson119-Sep-05 13:06 
AnswerRe: SQL Restore Mystery Pin
Rahul Walavalkar13-Sep-05 0:11
Rahul Walavalkar13-Sep-05 0:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.