Next Person Up
Steve wonders today about the need to compete in our jobs, especially with employers that view us as resources.
2020-04-02
128 reads
Steve wonders today about the need to compete in our jobs, especially with employers that view us as resources.
2020-04-02
128 reads
The whole world is going through some interesting times. Chances are pretty high that you’re working from home and your principal interaction with others is through virtual means. I know I’m that way as is my company, Redgate Software. It can be challenging or rewarding, depending on how you go about it. What’s even more […]
2020-03-28
126 reads
With almost a quarter of 2020 gone, Steve notes it's be time to stock of your career.
2020-03-27
492 reads
The nature of work might be changing, and Steve has a few thoughts on thinking about your job as always contracting.
2020-03-25
109 reads
Steve thinks that learning more about the SQL language is always a good career investment.
2020-03-18
350 reads
Working from home can be hard and Steve has a few ideas that might help you transition during these challenging times.
2020-03-16
246 reads
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
257 reads
A guest editorial today from Kendra has a few tips for working from home.
2024-04-15 (first published: 2020-03-12)
1,285 reads
Today Steve starts a mid year review of his career goals and encourages you to do the same.
2020-02-28
140 reads
2020-02-25
271 reads
By Steve Jones
SQL Bits 2025 was amazing, as always. It’s been my favorite conference to attend,...
Here’s how these tools can make Kubernetes security easier and help you avoid common...
By Steve Jones
lackout – n. the sudden awareness that you’re finally over someone, noticing that the...
Comments posted to this topic are about the item Shades and Reflecting on SQLBits...
In Azure SQL DB, i want to merge records from the staging table to...
Full error message: SSRS error: The Value for the image 'Image1' has a constant...
I have a table, called dbo.logger, in SQL Server 2022. I decide to add two new columns to this table with this code.
ALTER TABLE dbo.logger ADD CreateDate DATETIME CONSTRAINT dfGetDate DEFAULT GETDATE() GO ALTER TABLE dbo.logger ADD ModifyDate DATETIME DEFAULT dfGetDate GOWhat happens when I run these two batches? See possible answers