Presentation Styles
I had a chance to watch a few different styles this week at TechEd, and I think it helped that...
2010-06-11
627 reads
I had a chance to watch a few different styles this week at TechEd, and I think it helped that...
2010-06-11
627 reads
I got this flyer in the mail recently.
It was for a seminar by Edward Tufte, and it caught my eye...
2010-06-11
369 reads
This day only comes around once in every four years, we've all been waiting for it for months. It's been...
2010-06-11
592 reads
I saw a post from Seth Phelabaum on SQLServerCentral reviewing his goals as of Q2. About 20 days premature, but...
2010-06-11
305 reads
Another quarter gone, and unfortunately I’m still looking about the same on goal progress. Still looking good on Blog posts...
2010-06-10
1,015 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-06-10
396 reads
Or maybe I’m misreading that I’m supposed to be helping to alleviate pain. Either way, next Thursday, June 17, I’ll be...
2010-06-10
550 reads
Interesting Case of SSIS Failures
We had an interesting case of SSIS failures recently where the cause ended up being improved...
2010-06-10
1,053 reads
Here’s a big statement
WHEN WRITING DATABASE QUERIES, 95% OF THE TIME THE BOTTLENECK IS IN THE I/O, not the CPU,...
2010-06-10
964 reads
I’ve done a good amount to raise my profile over the years. Not with that intention, but as I’ve tried...
2010-06-10
401 reads
By Steve Jones
ecstatic shock – n. a surge of energy upon catching a glimpse from someone...
By Chris Yates
The New Arena of Leadership The role of the Chief Data Officer is no...
Presenting you with an updated version of our sp_snapshot procedure, allowing you to easily...
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