Happy New Year 2010
The first day of 2010 has Steve Jones blooper reel in addition to some well wishes.
2010-01-01
70 reads
The first day of 2010 has Steve Jones blooper reel in addition to some well wishes.
2010-01-01
70 reads
The end of another year has an early Friday poll this week from Steve Jones. What are you looking to do in 2010?
2009-12-31
110 reads
Steve Jones looks back at 2009 and examines some of the predictions he made at the beginning of the year.
2009-12-30
70 reads
A recent crash of the popular Coding Horror blog brings the responsibility of backups to the front of today's editorial. See if you agree with Steve Jones and his take on backups and restores.
2009-12-29
266 reads
It seems that IT people often get stuck working on the holidays, whether being on-call or even dealing with maintenance. We need to remember to rotate that coverage fairly since all of us deserve a break. Steve Jones also reminds you to negotiate compensation.
2009-12-28
163 reads
This week Steve Jones asks if Service Pack 4 for SQL Server 2005 is coming out and makes an argument why it should.
2009-12-28
686 reads
A guest editorial from Tim Ford updates this Christmas classic for the SQL Server professionals out there.
2009-12-24
308 reads
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
2009-12-23
68 reads
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
2009-12-22
105 reads
What is a database exactly? Steve Jones wonders if we should define it differently after viewing a list of some of the largest databases in the world, many of which might not equate to what a DBA or developer would consider a "database."
2009-12-18
160 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers