- Getting Started with SQL Server 2014 Administration
- Gethyn Ellis
- 177字
- 2021-07-16 12:00:20
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Give the virtual machine a name. In my case, I have named my virtual machine GRESQL2014
."
A block of code is set as follows:
CREATE DATABASE TestDB1 ON (NAME = TestDB1_data, FILENAME = 'https://gresqlstorage.blob.core.windows.net/sqldata/TestDB1Data.mdf') LOG ON (NAME = TestDB1_log, FILENAME = 'https://gresqlstorage.blob.core.windows.net/sqldata/TestDB1Log.ldf') GO
Any command-line input or output is written as follows:
CREATE CREDENTIAL [https://gresqlstorage.blob.core.windows.net/sqldata] WITH IDENTITY='SHARED ACCESS SIGNATURE', SECRET = 'sr=c&si=SQLDATA&sig=PtQi1NXUuJz%2BGCUkpdgEBS4o4Lo60FjTbfJ2dNx3XX8%3D'
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Click on the SQL DATABASES option in the left-hand side menu".
推薦閱讀
- LaTeX Cookbook
- Linux網(wǎng)絡(luò)程序設(shè)計(jì):基于龍芯平臺(tái)
- Mastering C# Concurrency
- C++程序設(shè)計(jì)基礎(chǔ)教程
- 深入淺出RxJS
- C++ 從入門到項(xiàng)目實(shí)踐(超值版)
- 深入理解Android:Wi-Fi、NFC和GPS卷
- 前端HTML+CSS修煉之道(視頻同步+直播)
- Python算法指南:程序員經(jīng)典算法分析與實(shí)現(xiàn)
- Babylon.js Essentials
- CRYENGINE Game Development Blueprints
- 實(shí)戰(zhàn)Java高并發(fā)程序設(shè)計(jì)(第2版)
- PHP項(xiàng)目開發(fā)全程實(shí)錄(第4版)
- RESTful Web API Design with Node.js
- Kotlin程序員面試算法寶典