Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "ActiveDirectory
is automatically managing the account password without any service disruption."
A block of code is set as follows:
-- bringing data back alter table MovieRatings set (remote_data_archive (migration_state = inbound)) go -- leaving data in Azure alter table MovieRatings set (remote_data_archive = off_without_data_recovery (migration_state = paused)) go
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
use [AdventureWorks] exec sp_replicationdboption @dbname = N'AdventureWorks', @optname = N'publish', @value = N'true' GO
Any command-line input or output is written as follows:
EXEC sp_configure 'backup compression default', 1 GO RECONFIGURE GO
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Once Replication is enabled for the database, you can create the publication and add the snapshot."
Tips or important notes
You may find many errors in the error log of your SQL Server, which will lead you to the required TLS1.2
hotfix installation.