Re: Question for Microsoft guys
From: Steve Kass (skass_at_drew.edu)
Date: 02/16/04
- Next message: Bob: "foreign key constraints between tables in different databases"
- Previous message: Steve Kass: "Re: How to get the 0 counts in a group by ?"
- In reply to: Tim Xox: "Question for Microsoft guys"
- Next in thread: Tim Xox: "Re: Question for Microsoft guys"
- Reply: Tim Xox: "Re: Question for Microsoft guys"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 16 Feb 2004 16:37:35 -0500
Tim,
I'm not sure what you mean by "send to client a buffer," but there's
no question that for some operations, flat files and utilities like Unix
grep are faster than databases. But the purpose of an RDBMS is to store
and retrieve data in a managed way, providing security, integrity,
logging, concurrency management and many other benefits. If you don't
care about any of those, you might not need an RDBMS. Your clients
might also then take what you send with a grain of salt.
But the operation you describe, selecting one or more rows, should be
faster with a well-designed database than with a file system. But a
table with 500 columns suggests that you aren't working with a
well-designed database, and you may not be able to use indexes to make
things efficient.
If you give some idea of what kind of SELECT query you are working
with, and what your table looks like (we probably don't need to see all
500 columns), maybe we can be more helpful.
SK
Tim Xox wrote:
>Hi guys,
>My SQL program trying to compete with flat file system
>Just to select one or more rows from table with 500 columns ( total length
>of brow is about 3K) .
>Flat file system is much faster and I think if I had possibility to send to
>client a buffer with selected rows instead of recordset it would be much
>faster.
>Is it possible somehow to do it on SQL Server?
>Thanks.
>TIm.
>
>
>
>
- Next message: Bob: "foreign key constraints between tables in different databases"
- Previous message: Steve Kass: "Re: How to get the 0 counts in a group by ?"
- In reply to: Tim Xox: "Question for Microsoft guys"
- Next in thread: Tim Xox: "Re: Question for Microsoft guys"
- Reply: Tim Xox: "Re: Question for Microsoft guys"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|