Rules of Holes #5: Seek Help to Get Out of the Hole
You are moving along, doing good work, maintaining a steady pace. All seems to be going well for you. Then...
2012-11-19
664 reads
You are moving along, doing good work, maintaining a steady pace. All seems to be going well for you. Then...
2012-11-19
664 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt', no such thing as maintaining weak and wobbly legacy...
2012-11-16
1 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt', no such thing as maintaining weak and wobbly legacy...
2012-11-16
4 reads
Some folks decry the concept of being in a 'Hole'. For them, there is no such thing as 'Technical Debt',...
2012-11-16
842 reads
You stopped digging. You looked around and saw that you were still in the Hole. You needed to get out. AHA! Problem solved, you thought. You'll just get a...
2012-11-15
2 reads
You stopped digging. You looked around and saw that you were still in the Hole. You needed to get out. AHA! Problem solved, you thought. You'll just get a...
2012-11-15
2 reads
You stopped digging. You looked around and saw that you were still in the Hole. You needed to get out....
2012-11-14
663 reads
OK. So you followed the First Rule of Holes -you stopped digging yourself in deeper. But now what? You are still in a Hole. Your situation has not changed...
2012-11-14
6 reads
OK. So you followed the First Rule of Holes -you stopped digging yourself in deeper. But now what? You are still in a Hole. Your situation has not changed...
2012-11-14
3 reads
OK. So you followed the First Rule of Holes -you stopped digging yourself in deeper. But now what? You are...
2012-11-13
611 reads
The honeymoon is over, and macOS 26 Tahoe broke the Rosetta 2 emulation layer...
By Chris Yates
There are moments in technology when the ground shifts beneath our feet. Moments when...
Why Developers Shouldn’t Have sysadmin access in SQL Server 7 reasons—and exactly what to do instead It...
I have noticed sp_executesql also makes a single plan for a stmt with parameter...
Comments posted to this topic are about the item Find Invalid Objects in SQL...
If I want to track which login called a stored procedure and use the value in an audit, what function can I use to replace the xxx below?
create procedure AddNewCustomer @customername varchar(200) AS BEGIN DECLARE @added VARCHAR(100) SELECT @added = xxx IF @customername IS NOT NULL INSERT dbo.Customer ( CustomerName, AddedBy ) VALUES (@customername, @added) ENDSee possible answers