zoukankan      html  css  js  c++  java
  • SQL Server 2008读书笔记(1):安装和配置SQL Server 2008

    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;
    GO
    
    RECONFIGURE
    GO
    
    RESTORE DATABASE AdventureWorks FROM DISK='C:\Program Files\Microsoft SQL
    Server\100\Tools\Samples\AdventureWorks2008.bak' WITH RECOVERY;
    GO
    
    RESTORE DATABASE AdventureWorksDW FROM DISK='C:\Program Files\Microsoft
    SQL Server\100\Tools\Samples\AdventureWorksDW2008.bak' WITH RECOVERY;
    GO

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

    EXEC sp_configure filestream_access_level,2
    RECONFIGURE

     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;
    GO
    
    RECONFIGURE;
    GO
    
    EXEC sp_configure 'Database Mail XPs', 1;
    GO
    
    RECONFIGURE WITH OVERRIDE
    GO
  • 相关阅读:
    TBalloonHint 提示
    Delphi 结构体常量的定义
    editplus的用法
    Delphi中的容器类
    delphi XE5 UnicodeString的由来
    Delphi:TObject简要说明-对象的创建流程
    Java 反射之私有字段和方法详细介绍
    Java之画图板浅析
    java中的AlgorithmParameterSpec接口
    Java抽象类简单学习
  • 原文地址:https://www.cnblogs.com/thlzhf/p/2819404.html
Copyright © 2011-2022 走看看