Book Image

SQL Server on Linux

Book Image

SQL Server on Linux

Overview of this book

Microsoft's launch of SQL Server on Linux has made SQL Server a truly versatile platform across different operating systems and data-types, both on-premise and on-cloud. This book is your handy guide to setting up and implementing your SQL Server solution on the open source Linux platform. You will start by understanding how SQL Server can be installed on supported and unsupported Linux distributions. Then you will brush up your SQL Server skills by creating and querying database objects and implementing basic administration tasks to support business continuity, including security and performance optimization. This book will also take you beyond the basics and highlight some advanced topics such as in-memory OLTP and temporal tables. By the end of this book, you will be able to recognize and utilize the full potential of setting up an efficient SQL Server database solution in your Linux environment.
Table of Contents (19 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Chapter 3. SQL Server Basics

Microsoft SQL Server is considered to be one of the most commonly used systems for database management in the world. This popularity has been gained by a high degree of stability, security, and business intelligence and integration functionality. Microsoft SQL Server for Linux is a database server that accepts queries from clients, evaluates them, and then internally executes them to deliver results to the client. The client is an application that produces queries through a database provider and communication protocol sends requests to the server and retrieves the result for client-side processing and/or presentation.

Before starting to write queries and work with Microsoft SQL Server it's a good idea to gain a good understanding of how the software works. With a good understanding of the product and its mechanics, you'll be able to write more efficient queries and get results much faster.

In this chapter, we will cover the following topics:

  • Overview of SQL Server...