August 2019
Beginner to intermediate
696 pages
15h 45m
English
You can enable the Stretch DB feature by using Transact-SQL only. As you saw in the previous section, to enable Stretch DB, you need to create and secure communication infrastructure between our local database and the Azure server. Therefore, you need to accomplish the following three tasks:
The following code creates a database master key for the sample database Mila:
USE Mila; CREATE MASTER KEY ENCRYPTION BY PASSWORD='<very secure password>'; --you need to put your password here
Next, we create a credential. This is saved authentication information that is required to connect ...
Read now
Unlock full access