Viewing 5 posts - 1 through 5 (of 5 total)
I am not quite answering your question, but wanted to reflect on 70-461. You may please refer to attached.
Accordingly, exams related to SQL Server 2016 are now launched....
March 29, 2017 at 1:24 am
My reflection on discussions such as these is been very practical. At the risk of sounding philosophical, i might voice it anyway.
Language features (be it any language) are like tools...
March 20, 2014 at 11:58 pm
If your version of SQL Server permits, why not just try nvarchar(max)?
March 20, 2014 at 11:40 am
If we don't want any row level control, then what I was thinking was much simpler than this, actually.
It is something like:
DECLARE @SQL NVARCHAR(3000) = ''
DECLARE @RoleName NVARCHAR(100)
SELECT @RoleName =...
March 20, 2014 at 9:41 am
This is nice. However, over time I have also started using another approach where we can declare a nvarchar(max) variable at the beginning of the script and then append it...
March 20, 2014 at 4:13 am
Viewing 5 posts - 1 through 5 (of 5 total)