Click here to Skip to main content
16,005,121 members
Home / Discussions / Database
   

Database

 
AnswerRe: Count of a table whose name if a reference Pin
PaulMcKenzie4-Apr-06 10:48
PaulMcKenzie4-Apr-06 10:48 
GeneralRe: Count of a table whose name if a reference Pin
kevin1274-Apr-06 11:08
kevin1274-Apr-06 11:08 
AnswerRe: Count of a table whose name if a reference Pin
Eric Dahlvang4-Apr-06 10:55
Eric Dahlvang4-Apr-06 10:55 
GeneralRe: Count of a table whose name if a reference Pin
kevin1274-Apr-06 11:12
kevin1274-Apr-06 11:12 
AnswerRe: Count of a table whose name if a reference Pin
Eric Dahlvang5-Apr-06 11:27
Eric Dahlvang5-Apr-06 11:27 
QuestionSeeded field Pin
Tom Wright4-Apr-06 6:27
Tom Wright4-Apr-06 6:27 
QuestionSAN box and cluster of SQL 200 or 2005 Pin
Albert Pascual4-Apr-06 4:27
sitebuilderAlbert Pascual4-Apr-06 4:27 
AnswerRe: SAN box and cluster of SQL 200 or 2005 Pin
Mike Dimmick4-Apr-06 11:22
Mike Dimmick4-Apr-06 11:22 
It really doesn't work like that. You can cluster to get failover support, using Windows Server's clustering feature and SQL Server's virtual server support. You can't cluster to get better performance.

Even if your SAN would allow you to do that (and I don't think it would - I hope it wouldn't!) SQL Server gets most of its performance from caching data from the database files in RAM. It has no provision for invalidating that cache, so a change made by one server would not necessarily be seen by another server.

Transactional replication is pretty costly since all servers have to commit the transaction, so every transaction becomes a distributed transaction. This pushes costs of writes way up.

The recommended plan is, reportedly, to partition your data - to place some of the data on one server and some on another. This will never provide equal load balancing. It's not easy to do - your client now needs to know which server to look on, it's hard to dynamically change the partitions. Backing up becomes more problematic.

Stability. What an interesting concept. -- Chris Maunder
QuestionHow do you query a dataset? Pin
Rashar4-Apr-06 3:42
Rashar4-Apr-06 3:42 
AnswerRe: How do you query a dataset? Pin
Ricardo Casquete4-Apr-06 5:49
Ricardo Casquete4-Apr-06 5:49 
GeneralRe: How do you query a dataset? Pin
Rashar4-Apr-06 5:55
Rashar4-Apr-06 5:55 
QuestionHow to get name of all Oracle Listeners in my Oracle Database Pin
xcavin4-Apr-06 1:11
xcavin4-Apr-06 1:11 
AnswerRe: How to get name of all Oracle Listeners in my Oracle Database Pin
Chris Meech4-Apr-06 9:53
Chris Meech4-Apr-06 9:53 
QuestionDebug problem with query analyser Pin
MatthysDT4-Apr-06 0:41
MatthysDT4-Apr-06 0:41 
QuestionCSV file connection with OleDbConnection Pin
hasanali004-Apr-06 0:09
hasanali004-Apr-06 0:09 
QuestionCreate a table with a storage procedure Pin
mikobi3-Apr-06 21:12
mikobi3-Apr-06 21:12 
AnswerRe: Create a table with a storage procedure Pin
Ricardo Casquete4-Apr-06 6:12
Ricardo Casquete4-Apr-06 6:12 
Questionmulti user programming Pin
shinshit3-Apr-06 17:03
shinshit3-Apr-06 17:03 
AnswerRe: multi user programming Pin
Colin Angus Mackay3-Apr-06 23:05
Colin Angus Mackay3-Apr-06 23:05 
Questiondata from 2 different tables linked with a join. Pin
massimo Nicoletti3-Apr-06 3:13
massimo Nicoletti3-Apr-06 3:13 
AnswerRe: data from 2 different tables linked with a join. Pin
Ricardo Casquete4-Apr-06 6:14
Ricardo Casquete4-Apr-06 6:14 
GeneralRe: data from 2 different tables linked with a join. Pin
massimo Nicoletti4-Apr-06 20:43
massimo Nicoletti4-Apr-06 20:43 
GeneralRe: data from 2 different tables linked with a join. Pin
Ricardo Casquete4-Apr-06 22:49
Ricardo Casquete4-Apr-06 22:49 
GeneralRe: data from 2 different tables linked with a join. Pin
massimo Nicoletti4-Apr-06 23:27
massimo Nicoletti4-Apr-06 23:27 
GeneralRe: data from 2 different tables linked with a join. Pin
Ricardo Casquete4-Apr-06 23:36
Ricardo Casquete4-Apr-06 23:36 

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.