If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > Best Database for this software

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-04-04, 06:40
DecksTerrorT DecksTerrorT is offline
Registered User
 
Join Date: Apr 2004
Posts: 10
Best Database for this software

Hello Everyone..

I am currently building an application which updates a database at the rate of 1000 rows per second.. I am finding that unless I use bulk insert with SQL Server I cannot insert the data as single rows (CPU Flies off the handle on the server)...

The only problem with this is that I need to rationalise the data without hammering the server (I have yet to find a method using SQL Server which doesn't mash up the server)..

Also because this software needs to be distributable I was thinking SQL Server is not the best way to go..

Does anyone have any experience with Flat file databases ?? Which one would be the best ?? for this kind of mass record environment ?

Remember its got to be a distributable database.

Thanks.
Reply With Quote
  #2 (permalink)  
Old 05-04-04, 13:12
Pat Phelan Pat Phelan is offline
Resident Curmudgeon
 
Join Date: Feb 2004
Location: In front of the computer
Posts: 12,605
MSDE is the "workstation" version of SQL Server. It can be distributed as part of any Visual Studio application. It can easily process 1000 rows/sec on most hardware using either BCP or BULK INSERT.

I'm not clear what you mean by "rationalization" of your data.

-PatP
Reply With Quote
  #3 (permalink)  
Old 05-04-04, 13:33
DecksTerrorT DecksTerrorT is offline
Registered User
 
Join Date: Apr 2004
Posts: 10
No good

When I say rationalise the data I mean make it so its usable/relational (At the moment if I use bulk insert I can only insert into one table)...

It would be ok if Sql Server was fast enough at text comparison but no matter what indexes I place on the tables I am unable to get the data out fast enough.

Also on your MSDE comment, MSDE is restricted as to the amount of data/connections you can have at one time.

Last edited by DecksTerrorT; 05-04-04 at 13:35. Reason: MSDE is no good
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On