I have just read a post from Zach Holman about the software deployment. In his blog, he mention about how to deploy a software, to make our work be stress-free: "Your deploys should be as boring, straightforward, and stress-free as possible" There is no step-by-step guidance but He give us a good approach about to getting a … Continue reading How to deploy software
Month: April 2017
nvarchar(n) vs nvarchar(max) performance in MS-SQL Server
Yesterday, I received a question about the difference between nvarchar(n) and nvarchar(max). Why don't we always use nvarchar(max)? Are nvarchar(n) and nvarchar(max) different in performance ? Are nvarchar(n) and nvarchar(max) different in storage size ? First of all, What is nvarchar(n)? nvarchar [ ( n | max ) ] Variable-length Unicode string data. n defines the string … Continue reading nvarchar(n) vs nvarchar(max) performance in MS-SQL Server