What makes database connection expensive?

What makes database connection expensive?

am 30.01.2008 17:36:40 von gnewsgroup

We all seem to know that database connections are expensive and we try
to reduce the number of database trips as much as possible.

This may sound like a stupid question: What makes a database
connection expensive? Is it memory intensive? CPU-intensive? Or does
it use a lot of bandwidth? Or none of these?

Thanks.

Re: What makes database connection expensive?

am 30.01.2008 18:06:49 von Alvin Bruney

Creating the connection - opening the socket and preparing datastructures -
seems to be where the expense is located relative to the speed of querying
that is.

--

Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The O.W.C. Black Book, 2nd Edition
Exclusively on www.lulu.com/owc $19.99
-------------------------------------------------------



"gnewsgroup" wrote in message
news:9b65260f-68f1-49d5-9266-393b78d44b1d@e25g2000prg.google groups.com...
> We all seem to know that database connections are expensive and we try
> to reduce the number of database trips as much as possible.
>
> This may sound like a stupid question: What makes a database
> connection expensive? Is it memory intensive? CPU-intensive? Or does
> it use a lot of bandwidth? Or none of these?
>
> Thanks.

Re: What makes database connection expensive?

am 30.01.2008 18:27:13 von gnewsgroup

On Jan 30, 12:06=A0pm, "Alvin Bruney [ASP.NET MVP]"
wrote:
> Creating the connection - opening the socket and preparing datastructures =
-
> seems to be where the expense is located relative to the speed of querying=

> that is.
>
> --
>
> Regards,
> Alvin Bruney [MVP ASP.NET]
>
> [Shameless Author plug]
> The O.W.C. Black Book, 2nd Edition
> Exclusively onwww.lulu.com/owc$19.99
> -------------------------------------------------------
>

Thank you very much.

Re: What makes database connection expensive?

am 30.01.2008 18:42:35 von Steve

Yes I agree with Alvin and I'd also like to highlight that there are
typically a limited number of simultaneous connections permitted to the
database. So while creating and destroying database connections can be
expensive, keeping them open while they're not being used can also be
expensive.
This is why the built-in connection pooling feature of ADO.NET is so nice
even though it may not be perfectly optimal in all situations.

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
http://iPhonePlaza.net


"gnewsgroup" wrote in message
news:9b65260f-68f1-49d5-9266-393b78d44b1d@e25g2000prg.google groups.com...
> We all seem to know that database connections are expensive and we try
> to reduce the number of database trips as much as possible.
>
> This may sound like a stupid question: What makes a database
> connection expensive? Is it memory intensive? CPU-intensive? Or does
> it use a lot of bandwidth? Or none of these?
>
> Thanks.

Re: What makes database connection expensive?

am 31.01.2008 10:52:53 von Aidy

To be fair, ADO has been pooling connections long before ado.net :)

"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" wrote in
message news:8C06FF59-3F3D-4238-B221-0471FED98719@microsoft.com...
> Yes I agree with Alvin and I'd also like to highlight that there are
> typically a limited number of simultaneous connections permitted to the
> database. So while creating and destroying database connections can be
> expensive, keeping them open while they're not being used can also be
> expensive.
> This is why the built-in connection pooling feature of ADO.NET is so nice
> even though it may not be perfectly optimal in all situations.
>
> --
> I hope this helps,
> Steve C. Orr,
> MCSD, MVP, CSM, ASPInsider
> http://SteveOrr.net
> http://iPhonePlaza.net
>
>
> "gnewsgroup" wrote in message
> news:9b65260f-68f1-49d5-9266-393b78d44b1d@e25g2000prg.google groups.com...
>> We all seem to know that database connections are expensive and we try
>> to reduce the number of database trips as much as possible.
>>
>> This may sound like a stupid question: What makes a database
>> connection expensive? Is it memory intensive? CPU-intensive? Or does
>> it use a lot of bandwidth? Or none of these?
>>
>> Thanks.
>
>