Monthly Archives: May 2013

SQL Server Domination Plan Phase One Has Completed

Last week I let loose a rebel yell and issued a command directive: Death to Oracle! Today I am proud to announce that I dealt a death knell to one of our Oracle servers by migrating our finance applications from Oracle to SQL Server. This was a year-long project that culminated in one really, really long weekend of SQL Fun. I survived and Oracle bit the dust. My plan for SQL Server World Domination has completed phase one.

My part of the project included a 27-hour marathon involving migrating the data using SQL Server Migration Assistant and then numerous scripts and comparisons to day-zero databases from the vendor while upgrading the application across five different product upgrades using RedGate SQL Compare (which worked beautifully). It was a day full of Starbucks triple espressos and five-hour energy shots before I crashed and the testers took over. We then rounded out the weekend with a 33-hour ETL process which all completed successfully before the application went live at 7am this morning. Mission accomplished.

This project has great visibility in my organization and its success will open the flood gates to future migrations in showing our world that SQL Server is an enterprise level database. I am not stopping here, I want their 100 terabytes of production data! It will be mine, oh yes it will be mine.

Advertisement

SQL Server Domination Plan Has Begun

Today signals the end and the beginning for a year-long project.  My project for SQL Server Domination.  Our shop is primarily an Oracle shop with dot net developers.  Although I do have almost 300 databases across all levels, the bulk of mission critical applications are written for Oracle.

A little over a year ago we began a plan to migrate our financial applications to SQL Server in order to retire the oldest Oracle servers on site and reduce our massive licensing footprint.  This was all part of my plan for SQL Server World Domination (said in a maniacal voice, imagine that).  We knew that if this mission critical migration was a success that we could leverage our product against the Oracle servers in-house and begin the destruction of their infrastructure in favor of my glorious SQL Servers!  (Hear the trumpets heralding the new king?)

This project, if successful, will be the Oracle death knell.  Over the last year I have prepared diligently with one goal in site:  this migration weekend.  The weekend of my birthday seems apropos to give me the present that I so desire, SQL Server Domination.  You may have noticed that the number of blog posts recently have been limited especially after blogging every day last year.  For the last few months, I have had one purpose and one purpose only:  ensuring the success of this migration!

Let the trumpets herald the coming of a new dawn.  Long live SQL Server.  I will blog again next week on the other side of this project to declare that the Queen is dead and a new King has ascended the throne!   Until then queue the Imperial March, hello Starbucks and massive four day working weekend with little sleep migration project here I come!

 

T-SQL Tuesday #42 – The Long and Winding Road

T-SQL Tuesday

This month’s T-SQL Tuesday blog meme is brought to us by Wendy Pastrick (blog|twitter) and the subject is “The Long and Winding Road.

When I saw this month’s subject, I lunged forward and began to write dropping everything else that I was working on.  Why?  Any chance to incorporate SQL Server with the Beatles is worth the time and effort.  After all, they are the greatest band of all time and if you disagree then you are just going to have to live with being wrong, right?

Many moons ago, well it was actually 1997, I had written some applications in Visual Basic: yes, the old and horribly slow one, you know the one.  But then I discovered Delphi (Object Pascal for the kiddies) and wrote amazing some amazing applications.  I even wrote a few games back then just to prove to myself that I could, they were not horribly great but I felt accomplished and I often wonder where those floppies are so that I could play them again.   Programming was my passion and it felt so amazing to create something from scratch, my own creation, my own Frankenstein: “It’s Alive!”

From there a company noticed some of my freeware applications and offered to move me to Virginia and teach me to write business applications in Progress 4GL for Unix and Windows.  Wait, you are going to train me, mentor me, and pay me double my current salary.  I’m in.  Progress was an amazing product with a very well written SQL-compliant RDBMS that rivaled Sybase, Informix and Oracle only without the marketing hype.  Their claim back then was that they were in over 60% of the Fortune 500.  The problem was that with their Value Added Reseller structure, many vendors would repackage their database as their own (as was allowed if they paid enough for the rights to distribute the product), so many of those companies had no idea that their database was “Powered by Progress.”

My years with the product were amazing learning to write code that would run in Unix, compile and run in Windows and then eventually would become used inside of tags of HTML to deliver data to the web was ground breaking at the time.  I was sure that this was the future, so much so that I became a consultant for the company traveling the globe for two years helping clients with installation, troubleshooting and training.  I drank the kool-aid.  I was pretty sure that with a little marketing they would sink the Oracle juggernaut.

At one company I even administered a SQL Server 6.5 and 7.0 boxes because they had vendor software that required it and I was the database guy for Progress.  I remember thinking how SQL Server was so miniscule compared to Progress.  I remember thinking that they will never make it in this sector.  Well I was wrong about the Xbox, too.

Enter early 2004, I had just successfully completed a fulfilling project and was looking for my next contract opportunity.  The well was dry, there were no opportunities for Progress.  I had a home and a small children and my family did not want to move.  The road had ended that day.  I had to take a job as a systems administrator to make ends meet.  The dream was over.  In the words of the Beatles….

The wild and windy night, that the rain washed away

Has left a pool of tears crying for the day

Why leave me standing here? Let me know the way

Then in 2008, I started a position that was part programmer and part SQL Server DBA.  Prior to this, I contemplated going back to school and leaving the IT field.  But as the Beatles would say…

And still they lead me back to the long winding road

You left me standing here a long, long time ago

Don’t leave me waiting here lead me to your door

The dream had come full circle, I found my new passion:  SQL Server.  It really was my old passion in disguise: DATA!  Hopefully this technology will be the one for many years to come, what do you think?

Auditing Revisited, Makes No Sense To Me

Back in January, I did a series on simple auditing which walked through setting up an audit and creating a simple SSRS report.  I actually used the report and the query that I demonstrated for a couple of servers in my stack that require auditing.  The basis of this revolves around the following line of code:

SELECT * FROM fn_get_audit_file (‘g:\auditing\*’, DEFAULT, DEFAULT)

This line of code runs great for my login and I never gave it much thought because I am running it from a sysadmin account.  When asked for users to be able to run this report that is when things are getting sticky.  I cannot fathom why a simple query for log data cannot be attributed to a read-only account.  In order for you to run this select statement you either need a sysadmin level account or the CONTROL SERVER permission which pretty much gives you the keys to the kingdom.  Why would they do that?

I am sure there is a great technical reason, but why not allow it to filter down to read-only access to simply view the data?  With those permissions whoever is in charge of running the audit can manipulate the data however they see fit.  That makes no sense to me but then again who am I in the grand scheme of things?  Shortly I will post a few different scenarios in how to solve this problem.  Enjoy!

%d bloggers like this: