3.15Kw Solar PV System in Parker, Colorado
After waiting nearly seven months after I signed the contract, my little 3.15Kw grid-tied solar PV system was partially installed...
2010-06-05
1,336 reads
After waiting nearly seven months after I signed the contract, my little 3.15Kw grid-tied solar PV system was partially installed...
2010-06-05
1,336 reads
I was home today, since my 3.15Kw solar PV system was being installed, so I took a few pictures of...
2010-06-05
798 reads
Alternating Group Colors and Alternating Row Colors
After posting my recent blog about Alternating Group Colors, I’ve been asked several times...
2010-06-04
1,351 reads
As you may recall we relaunched this late last year, trying to fill a gap in both content on sqlpass.org...
2010-06-04
271 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-06-04
514 reads
Have you ever been required to update your SQL Server environment and needed to test it? I know, rhetorical question....
2010-06-04
658 reads
I didn’t think that multitasking was a big deal for my iPhone when I got it. I’d had it on...
2010-06-04
649 reads
I’m leaving today for SQL Saturday #22 in Pensacola, FL. I’ll be there tonight and tomorrow, leaving Sun morning for...
2010-06-04
352 reads
In Pensacola, the Hampton Inn, and bandwidth sucks. I remember this from last year. Adding a few notes to my...
2010-06-04
345 reads
I'm excited to be presenting Profiling: It's Okay in SQL Server to the Seacost SQL Server Users Group in Portsmouth,...
2010-06-04
296 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