2012-11-21
2,098 reads
2012-11-21
2,098 reads
2012-04-19
2,008 reads
2010-07-06
3,076 reads
2009-03-19
3,860 reads
2009-03-05
3,674 reads
Table locking hints provide developers much tighter control of their transactions. Look at the benefits and disadvantages of using the NOLOCK and READPAST table hints in SQL Server
2008-07-15
5,492 reads
By Steve Jones
This is my last week of the year working (I guess I come back...
By Steve Jones
This is my last week of the year working (I guess I come back...
I recently read the book Agile Data Warehouse Design – Collaborative Dimensional Modeling, from...
I have a common problem that I just cannot figure out after scrolling through...
Hello, I am a new member here so forgive me if I am not...
I created a small procedure that reads the backup file and restores the DB...
I have created this function in SQL Server 2022:
CREATE FUNCTION dbo.AddInt (@one INT, @two INT = 1) RETURNS INT AS BEGIN RETURN @one + @two ENDHow can I call this and invoke the default value for @two? See possible answers