Beginning SQL Server 2012 for Developers 3rd Edition pot

714 1.6K 0
Beginning SQL Server 2012 for Developers 3rd Edition pot

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

www.it-ebooks.info For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. www.it-ebooks.info iv Contents at a Glance  About the Author xvii  About the Technical Reviewer xviii  Acknowledgments xix  Introduction xx  Chapter 1: Overview and Installation 1  Chapter 2: SQL Server Management Studio 31  Chapter 3: Database Design and Creation 51  Chapter 4: Security and Compliance 101  Chapter 5: Defining Tables 139  Chapter 6: Creating Indexes and Database Diagramming 187  Chapter 7: Database Backups and Recovery 223  Chapter 8: Database Maintenance 289  Chapter 9: Data Insertion, Deletion, and Transactions 333  Chapter 10: Selecting and Updating Data 367  Chapter 11: Building a View 417  Chapter 12: Stored Procedures, Functions, and Security 445  Chapter 13: Essentials for Effective Coding 493  Chapter 14: Advanced T-SQL and Debugging 547  Chapter 15: Triggers 593  Chapter 16: Connecting via Code 619  Index 679 www.it-ebooks.info xx Introduction Beginning SQL Server 2012 for Developers is for those people who see themselves as becoming either developers, database administrators, or a mixture of both but have yet to tread that path with SQL Server 2012. This edition of my book is for readers who wish to learn and develop on the free version of SQL Server 2012, SQL Server 2012 Express, or either the trial or licensed versions of SQL Server 2012. Whether you have no knowledge of databases, or have knowledge of desktop databases such as MS Access, or even come from a server-based background such as Oracle, this book will provide you with the insight to get up and running with SQL Server 2012. Right from the start, your basic knowledge will be expanded, and you will soon be moving from a perceived beginner through to a competent and professional developer. It is the aim of this book to cater to a wide range of developers, from those who prefer to use the graphical interface for as much work as possible to those who want to become more adept at using the SQL Server 2012 programming language, T-SQL. Where practical, each method of using SQL Server 2012 is demonstrated, explained, and expanded so that you can evaluate what works best in your situation. You will also find a chapter on how to work with using Excel, .NET, and Java and incorporate them with T-SQL. There are plenty of examples within the book of every action along with details about the security of your data. You will also learn the best way to complete a task and even how to make the correct decision when there are two or more choices that could be made. Once you reach the end of this book, you will be able to design and create solid and reliable database solutions competently and proficiently. www.it-ebooks.info C H A P T E R 1 1 Overview and Installation Welcome to Beginning SQL Server 2012 for Developers. This book has been written for those who are interested in learning how to create solutions with Microsoft SQL Server 2012, but have no prior knowledge of SQL Server 2012. You may well have had exposure to other database management systems (DBMSs), such as MySQL, Oracle, or Microsoft Access, but SQL Server uses different interfaces and has a different way of working compared to much of the competition. The aim of this book is to bring you quickly up to a level at which you are developing competently with SQL Server 2012. This book is specifically dedicated to beginners and to those who at this stage wish to use only SQL Server 2012. You may find this book useful for understanding the basics of other database management systems in the marketplace, especially when working with T-SQL. Many DBMSs use an ANSI-standard SQL, so moving from SQL Server to Oracle, Sybase, etc. after reading this book will be a great deal easier. This chapter covers the following topics: • Why SQL Server 2012? • How do I know whether my hardware meets the requirements? • Can I just confirm that I have the right operating system? • What can I do with SQL Server 2012? You will also then look at installing your chosen edition and cover the following: • Installing SQL Server 2012 on a Windows 7 platform • Options not installed by default • Where to install SQL Server physically • Multiple installations on one computer • How SQL Server runs on a machine • How security is implemented • Logon IDs for SQL Server, especially the sa (system administrator) logon Why SQL Server 2012? The following discussion is my point of view, and although it no doubt differs from that of others, the basis of the discussion holds true. SQL Server faces competition from other database management www.it-ebooks.info CHAPTER 1  OVERVIEW AND INSTALLATION 2 systems, not only from other Microsoft products such as Microsoft Access, but also from competitors such as Oracle, Sybase, DB2, and Informix, to name a few. Microsoft Access is found on a large number of PCs. The fact that it is packaged with some editions of Office and has been around for a number of years in different versions of Office has helped make this DBMS ubiquitous; in fact, a great number of people actually do use the software. Unfortunately, it does have its limitations when it comes to scalability, speed, and flexibility, but for many small, in-house systems, these areas of concern are not an issue, as such systems do not require major DBMS functionality. To this end, Microsoft Access can be the correct solution. Now you come to the serious competition: Oracle and Sybase. Oracle is seen as perhaps the market leader in the DBMS community, and it has an extremely large user base. There is no denying it is a great product to work with, if somewhat more complex to install and administer than SQL Server; it fits well with large companies that require large solutions. It also forms the backbone of some major software packages. There are many parts to Oracle, which make it a powerful tool, including scalability and performance. It also provides flexibility in that you can add on tools as you need them, making Oracle more accommodating in that area than SQL Server. For example, SQL Server 2012 forces you to install the .NET Framework on your server regardless of whether you use the new .NET functionality. However, Oracle isn’t as user-friendly from a developer’s point of view in areas like its ad hoc SQL Query tool and its XML and web technology tools, as well as in how you build up a complete database solution; other drawbacks include its cost and the complexity involved in installing and running it effectively. However, you will find that it is used extensively by web search engines, although SQL Server could and does work just as effectively. SQL Server has always been a one-purchase solution, such that (providing you buy the correct version or license) tools that allow you to analyze your data or copy data from one data source such as Excel into SQL Server will all be “in the box.” With Oracle, on the other hand, for every additional feature you want, you have to purchase more options. Then there is Sybase. It is very much like SQL Server, and Sybase has recently publicly announced that it has SQL Server in its sights. There is a GUI for Sybase, although it is separate from the DBMS installation and a separate product. You will find that many Sybase developers use command-line commands or third-party tools. Sybase is also mainly found on Unix/Linux, although there is a Windows version around. It is very fast and very robust, and it is rebooted only about once, maybe twice, a year. Being hosted on Unix, Linux, or Solaris also helps with the reduction in reboots, as you don’t have the monthly Windows patching. However, Sybase isn’t as command-and feature-rich as SQL Server. SQL Server has a more extensive programming language and functionality that is more powerful than Sybase. Each DBMS has its own SQL syntax, although they all will have the same basic SQL syntax, known as the ANSI-92 standard. This means that the syntax for retrieving data, and so on, is the same from one DBMS to another. However, each DBMS has its own special syntax to maintain it, and trying to use a feature from this SQL syntax in one DBMS may not work, or may work differently, in another. So SQL Server seems to be the best choice in the DBMS marketplace, and in many scenarios, it is. It can be small enough for a handful of users or large enough for the largest corporations. It doesn’t need to cost as much as Oracle or Sybase, especially if you wish to purchase a license to develop and build your skills, which no doubt is why you are reading this book, and it does have the ability to scale up and deal with terabytes of data without many concerns. As you will see, it is easy to install, as it comes as one complete package for most of its functionality, with a simple install to be performed for the remaining areas if required. Now that you know the reasons behind choosing SQL Server, you need to know which versions of SQL Server are out there to purchase, what market each version is aimed at, and which version will be best for you, including which version can run on your machine. www.it-ebooks.info CHAPTER 1  OVERVIEW AND INSTALLATION 3 Evolution of SQL Server SQL Server has evolved over the years into the product it is today. Table 1-1 gives a summary of this process. Table 1-1. The Stages in the Evolution of SQL Server Year Version Description 1988 SQL Server Joint application built with Sybase for use on OS/2 1993 SQL Server 4.2, a desktop DBMS A low-functionality, desktop DBMS, capable of meeting the data storage and handling needs of a small department; the concept of a DBMS that was integrated with Windows and had an easy-to-use interface proved popular. 1994 Microsoft splits from Sybase. 1995 SQL Server 6.05, a small business DBMS Major rewrite of the core database engine; first “significant” release; improved performance and significant feature enhancements; it is still a long way behind in terms of the performance and feature set of later versions, but with this version, SQL Server became capable of handling small e-commerce and intranet applications, and was a fraction of the cost of its competitors. 1996 SQL Server 6.5 SQL Server was gaining prominence such that Oracle brought out version 7.1 on the NT platform as direct competition. 1998 SQL Server 7.0, a web DBMS Another significant rewrite to the core database engine; a defining release, providing a reasonably powerful and feature-rich DBMS that was a truly viable (and still cheap) alternative for small-to-medium businesses, between a true desktop DBMS such as MS Access and the high-end enterprise capabilities (and price) of Oracle and DB2; gained a good reputation for ease of use and for providing crucial business tools (e.g., analysis services, data transformation services) out of the box, which were expensive add-ons with competing DBMSs 2000 SQL Server 2000, an enterprise DBMS Vastly improved performance scalability and reliability allow SQL Server to become a major player in the enterprise DBMS market (now supporting the online operations of businesses such as NASDAQ, Dell, and Barnes & Noble). A big increase in price (although still reckoned to be about half the cost of Oracle) slowed initial uptake, but the excellent range of management, development, and analysis tools won new customers. In 2001, Oracle (with 34% of the market) finally ceded its no. 1 position in the Windows DBMS market (worth $2.55 billion in 2001) to SQL Server (with 40% of the market). In 2002, the gap had grown, with SQL Server at 45% and Oracle slipping to 27%. 1 1 Gartner Report, May 21, 2003 http://www.gartner.com/press_releases/pr21may2003a.html www.it-ebooks.info CHAPTER 1  OVERVIEW AND INSTALLATION 4 2005 SQL Server 2005 Many areas of SQL Server were rewritten, such as the ability to load data via a utility called Integration Services, but the greatest leap forward was the introduction of the .NET Framework. This allowed .NET SQL Server–specific objects to be built, giving SQL Server the flexible functionality that Oracle had with its inclusion of Java. 2008 SQL Server 2008 The aim of SQL Server 2008 is to deal with the many different forms that data can now take. It builds on the infrastructure of SQL Server 2005 by offering new data types and the use of Language-Integrated Query (LINQ). It also deals with data, such as XML, compact devices, and massive database installations, that reside in many different places. Also, it offers the ability to set rules within a framework to ensure databases and objects meet defined criteria, and it offers the ability to report when objects do not meet these criteria. 2012 SQL Server 2012 This version of SQL Server has major improvements in many areas throughout the product. The ability to build self-contained databases greatly simplifies and improves the ability of moving databases between SQL Server instances. Storing large files has improved so that they can be held in FileTables, which allows files to be manipulated by Windows as well as SQL Server. Code enhancements bring functions from applications such as Excel in to SQL Server. It is also possible to inspect your data for quality to reduce duplication and improve accuracy by cross-checking the data against a reference database. Closer integration with Visual Studio through enhancements, including improved debugging capabilities, breakpoints, watch and quick watch abilities on variables, IntelliSense, and keyboard shortcuts, has been developed. Hardware Requirements Now that you know a bit about SQL Server, the next big question on your list may well be, “Do I have a powerful enough computer to run my chosen SQL Server edition on? Will this help me refine my decision?” Judging by today’s standards of minimum-specification hardware that can be bought—even the low-cost solutions—the answer will in most cases be “yes” to most editions, although of course the better the hardware, the better it will perform. However, you may have older hardware (things move so fast that even hardware bought a few months ago can quickly be deemed below minimum specification), so let’s take a look at what the minimum recommendations are and how you can check your own computer to ensure that you have sufficient resources. Modern home computers now ship with Windows 7, which is a 64-bit operating system, but many computers exist with 32-bit Windows Vista and XP. Where appropriate, requirements for each “bit” installation will be provided. CPU CPU specifications over the last few years have altered as each manufacturer defines its own chipset names. It is not straightforward to know whether the chip you have is better than another just by its name, and therefore, you may need to check your manufacturer’s web site to see if your processor is better than the minimum. www.it-ebooks.info CHAPTER 1  OVERVIEW AND INSTALLATION 5 • For 64-bit installations, at minimum you will require either AMD Opteron or AMD Athlon 64 processors, and for Intel, a minimum of Intel Xeon or Intel Pentium IV with a processing speed of at least 1.4 GHz and EM64T support. • If you have a 32-bit installation, then you require an AMD or Intel processor that is at least Pentium III–compatible with a processor speed of at least 1.0 GHz. As with most minimums listed here, Microsoft wholly recommends a faster processor. The faster the processor, the better your SQL Server will perform, and from this the fewer bottlenecks that could surface. Many of today’s computers start at 2GHz or above, but the faster the processer the better. You will find your development time reduced by it. However, it is not processor alone that speeds up SQL Server. A large part is the amount of memory that your computer has. Memory Now that you know you have a fast enough processor, it is time to check whether you have enough memory in the system. SQL Server requires a minimum of 512MB of RAM onboard your computer for the SQL Server Express edition and 1GB for all other editions, although you shouldn’t have too many more applications open and running, as they could easily not leave enough memory for SQL Server to run fast enough. The more memory the better: I really would recommend a minimum of 2GB on any computer that a developer is using with a local installation, with 4GB ideal and sufficient to give good all-around performance. If a process can be held in memory, rather than swapped out to hard drive while you are running another process, then you are not waiting on SQL Server being loaded back into memory to start off where it left off. This is called swapping, and the more memory, the less swapping that should take place. Taking CPU speed and memory together as a whole, it is these two items that are crucial to the speed at which the computer will run, and having sufficient speed will let you develop as fast as possible. When it comes to installing SQL Server, insufficient memory won’t stop the install, but you will be warned that you need more. Hard Disk Space You will need lots! But name a major application these days that doesn’t need lots! For SQL Server alone, ignoring any data files that you are then going to add on top, you will need over 4GB of space. Certainly, the installation options that will be used later in the chapter will mean you need this amount of space. You can reduce this by opting not to install certain options; however, even most notebooks these days come with a minimum 40GB, and 80GB is not uncommon either. Hard disk space is cheap as well, and it is better to buy one disk too large for your needs than have one hard drive that suits now, and then have to buy another later, with all the attendant problems of moving information to clear up space on the original drive. Again, you will need spare space on the drive for the expansion of SQL Server and the databases, as well as room for temporary files that you will also need in your development process. So think big—big is beautiful! Operating System Requirements You will find that SQL Server 2012 will run on Windows 7 Service Pack 1 and above, as well as Vista Service Pack 2. From the server side, it will work on Windows Server 2008 with Service Pack 2 and above. www.it-ebooks.info CHAPTER 1  OVERVIEW AND INSTALLATION 6 The Example In order to demonstrate SQL Server 2012 fully, together we will develop a system for a financial company that will have features such as banking, purchasing shares, and regular buying, including a unit trust savings plan and so on. This is an application that could fit into a large organization, or with very minor modifications could be used by a single person to record banking transactions. The book builds on this idea and develops the example, demonstrating how to take an idea and formulate it into a design with the correct architecture. It should be said, though, that the example will be the bare minimum to make it run, as I don’t want to detract from SQL Server. The book will give you the power and the knowledge to take this example, expand it to suit your financial application needs, and give it the specifics and intricacies that are required to make it fully useful for yourself. I also use a tool from Red Gate Software to generate some random test data. You do not need this tool for the book as the random data are available for download from the Apress site and my own site. But before you can get to this point, you need to install SQL Server. Installation This chapter will guide you through the installation process of the Developer Edition, although virtually all that you see will be in every edition. Some of the differences will be due to the functionality of each edition.Microsoft offers a 120-day trial version at www.microsoft.com/sql, which you can use to follow along with the examples in this book if you don’t already have SQL Server 2012. However, the Developer Edition is very cheap to purchase a license to use, and so, by selecting this version, it is not cost- prohibitive to continue past the trial period. You can also download the Express Edition for free, which has most of the functionality within this book, but the backup options within SQL Server Express have the greatest reduced functionality. This book will cover many of the options and combinations of features that can be included within an installation. A number of different tools are supplied with SQL Server to be included with the installation. You will look at these tools so that a basic understanding of what they are will allow you to decide which to install. Installation covers a great many different areas: • Security issues • Different types of installation—whether this is the first installation and instance of SQL Server or a subsequent instance, for development, test, or production • Custom installations • Installing only some of the products available Most of these areas will be covered so that by the end of the chapter, you can feel confident and knowledgeable enough to complete any subsequent installations that suit your needs. This book uses the Developer Edition because it is most likely the edition you will use as a developer, for it doesn’t have all the operating system requirements of the Enterprise Edition. Insert the CD or download and extract SQL Server from the web site for the Microsoft SQL Server 2012 edition of your choice. What the upcoming text covers is a standard installation. Install Ensure that you have logged on to your machine with administrative rights so that you are allowed to create files and folders on your machine, which is obviously required for installation to be successful. If www.it-ebooks.info [...]... Another executable named sqlagent.exe represents the SQL Server Agent, which runs processes such as batch jobs and is shown in Task Manager as SQLAgent$Instancename So even if you stop MSSQL$Instancename, the SQLAgent$Instancename process will continue This behavior reinforces the fact that the SQL Server and SQL Server Agent processes should be on different accounts Finally SQL Server Agent, because... exists in every SQL Server installation; therefore, any hacker knows that this user ID exists and so will try to connect to the server using it Prior to SQL Server 2005, when creating a password became compulsory, many installations had the password blank, therefore allowing hackers instant access If you log in to SQL Server as sa, you will have full control over any aspect of SQL Server SQL Server inserts... databases With SQL Server 2012, there is also the ability to query the database using NET and LINQ rather than T -SQL You are then presented with the SQL Server Installation Center This screen, shown in Figure 1-1, deals with all setup processes, including new installations, upgrades from previous versions of SQL Server, and many other options for maintaining SQL Server installations Figure 1-1 Beginning. .. Installing native mode configuration for Reporting Services Distributed Replay Options Although not covered in the book, distributed replay allows for one or more client computers to connect to a SQL Server instance to send a workload to SQL Server for it to process The controller will sit with the SQL Server installation and control the clients’ connections through to the server The client is used to mimic... use this Windows user ID for SQL Server to also log in and start its service The Windows user ID that SQL Server uses is known as a local system account On the other hand, you can create a Windows login that exists purely for SQL Server, and this is the correct behavior to implement in production You avoid it in this book only to keep things simple while you are learning SQL Server Your Windows account... choose more options to install You can always change which accounts are used to run SQL Server later You will notice that SQL Server Browser service is disabled If you install SQL Server on a remote computer such as a server, then you may opt to enable this service so that client computers can search and browse for your SQL Server installation rather than having to know the exact computer name and instance... whether the user has access to SQL Server either via membership of an operating system group that has been defined within SQL Server or through the specific logged-in user account that has been defined to SQL Server As you can see in Figure 1-18, neither MSmith nor StepBrown exists within SQL Server You can see my login, and therefore I am entitled to connect SQL Server in previous versions added a... individuals access to your server Figure 1-18 Object Explorer for SQL Server Mixed Mode If you installed SQL Server with mixed mode, this means you could use either Windows authentication, as has just been covered, or SQL Server authentication How does mixed mode differ from Windows authentication mode? To start with, you need to supply a user ID and password to connect rather than SQL Server taking the Windows... a database for the reporting server to use There are three different possible installation options for Reporting Services: native, SharePoint, and installed but not configured If you select the last option, SQL Server Reporting Services will be installed on the server but will not be configured This is ideal if you’re setting up a specific server just for the reporting options or if SQL Server is being... introduced you to security in SQL Server so that you can feel comfortable knowing which way you want to implement this and how to deal with different usernames You may not have any data yet, but you want to ensure that when you do, only the right people get to look at it! You are now ready to explore SQL Server 2012 One of the best ways of managing SQL Server is by using SQL Server Management Studio, which . path with SQL Server 2012. This edition of my book is for readers who wish to learn and develop on the free version of SQL Server 2012, SQL Server 2012 Express,. www.it-ebooks.info xx Introduction Beginning SQL Server 2012 for Developers is for those people who see themselves as becoming either developers, database administrators,

Ngày đăng: 06/03/2014, 10:20

Từ khóa liên quan

Mục lục

  • Cover

    • Contents at a Glance

    • Contents

    • About the Author

    • About the Technical Reviewer

    • Acknowledgments

    • Introduction

  • Overview and Installation

    • Why SQL Server 2012?

    • Evolution of SQL Server

    • Hardware Requirements

      • CPU

      • Memory

      • Hard Disk Space

      • Operating System Requirements

    • The Example

    • Installation

      • Install

      • Setup Support Rules

      • Setup Role

      • Choosing the Features to Install

      • Naming the Instance

      • Service Accounts

      • Authentication Mode

      • Defining the Data Directories

      • FILESTREAM options

      • Creating the Reporting Services Database

      • Distributed Replay Options

      • Error and Usage Report Settings

    • Security

      • Services Accounts

      • Looking at the Authentication Mode

      • The sa Login

    • Summary

  • SQL Server Management Studio

    • A Quick Overview of SSMS

    • Query Editor

    • Summary

  • Database Design and Creation

    • Defining a Database

    • Prebuilt Databases Within SQL Server

      • master

      • tempdb

      • model

      • msdb

      • AdventureWorks/AdventureWorksDW

    • Choosing the Database System Type

      • OLTP

      • OLAP

      • Example System Choice

    • Gathering the Data

    • Determining the Information to Store in the Database

      • Financial Products

      • Customers

      • Customer Addresses

      • Shares

      • Transactions

    • External and Ignored Information

    • Building Relationships

      • Using Keys

      • Creating Relationships

      • More on Foreign Keys

    • Normalization

      • Each Entity Should Have a Unique Identifier

      • Store Only Information That Directly Relates to That Entity

      • Avoid Repeating Values or Columns

      • Normal Forms

      • Denormalization

    • Creating the Sample Database

      • Creating a Database in SQL Server Management Studio

      • Dropping the Database in SQL Server Management Studio

      • Creating a Database in a Query Pane

    • Summary

  • Security and Compliance

    • Logins

    • Server Logins and Database Users

    • Roles

      • Fixed Server Roles

      • Database Roles

      • Application Roles

    • Schemas

    • Before You Can Proceed with Your Solution

    • Declarative Management Framework

    • Summary

  • Defining Tables

    • What Is a Table?

    • SQL Server Data Types

      • Table Data Types

      • Program Data Types

    • Columns As More Than Simple Data Repositories

      • Default Values

      • Generating IDENTITY Values

      • The Use of NULL Values

    • Creating a Table in SQL Server Management Studio

    • Creating a Table Through Query Editor

    • Creating a Table: Using a Template

    • Creating and Altering a Template

    • The ALTER TABLE Statement

    • Defining the Remaining Tables

    • Setting a Primary Key

    • Creating a Relationship

      • Check Existing Data on Creation

      • Enforce Foreign Key Constraints

      • Choosing Delete and Update Rules

    • Building a Relationship via T-SQL

    • Relationships: Database or Application

    • Summary

  • Creating Indexes and Database Diagramming

    • What Is an Index?

      • Types of Indexes

      • Uniqueness

    • Determining What Makes a Good Index

      • Using Low-Maintenance Columns

      • Using Primary and Foreign Keys

      • Finding Specific Records

      • Using Covering Indexes

      • Looking for a Range of Information

      • Keeping the Data in Order

    • Determining What Makes a Bad Index

      • Using Unsuitable Columns

      • Choosing Unsuitable Data

      • Including Too Many Columns

      • Including Too Few Records in the Table

    • Reviewing Your Indexes for Performance

    • Creating an Index

      • Creating an Index with the Table Designer

      • Indexes and Statistics

      • The CREATE INDEX Syntax

      • Creating an Index in Query Editor: Template

      • Creating an Index in Query Editor: SQL Code

    • Dropping an Index

    • Altering an Index

    • When an Index Does Not Exist

    • Diagramming the Database

      • Database Diagramming Basics

      • The SQL Server Database Diagram Designer

      • The Default Database Diagram

      • The Database Diagram Toolbar

      • Modifying Your Database Using Database Diagram Designer

    • Summary

  • Database Backups and Recovery

    • Backup Strategies

      • Recovery Models

      • Types of Backups

      • Backup Strategy Decisions

    • Transaction Logs

    • When Problems May Occur

    • Backups: Taking a Database Offline

    • Backing Up the Data

      • Backup Considerations

      • Performing a Manual SQL Server Backup

      • Backing Up the Database Using T-SQL

      • Transaction Log Backup Using T-SQL

    • Restoring a Database

      • Restoring Using SQL Server Management Studio

      • Restoring Using T-SQL

      • Restoring to a Point in Time

    • Detaching and Attaching a Database

      • Detaching and Attaching Using SQL Server Management Studio

      • Detaching and Attaching Using T-SQL

    • Producing SQL Script for the Database

    • Summary

  • Database Maintenance

    • Creating a Database Maintenance Plan

    • Executing the Plan

    • Setting Up Database Mail

    • Modifying a Maintenance Plan

    • Summary

  • Data Insertion, Deletion, and Transactions

    • Inserting Data

      • The T-SQL INSERT Statement Syntax

      • INSERT SQL Statement

      • DBCC CHECKIDENT

      • Column Constraints

      • Inserting Several Records at Once

    • Transactions

      • Transaction Basics

      • Transaction Commands

      • Locking Data

    • Deleting Data

      • DELETE Syntax

      • Before Demonstrating the DELETE Statement

      • Using the DELETE Statement

      • Truncating a Table

      • Dropping a Table

    • Summary

  • Selecting and Updating Data

    • Retrieving Data

      • Using SQL Server Management Studio to Retrieve Data

      • Using the SELECT Statement to Retrieve Data

    • Limiting a Search: The Use of WHERE

      • TOP n

      • TOP n PERCENT

      • SET ROWCOUNT n

    • String Functions

    • Order! Order!

    • The LIKE Operator

    • Creating Data: SELECT INTO

    • Updating Data

      • The UPDATE Statement

      • Updating Data Within Query Editor

      • Updating Data: Using Transactions

      • Nested Transactions

    • Using More Than One Table

    • Summary

  • Building a View

    • Why a View?

      • Using Views for Security

      • Encrypting View Definitions

    • Creating a View: SQL Server Management Studio

    • Creating a View Using a View

    • Creating a View Using T-SQL Syntax

      • The CREATE VIEW Syntax

      • Creating a View with CREATE VIEW and SELECT

      • Binding Columns in a View with SCHEMABINDING

    • Indexing a View

    • Summary

  • Stored Procedures, Functions, and Security

    • What Is a Stored Procedure?

    • Creating a Stored Procedure

      • CREATE PROCEDURE Syntax

      • Returning a Set of Rows

      • Creating a Stored Procedure: Management Studio

      • Different Methods of Execution

    • Returning Results

      • Using RETURN

      • Returning Multiple Result Sets

    • Controlling the Flow

      • IF...ELSE

      • BEGIN...END

      • WHILE...BREAK Statement

      • CASE Statement

    • Bringing It All Together

    • Security

      • Security Gains

      • Granting and Revoking Permissions

    • User-Defined Functions

      • Scalar Functions

      • Table-Valued Functions

      • Considerations When Building Functions

    • Summary

  • Essentials for Effective Coding

    • Variables

    • Temporary Tables

    • Aggregations

      • COUNT/COUNT_BIG

      • SUM

      • MAX/MIN

      • AVG

    • Grouping Data

    • HAVING

    • Distinct Values

    • Functions

      • Date and Time

      • String

      • System Functions

    • RAISERROR

    • Error Handling

      • @@ERROR

      • TRY...CATCH and THROW

    • Summary

  • Advanced T-SQL and Debugging

    • Sequences Instead of IDENTITY

    • Creating a SEQUENCE

    • Subqueries

      • Using Subqueries

      • IN

      • EXISTS

      • Tidying Up the Loose End

    • The APPLY Operator

      • CROSS APPLY

      • OUTER APPLY

    • Common Table Expressions

      • Using Common Table Expressions

      • Recursive CTE

    • Pivoting Data

      • PIVOT

      • UNPIVOT

    • Ranking Functions

      • ROW_NUMBER

      • RANK

      • DENSE_RANK

      • NTILE

    • Cursors

    • Debugging Your Code

      • Debugging Windows

      • Debugging Options

      • Debugging Pop-Up Window

    • Summary

  • Triggers

    • What Is a Trigger?

    • The DML Trigger

      • CREATE TRIGGER Syntax for DML Triggers

      • Why Not Use a Constraint?

      • Deleted and Inserted Logical Tables

      • Creating a DML FOR/AFTER Trigger

      • Checking Specific Columns

    • DDL Triggers

      • DDL Database-Level Events

      • Dropping a DDL Trigger

      • EVENTDATA()

    • Summary

  • Connecting via Code

    • General Application Security

    • Connecting with Excel or Excel Visual Basic for Applications (VBA)

      • Using Excel with the Data Ribbon

      • Using Excel with VBA

    • Visual Studio

      • Terminology

      • VB.NET

      • C#

    • Java

    • Summary

  • Index

    • A

    • B

    • C

    • D

    • E

    • F

    • G

    • H

    • I

    • J

    • K

    • L

    • M

    • N

    • O

    • P

    • Q

    • R

    • S

    • T

    • U

    • V

    • W

    • X, Y

    • Z

Tài liệu cùng người dùng

Tài liệu liên quan