The Value of an Artist
A short while ago someone complained that some of the headlines on SSC were deceiving in terms of what they...
2010-06-15
658 reads
A short while ago someone complained that some of the headlines on SSC were deceiving in terms of what they...
2010-06-15
658 reads
The company where I work has been using virtualization in development, QA, testing, etc., for many years now. We have...
2010-06-15
861 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-06-14
394 reads
Bayer White has announced the call for speakers for the 2010 Jacksonville Code Camp to be held August 28, 2010...
2010-06-14
305 reads
I’ve been playing with SQL Server 2008 R2 for quite a while in the CTP’s and what not. But, I hadn’t made...
2010-06-14
1,215 reads
I had been hearing about Lil’ Buck and so when I finally caught up with Buck Woody (Blog | Twitter) at...
2010-06-14
801 reads
In previous years we’ve just invited a speaker or two to submit a presentation for an all day paid event...
2010-06-14
368 reads
We're three weeks removed from the first annual SQL Saturday Dallas event, so I've had a little time to gather...
2010-06-14
960 reads
I wrote this editorial about bad design based on some real world experiences. It’s a fun story, maybe even borderline...
2010-06-14
370 reads
I gave the Modern Resume: Building Your Brand presentation last week at the SQL Saturday #22 - Pensacola event and had...
2010-06-14
656 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