Editorials

Editorials

Using Shared Storage for Database Files

We have considered many different ways to optimize database storage using self hosted implementations. Memory, Direct Attached disks, RAID and SAN technologies, all hosted on proprietary hardware, allow you to configure storage to your specific needs. But what do you do when you are one consumer of a shared storage mechanism, hosted on either virtual machines in house, or in […]

Editorials

Optimizing Disks with RAID

Unlike disk separation, which we discussed yesterday, as a method to optimize database performance, RAID combines multiple disks for a single task. RAID can be used only to provide redundancy of the hard disk to avoid data loss. However, it can be configured so that when you write data to the disk, it spreads the data across multiple disks, resulting […]

Editorials

SQL Optimization Through File Segregation

We’ve talked about different ways to optimize disk access for your SQL Server database. Memory may be used for SQL Server cache, tempdb. Disk controllers may have their own cache. You can purchase many different kinds of disks, each with its own performance capabilities. Today we are going to take a brief look at combining disks to work as a […]

Editorials

Speeding up my database storage

If you need to optimize your disk for database access, and have implemented all the reasonable caching methods available, you can look into different disk optimization techniques. The simplest optimization is to put in a faster disk. Even when you purchase a database server there are many options for your disk systems. The least expensive are usually based on SATA […]

Editorials

Overcoming The Physics of Disk Storage

Knowing the restrictions of disk performance, how do you increase the performance of your database beyond the physics of your hard disk? There are two methods for performance improvement: 1) Caching, and 2) Higher performance Disk Configuraions. Caching can be done in many different layers. Firstly, SQL Server itself works in a cache. Increased RAM on the host, made available […]

Editorials

Do Disks Matter?

What kind of disk storage is on your database server? It does matter, depending on the size of your database, and the distribution of the data it contains. It also matters how much memory is available for SQL Server to do work. As you probably know, SQL Server does all of its work in memory. New records are created in […]

Editorials

Is Dot Net Core Moving In?

Once you get off the Windows server platform, many contend that Java is the dominant development tool. It seems that Microsoft really wants a piece of the action on the non-Microsoft servers. And who can blame them. They started off with a basic Me-Too implementation of a Java clone, using the Dot Net universal CLR. True to form, they put […]

Editorials

Why Do You Do It That Way

A story is told about a mother and a daughter who were cooking a roast for thanksgiving feast. The first thing the mom did was to cut the roast in half. The daughter asked her mom why she cut the roast in half. The mother answered, “I don’t know. My mother always did it that way.” So, they called the […]