Click here to Skip to main content
15,889,315 members
Home / Discussions / Database
   

Database

 
AnswerRe: Best Database Configures with c# win. form Pin
Bernhard Hiller11-Feb-14 21:39
Bernhard Hiller11-Feb-14 21:39 
GeneralRe: Best Database Configures with c# win. form Pin
Richard Deeming12-Feb-14 1:47
mveRichard Deeming12-Feb-14 1:47 
GeneralRe: Best Database Configures with c# win. form Pin
Jörgen Andersson12-Feb-14 4:44
professionalJörgen Andersson12-Feb-14 4:44 
GeneralRe: Best Database Configures with c# win. form Pin
Bernhard Hiller12-Feb-14 20:54
Bernhard Hiller12-Feb-14 20:54 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger12-Feb-14 5:14
professionalagent_kruger12-Feb-14 5:14 
GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen12-Feb-14 6:39
professionalEddy Vluggen12-Feb-14 6:39 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger13-Feb-14 1:03
professionalagent_kruger13-Feb-14 1:03 
GeneralRe: Best Database Configures with c# win. form Pin
Jörgen Andersson13-Feb-14 2:09
professionalJörgen Andersson13-Feb-14 2:09 
You have to manipulate ALL of those 100 million records every hour?
Or is it just some, and then what percentage?
And what kind of reporting do you need to do? On how many records?

Fact is that it's not so important which DB you're having as long as you're just doing CRUD.
The size of the database is also not very important for the performance (Were talking about a factor of a couple of hundred times larger for every new level in an index, assuming B-Tree index).
It's the number of transactions! And how many records that are affected by the queries.

So the limiting factors will be the hardware (mostly the harddrives), the configuration of the hardware (It doesn't matter if the drives are fast if they're in a RAID5), and the indexes.
If you have no indexes at all, all inserts will be ridiculously fast, but querying or updating will be just as ridiculously slow.
Adding every index you can think about will make both inserts and updates ridiculously slow instead, while the queries will be faster.
Note that updates needs to both read and write.

Finding the right indexes will give you a good balance.
Wrong is evil and must be defeated.
- Jeff Ello[^]

GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen13-Feb-14 2:59
professionalEddy Vluggen13-Feb-14 2:59 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger13-Feb-14 4:38
professionalagent_kruger13-Feb-14 4:38 
GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen13-Feb-14 10:28
professionalEddy Vluggen13-Feb-14 10:28 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger14-Feb-14 0:47
professionalagent_kruger14-Feb-14 0:47 
GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen14-Feb-14 6:54
professionalEddy Vluggen14-Feb-14 6:54 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger14-Feb-14 16:51
professionalagent_kruger14-Feb-14 16:51 
GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen14-Feb-14 22:58
professionalEddy Vluggen14-Feb-14 22:58 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger15-Feb-14 1:36
professionalagent_kruger15-Feb-14 1:36 
GeneralRe: Best Database Configures with c# win. form Pin
Eddy Vluggen15-Feb-14 23:15
professionalEddy Vluggen15-Feb-14 23:15 
QuestionHow I create new column in sql server? Pin
Chandrakanta.Sen9-Feb-14 3:47
professionalChandrakanta.Sen9-Feb-14 3:47 
GeneralRe: How I create new column in sql server? Pin
Andrius Leonavicius9-Feb-14 7:17
professionalAndrius Leonavicius9-Feb-14 7:17 
AnswerRe: How I create new column in sql server? Pin
Mycroft Holmes9-Feb-14 11:54
professionalMycroft Holmes9-Feb-14 11:54 
AnswerRe: How I create new column in sql server? Pin
Member 1039216111-Feb-14 7:07
Member 1039216111-Feb-14 7:07 
Questionwhat is the use of case statement Pin
Chandrakanta.Sen8-Feb-14 2:14
professionalChandrakanta.Sen8-Feb-14 2:14 
AnswerRe: what is the use of case statement Pin
Peter Leow8-Feb-14 2:48
professionalPeter Leow8-Feb-14 2:48 
GeneralRe: what is the use of case statement Pin
Chandrakanta.Sen9-Feb-14 3:37
professionalChandrakanta.Sen9-Feb-14 3:37 
GeneralRe: what is the use of case statement Pin
Jubayer Ahmed10-Feb-14 1:03
professionalJubayer Ahmed10-Feb-14 1:03 

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.