drsql@hotmail.com


SQLServerCentral Editorial

Why Getting Data Right Matters

An InfoWorld article from 2017 suggests that 80 percent of a data scientist’s job is cleaning and transforming data, and I believe this is probably only true for organizations that spend at least an average effort in designing and implementing their data storage. These persons who have trained to analyze data using complex math formulas […]

You rated this post out of 5. Change rating

2020-02-01

174 reads

SQLServerCentral Editorial

Do You Have the Gifts to Be a DBA?

I recently had the pleasure of catching Paul McCartney in concert, and he was amazing. I have been a fan forever and have heard him tell the same stories he over and over with great delight. A familiar tale he tells is about when he wrote the song Yesterday. He woke up with the tune […]

3 (2)

You rated this post out of 5. Change rating

2019-07-13

326 reads

SQLServerCentral Editorial

Is Forgiveness Possible?

Recently, there was a prominent film director fired from directing an episode in a very entertaining and profitable movie franchise. His firing was for tweets he made that were in very bad taste. And bad doesn’t begin to cover it, they were about topics that were universally despicable. What made this interesting was not that […]

1 (1)

You rated this post out of 5. Change rating

2018-09-10

53 reads

SQLServerCentral Editorial

Why Volunteering May be a Bad Idea for You

Recently, as I was doing some work for the upcoming PASS Summit, a question popped in my head: “Why am I doing this?” It reminded me of the time when I was young (and idealistic). I went to the leader of a non-profit group asked about making it my permanent vocation. The leader looked at […]

5 (1)

You rated this post out of 5. Change rating

2018-07-30

65 reads

SQLServerCentral Editorial

Providing Feedback to Speakers

One of the greatest things that has arisen in the past 10 years or so is a veritable stream of great conferences for people to learn how to write better software, many of them low cost or even free. In the Data Platform community, we have had nearly 800 free SQL Saturday events around the […]

5 (3)

You rated this post out of 5. Change rating

2018-06-18

42 reads

SQLServerCentral Editorial

What Counts for a DBA – Inspirations

In order to be great, you need to have an idea what great is. A quote I use in every one of my database design presentations is by one of my non-technical inspirations, C. S. Lewis. The quote is from his book, An Experiment in Criticism. “There are no variations except for those who know […]

You rated this post out of 5. Change rating

2018-02-26

36 reads

SQLServerCentral Editorial

Why deadlines stink, and are so necessary

I hate deadlines. Really. I truly hate them. The problem is: they are usually unrealistic, often not much more than a wild guess. They restrict the amount of time that I can spend in preparation and research so that I can do things right; they squeeze the artistic quality out of my work as a […]

You rated this post out of 5. Change rating

2017-05-01

44 reads

Blogs

Export Extended Event Results to CSV or Table

By

This is something that I’ve seen pop up a couple of times on various...

Book Review – Fundamentals of Data Engineering

By

This book was recommended by some of my colleagues, so I decided to give...

Introduction to OpenAI and LLMs – Part 2

By

My previous blog post on this topic was Introduction to OpenAI and LLMs, the...

Read the latest Blogs

Forums

Creating an Index with a lot of Columns

By emuller1982

Hi all. I have been working on SQL Environment that are really not well...

Parse Double Quoted comma separated data with comma

By drbob

I've used this function before and I'm sorry I do not recall it's origination. ...

What is re-enabling Ole Automation Procedures?

By webrunner

Hello experts, I'm trying to disable (0) Ole Automation Procedures via sp_configure. But each...

Visit the forum

Question of the Day

Logon Trigger Messages

I created this trigger in SQL Server 2022:

CREATE TRIGGER checksteve
ON ALL SERVER 
FOR LOGON  
AS  
BEGIN  
IF ORIGINAL_LOGIN()= N'ARISTOTLE\Steve'
 PRINT 'Steve logged in'
END;  
GO
Where can I view "Steve logged in"?

See possible answers