博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server 2008读书笔记(1):安装和配置SQL Server 2008
阅读量:6568 次
发布时间:2019-06-24

本文共 1352 字,大约阅读时间需要 4 分钟。

Quick Check

1.Which edition of SQL Server supports installing more than one instance of SQL

2. What are the authentication modes that SQL Server can be confi gured with?

Quick Check Answers

1. Only SQL Server Enterprise supports multiple instances on the same machine.

2. You can confi gure SQL Server to operate under either Windows Only or Windows

#1 Install the AdventureWorks Sample Database

EXEC sp_configure 'filestream_access_level', 2;GORECONFIGUREGORESTORE DATABASE AdventureWorks FROM DISK='C:\Program Files\Microsoft SQLServer\100\Tools\Samples\AdventureWorks2008.bak' WITH RECOVERY;GORESTORE DATABASE AdventureWorksDW FROM DISK='C:\Program Files\MicrosoftSQL Server\100\Tools\Samples\AdventureWorksDW2008.bak' WITH RECOVERY;GO

2)为数据库实例启用FILESTREAM(文件流)

EXEC sp_configure filestream_access_level,2RECONFIGURE

 Quick Check

1. What are the two basic components of Database Mail?
2. What are the two types of mail profi les that can be created?
Quick Check Answers
1. Database Mail uses mail profi les which can contain one or more mail accounts.
2. Mail profi les can be confi gured as either public or private.

Enable the Database Mail feature:

EXEC sp_configure 'show advanced options', 1;GORECONFIGURE;GOEXEC sp_configure 'Database Mail XPs', 1;GORECONFIGURE WITH OVERRIDEGO

 

转载于:https://www.cnblogs.com/thlzhf/archive/2012/12/15/2819404.html

你可能感兴趣的文章
秒杀系统架构分析与实战
查看>>
OSChina 技术周刊第十六期 —— 每周技术精粹
查看>>
OSChina 技术周刊第二十九期 —— HTTP 有时候比 HTTPS 好?
查看>>
在Win7下利用VirtualBox和Vagrant安装Docker
查看>>
Elasticsearch 2.2.0 索引配置详解
查看>>
【工具使用系列】关于 MATLAB 液压元件,你需要知道的事
查看>>
给研发工程师的代码质量利器 | SOFAChannel#5 直播整理
查看>>
icinga安装介绍,监控软件
查看>>
正则表达式总结图
查看>>
Quartz 实现分布式任务调度
查看>>
IntelliJ IDEA 安装go插件
查看>>
Javascript基础知识 - 基础部分
查看>>
RHEL6.4换CentOS源
查看>>
编译安装openresty+mariadb+php7
查看>>
ArrayList如何实现插入的数据按自定义的方式有序存放
查看>>
activiti no processes deployed with key ""
查看>>
php autoload机制学习
查看>>
intellij idea 配置远程访问本地的tomcat项目
查看>>
利用onSaveInstanceState()方法保存Activity状态
查看>>
java线程入门篇(一)
查看>>