A Guitar is Just a Piece of Wood
In my real-life I play guitar. Being an analytical sort-of-fella I found myself inhaling all the books, videos, advice, etc....
2010-06-08
655 reads
In my real-life I play guitar. Being an analytical sort-of-fella I found myself inhaling all the books, videos, advice, etc....
2010-06-08
655 reads
The Royal Canadian Mint, in Ottawa, is located at a large castle. How cool is that? Would you want to...
2010-06-08
493 reads
Over this past weekend, I decided to build a new general purpose workstation from parts, with a goal of getting...
2010-06-08
902 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-06-08
455 reads
We have come to that time of month again – blog party. This time, the party is hosted by Jorge Segarra...
2010-06-08
1,028 reads
TechEd 2010 started today, June 7, and will run through Thursday, June 10, 2010. In the past TechEd has run...
2010-06-08
982 reads
This post is for SQLTuesday #007, hosted by Jorge Segarra (blog | twitter). The topic is to talk about your favorite...
2010-06-08
1,729 reads
As I age in years, I realize more and more how blessed I was to attend The Citadel, the Military...
2010-06-08
1,255 reads
I submitted three abstracts for the 2010 PASS Summit this year - two "normal" (75 minute) and one spotlight (90 minute)...
2010-06-08
471 reads
Saturday I drove up to Pensacola for SQL Saturday #22. Me and several others from Baton Rouge, including my two...
2010-06-08
697 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...
Comments posted to this topic are about the item Find Invalid Objects in SQL...
Comments posted to this topic are about the item Lessons from the Postmark-MCP Backdoor
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