2014-05-02 (first published: 2014-04-09)
1,775 reads
2014-05-02 (first published: 2014-04-09)
1,775 reads
2014-05-01 (first published: 2014-04-09)
1,501 reads
We use a tally table to find the appropriate denominator for a given decimal part of a number.
2014-04-29 (first published: 2014-04-07)
1,183 reads
Extracting data with header information using PowerShell
2014-04-28 (first published: 2014-04-07)
1,482 reads
2014-04-24 (first published: 2014-04-05)
1,992 reads
usefull script for moving databases from one server to another
2014-04-23 (first published: 2014-03-29)
927 reads
2014-04-22 (first published: 2014-02-20)
2,178 reads
Backup all databases for an instance (complete, Differential or log of transactions)
2014-04-21 (first published: 2014-04-05)
1,067 reads
THis script will generate the Drop and create script for all user define table type
2014-04-18 (first published: 2014-03-25)
1,199 reads
2014-04-17 (first published: 2014-03-25)
1,279 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...
Email..dmtworld2@gmail.com Telegram..@jemsscott237 Vaping DMT makes it considerably more advantageous when contrasted with really illuminating...
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