I Need a CS Degree. I Don't Need a CS Degree
Steve has a few thoughts on how valuable education can be in your career.
2024-11-01
49 reads
Steve has a few thoughts on how valuable education can be in your career.
2024-11-01
49 reads
Cloud security can be better than on-premises, but it requires work and knowledge.
2024-10-30
74 reads
Data and databases are critical in today's world. Executives should understand that, and Steve has something you can pass along.
2024-10-28
121 reads
When you agree to work for a company, you should understand all your compensation.
2024-10-25
123 reads
The challenge of software pervading all aspects of our lives and inside many products is going to be create an interesting world when companies fail.
2024-10-23
85 reads
There is no shortage of mundane tasks at work. Steve Jones notes that you might not want to depend on those to fill your day in the future.
2024-10-22 (first published: 2015-05-18)
303 reads
There are all sorts of coding practices that produce better code. Steve Jones talks about one today.
2024-10-22 (first published: 2015-05-06)
376 reads
Steve Jones thinks that we often over-engineer software, trying too hard to consider every possibility rather than getting it close.
2024-10-22 (first published: 2009-07-15)
202 reads
Ignoring technical debt can cause no shortage of problems for companies. Today Steve has a recent example of this.
2024-10-21
119 reads
2024-10-18
64 reads
By John
AI and ChatGPT are all the rage these days. Seems like around every corner...
By Steve Jones
Next week is the 2024 PASS Data Community Summit in Seattle. I’ll be traveling...
By Steve Jones
bye-over – n. the sheepish casual vibe between two people who’ve shred an emotional...
Comments posted to this topic are about the item PASS Summit Time
I have a backup of full, differential and transaction log setup for our database....
Hello everyone, I hope you can help me. I have a table with measurement...
I have run this on SQL Server 2022 for the Sales database:
ALTER DATABASE Sales SET AUTO_CREATE_STATISTICS ON (INCREMENTAL = ON)I then run this in the Sales database:
USE Sales GO CREATE STATISTICS CustomerStats1 ON dbo.Customer (CustomerKey, EmailAddress) WITH INCREMENTAL = OFFThe dbo.Customer table is partitioned. How are statistics created? See possible answers