Filter Jobs using SQL Server Job Activity Monitor
Using SQL Server Management Studio (SSMS), we have the capability of quickly looking at job related information to verify things...
2010-06-09
1,661 reads
Using SQL Server Management Studio (SSMS), we have the capability of quickly looking at job related information to verify things...
2010-06-09
1,661 reads
The Key Lookup operator is a bookmark lookup on a table with a clustered index. Key Lookups can be quite...
2010-06-09
3,203 reads
On June 9, 2010 is held the annual event that in Prishtina is recognized as Microsoft TechUpdate. Presenters in this...
2010-06-09
1,839 reads
Just saw something interesting....we have a requirement to divide a result set into a certain number of groups that have...
2010-06-09
740 reads
Since all the cool kids seem to be posting the sessions that they submitted to the PASS Summit, nerd that...
2010-06-09
803 reads
This was my second year going to SQL Saturday in Pensacola and once again I enjoyed it. I stayed again...
2010-06-09
340 reads
You can probably tell from some of my more recent posts that I have been doing some work lately on...
2010-06-09
1,684 reads
I left TechEd this morning, actually too early, catching a 7:12am flight from New Orleans to Denver. Which meant a...
2010-06-09
357 reads
Noticed that they have ‘overflow’ rooms where they are broadcasting sessions that max out attendance, very nice. Wonder how much...
2010-06-09
623 reads
It’s only day two of the four day conference, and I am already exhausted from attending sessions from 8:00 AM...
2010-06-09
495 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