Tag: Editorials

Editorials

A Walk Down Memory Lane

I’m not coming up with a great topic for today, so I thought I would share a few of the many relational database engines I have used over the years. I started working with relational database engines while I was in college. I took a course for relational databases that used engines running on the old DEC PDP-11 computers called […]

Editorials

Sharding Instead of Partitions

Yesterday we talked about partitioned tables. The goal was to spread the load over multiple resources allowing for large amounts of data to be live and responsive at the same time. Spreading data over multiple tables allows the data to be stored in the most optimized state with the least amount of overhead. It also improves disaster recovery. Using partitioned […]

Editorials

VM vs. SaaS vs PaaS

A couple of people have both publicly and privately written about the whole “welcome to databases” question about how you get started. A few have ended up talking about technologies to avoid, and have turned to talking about technologies that are things that are better suited for prooduction. The irony is that no one seems to agree on where the […]

Editorials

Partition By Time

As the size of your database continues to grow, the physical implementation of your disk storage become more important. This is expressed in real time performance when using the database, and disaster recovery options. One of the key ways of handling large volumes of data, especially in a single table, is the use of partitioned tables. We are going to […]

Editorials

Optimal File Group Utilization

David Eaton brings us back to database fundamentals of file utilization for an SQL Server database. He writes: The fundamentals of SQL Server are still the same, spread out the data on as many disks as you can. Make sure the database design is correct and scalable. Set up filegroups to move indexes intelligently, meaning use two or more and […]

Editorials

Getting The Most Out Of Your Database

As AZ Jim reminds us in our comments, the configuration of your disk systems matter in more ways than one. There are many ways a controller can build RAID drives, consisting of at least two disks that perform as a single disk. The more disks participating in a RAID system, the better the fault tolerance should one or more drives […]

Editorials

Sizing a Database – from VM to PaaS

We’re about to undertake a mission to move some databases to a PaaS environment from a SQL Server database server. Sizing is proving to be more art than science thus far… I think sometimes that SQL Server folks invented the consulting response of “it depends.” It’s the catch-all response when someone asks “how long…” or “how much…” or “why is […]

Editorials

Database Disk Usage

I appreciate the comments for addressing performance issues that may be based on systems out of your control as a DBA. Some suggestions rely on tools to identify bottlenecks. Others take advantage of metrics you are already able to gather from SQL Server and performance monitors built into Windows. Sometimes the issues are not with SQL Server, or Windows is […]