An Introduction to Templates
Templates are a powerful tool in so many trades and crafts. From decals and stickers all the way up to...
2017-12-30
689 reads
Templates are a powerful tool in so many trades and crafts. From decals and stickers all the way up to...
2017-12-30
689 reads
Templates are a powerful tool in so many trades and crafts. From decals and stickers all the way up to...
2017-12-30
343 reads
Templates are a powerful tool in so many trades and crafts. From decals and stickers all the way up to the largest cruise ships in the world, templates can...
2017-12-30
1 reads
No matter how simple the task or how versed we are with doing a security audit, it seems like we...
2017-12-29
987 reads
No matter how simple the task or how versed we are with doing a security audit, it seems like we...
2017-12-29
345 reads
No matter how simple the task or how versed we are with doing a security audit, it seems like we can always stand to learn just a little bit...
2017-12-29
2 reads
Several years back, when Extended Events was brand new, it was downright painful to try and convert the classic Profiler...
2017-12-28
538 reads
Several years back, when Extended Events was brand new, it was downright painful to try and convert the classic Profiler...
2017-12-28
230 reads
Several years back, when Extended Events was brand new, it was downright painful to try and convert the classic Profiler or Server Side trace to something meaningful and useful...
2017-12-28
One of the age old features that most probably take for granted in SQL Server happens to be the error...
2017-12-27
922 reads
By Chris Yates
There are moments in technology when the ground shifts beneath our feet. Moments when...
Why Developers Shouldn’t Have sysadmin access in SQL Server 7 reasons—and exactly what to do instead It...
By Steve Jones
ecstatic shock – n. a surge of energy upon catching a glimpse from someone...
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