Stored Procedures Reconsidered
A guest editorial from Scott White that looks at the use of stored procedures from a developer's point of view.
2008-07-30
1,357 reads
A guest editorial from Scott White that looks at the use of stored procedures from a developer's point of view.
2008-07-30
1,357 reads
With the price of gas rising and no end in sight. Steve Jones steps back to talk a bit about what solutions there might be to ease the burdens on everyone.
2008-07-29
128 reads
Developers tend to be lazy in Steve Jones' view. This week he examines some of the problems that this lack of effort can cause in applications.
2008-07-28
504 reads
Steve Jones talks about how IT hasn't changed very much over the years and how your career might not be that different in ten years.
2008-07-28
206 reads
A Friday poll from Steve Jones looks at service accounts and how you deal with passwords.
2008-07-25
785 reads
Virtualization is becoming more and more popular, being implemented in many companies every day to replace the need to add more physical boxes to your data center. Steve Jones comments on some of the handy features of virtualization.
2008-07-24
224 reads
Humor in the workplace is essential for a good environment, but employees need to be careful about what they might consider sharing.
2008-07-23
237 reads
Steve Jones talks about the value of software maintenance and how you should view their value.
2008-07-21
91 reads
In this update from the past week Steve Jones looks at leaks in encrypted disks and Web 2.0 development.
2008-07-21
49 reads
A guest Friday poll from Adam Angelini, DBA and member of the band Wakamojo, which was featured on some editorial podcasts. This week Adam wonders about soft skills for DBAs.
2008-07-18
390 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers