Exam Prep 70-463: Master Data Services Models
This post is part of a series on this blog that will help me, and hopefully you, pass exam 70-463: Implementing...
2015-04-28 (first published: 2015-04-16)
5,322 reads
This post is part of a series on this blog that will help me, and hopefully you, pass exam 70-463: Implementing...
2015-04-28 (first published: 2015-04-16)
5,322 reads
In this post we are going to show the implementation of a PowerShell script using SMO to move data between filegroups on SQL Server. This article is the second of our...
2015-04-28
4 reads
When restoring a database that doesn’t exist, say for instance when a client sends a database to you, you can’t...
2015-04-28
262 reads
When restoring a database that doesn't exist, say for instance when a client sends a database to you, you can't...
2015-04-28
2,285 reads
It’s T-SQL Tuesday time again, and this month the invite comes from Mike Donnelly (@sqlmd). The topic is Teach Something...
2015-04-28 (first published: 2015-04-14)
5,899 reads
Recently I’ve been learning more about how Azure functions and how it can help my customers. One of the best...
2015-04-28
1,050 reads
Amongst IT related problems one that can fill this most ardent optimist with dread is when logging into your pc...
2015-04-28
795 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
580 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
59 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
68 reads
By Steve Jones
Last week I spent a few days in Cambridge, UK for the Redgate Company...
By Steve Jones
Recently I had someone internally ask about whether SQL Source Control supports Git Hooks....
By Steve Jones
At Redgate, we’re experimenting with how AI can help developers and DBAs become better...
I'm running a group MSA for the database engine and SQL Agent in a...
All, My query is as follows: SET DATEFORMAT dmy SELECT p.query_id, DATEADD(MICROSECOND,-rs.max_duration,rs.first_execution_time) AS starttime,...
Comments posted to this topic are about the item Encoding Strings
I have this code in SQL Server 2025. What is the result?
DECLARE @message VARCHAR(50) = 'Hello SQL Server 2025!'; DECLARE @encoded VARCHAR(MAX); SET @encoded = BASE64_ENCODE(@message); SELECT @encoded AS EncodedResult;See possible answers