2012-04-11
1,931 reads
2012-04-11
1,931 reads
2011-08-11
2,097 reads
2011-07-18
2,117 reads
2011-07-05
2,502 reads
2011-06-29
2,093 reads
2011-06-09
2,467 reads
A comprehensive set of scripts to setup and operate TDE for a SQL Server.
2012-08-10 (first published: 2011-03-08)
38,785 reads
A planning guide for the implementation of TDE in SQL Server.
2011-01-10
7,210 reads
2010-06-29
3,037 reads
Tapas Pal shows you how to encrypt your SQL Server database for a pre-existing, business critical web application using Transparent Data Encryption (TDE), a new full database encryption technique introduced in SQL Server 2008.
2010-06-14
2,995 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...
Want to seriously boost your data skills? Mastering advanced SQL is the key, whether...
I have an ADF pipeline that copies Files from source to destination. Both Source...
Comments posted to this topic are about the item Function Defaults
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