Posts for: #SQL Server

Should I support this database?

database_support

As a DBA one of the jobs is making sure all the databases and database servers are working properly and you have a controlled environment.

Once in a while, you have a skeleton in the closet where suddenly a database server comes around and you’re scratching your head where it came from. Your manager (and maybe your colleagues) expect you to support it because you’re the DBA.

You don’t know the server, your colleague doesn’t (really) know the server. So now what. Are you going to take responsibility for everything on the database server of the database itself when you don’t know anything about it?

Read more →

SQL Cruise 2015 Mediterranean

SQL Cruise

I know I should have posted this a long time ago but I have the same excuses as everybody, work, too busy, kids, wife, etc, etc, etc ;) .

Last year I entered the contest for the worst day of DBA’s life from Simple-Talk.

The prize was a ticket to the SQL Cruise in the Mediterranean. That sounded good and I started thinking if I had a really bad day in the past. It took me a while to choose which one because there were a lot of winners in my mind. I sat down one evening and started to write my story and it got quite long at the end.

Read more →

Find columns with special characters

Problem

im special

Imagine a database where you want to know how many times a certain column contains a special character. The reason I had to do this was that I needed to know the impact of an export interface that wasn’t working properly with special characters.

But as lazy as I am when it comes to doing repetitive tasks, I had to find a way could easily get all columns with special characters in a data set without a lot of hassle.

Read more →

Get ASCII characters from string

I had a situation where I got an error converting a value to a decimal which had some white text and a valid number.

During the conversion, I used the LTRIM and RTRIM functions to remove any white spaces which were present at the beginning and the end of the value.

Unfortunately, the characters in the string didn’t get removed with these functions.

This led me to create a little script to get the different character strings.

Read more →

Split large data file into smaller data files

Problem

split_large_databasefile

The business uses a database that is 350 GB database in size and has only one data file and one transaction log file. The previous DBA didn’t increase the amount of data files which lead to a large data file. Due to the size of the data file, I got into trouble with the performance, and restoring the database wasn’t a walk in the park either. So how can split a large data file into smaller data files?

Read more →