- TalkBack 7 of 15:
- Next »
- « Previous
- Thread View
- Flat View
- One of us has misunderstood something fundamental.
-
I get the impression that the author know little or nothing about the internals of a database. The multi-user access/record locking is primarily software, has nothing to do with the actual data storage and, given that the data is rarely accessed, carries very little overhead.
The use of columns in relational databases is only a logical structure - internally the data tends to be stored in ISAM format or a variant thereof. The data is stored identically to as if it were a flat file and indexes are stored as lookup records via the primary key or physical location. Going back to first principals, the idea of an index is that since you are going to read it more often than you write it, you do the searches once when a record is written and save the result for use later. If this primary assumption is not true then don't add an index. You take the hit all at once when you search rather than spread out every time you add a record.
So the short answer is that, purely from a space point of view, there is no difference between creating a flat file and a relational database without indices.
Of course databases slow down when large volumes of data are streamed to it, due to hardware limitations and "head thrash" as the r/w head moves backwards and forwards reading different parts of the disk. Good caching will cut this down but all it really takes is to allow data to be split across drives just as indices are already. Have the offending table sitting on a seperate drive all to itself without having the slightest effect on the performance of the rest of the data. Not much of a change and there may be systems out there which already allow this.
So what's the problem which requires the proposed solution? - Posted by: MikeZD Posted on: 05/23/05 You are currently: a Guest | Members login | Terms of Use
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
What do you think?
SponsoredWhite Papers, Webcasts, and Downloads
- Three Steps You Need to Know to Stop Data Loss Varonis Sensitive data exposed to misuse or loss... it is the stuff of nightmares ... Download Now
- Building the Virtualized Enterprise with VMware Iinfrastructure VMware VMware virtualization software has been adopted by over 120,000 enterprise ... Download Now
- Five Steps to Determine When to Virtualize YourServers VMware Server virtualization isn't just for big companies. Entry-level ... Download Now
Premier Vendor Content Whitepapers, webcasts & resources from our Power Center Sponsors
- Microsoft Dynamics CRM Online - Free Six-Month Trial for Eligible Organizations
-
Microsoft Dynamics CRM Online provides fast online access, simple contact management and better sales performance for a low monthly cost - the best value on the market today.

- Learn more about the free, six-month trial offer >>
- Learn more about tools to grow your business
-
The Business Essentials Guide provides you useful tools and templates to help grow your business and save you time with automated shipping solutions.
- Save time with the UPS Business Essentials Guide
- Achieving Cost and Resource Savings with Unified Communications
-
Find out how to maximize your communications investments with Unified Communications.

- Click to download >>
-
-
Smart Tech
Expert advice on innovations in healthcare and the green technologies that make it happen.
Find out more
-
Smart Business
Discussion and advice on management issues that revolve around making your world smarter and more useful.
More Smart Advice
-
Smart People
The best and worst moves in the management and strategy trenches.
Learn More






