2014년 5월 20일 화요일

SQL Server editions

01. SQL Server 2012 architecture and configuration
    SQL Server editions
    SQL Server installation and tools
    SQL Server metadata
        Compatibility views
        Catalog views
        Dynamic Management Objects
        Other metadata
    Components of the SQL Server engine
        Protocols
        Query processor
        The storage engine
    SQL Server 2012 configuration
        Using SQL Server Configuration Manager
        Managing services
    SQL Server system configuration
        Operating system configuration
        Trace flags
        SQL Server configuration settings
    Conclusion

SQL Server editions
1.제품 버전을 확인하기 위해서는 다음의 쿼리를 사용합니다.
SELECT Edition = SERVERPROPERTY('Edition')
반환값은 다음과 같습니다. 64비트 버전의 경우는 (64-bit) 이 추가됩니다.
Enterprise Edition
Enterprise Edition: 코어 기반 라이선스
Enterprise Evaluation Edition
Business Intelligence Edition
Developer Edition
Express Edition
Express Edition with Advanced Services
Standard Edition
Web Edition
2.엔진 버전을 확인하기 위해서는 다음의 쿼리를 사용합니다.
SELECT Edition = SERVERPROPERTY('EngineEdition')
반환값은 다음과 같습니다. 같은 숫자라면 기능은 동일합니다.
1 = Personal 또는 Desktop Engine(SQL Server 2005 이상 버전에는 사용할 수 없음)
2 = Standard(Standard, Web 및 Business Intelligence 버전인 경우 이 값이 반환됨)
3 = Enterprise (Evaluation, Developer 및 Enterprise 버전인 경우 이 값이 반환됨)
4 = Express(Express, Express with Tools 및 Express with Advanced Services 버전인 경우 이 값이 반환됨)
5 = SQL Azure
3.Edition 대신에 EditionID를 사용할 수 있습니다.
SELECT Edition = SERVERPROPERTY('EditionID')
반환값은 다음과 같습니다.
1804890536 = Enterprise
1872460670 = Enterprise Edition: 코어 기반 라이선스
610778273= Enterprise Evaluation
284895786 = Business Intelligence
-2117995310 = Developer
-1592396055 = Express
-133711905 = Express with Advanced Services
-1534726760 = Standard
1293598313 = 웹
SQL Server installation and tools SQL Server는 Windows Server Core Edition에서도 설치 가능합니다. Windows Server Core Edition은 GUI를 제공하지 않기 때문에 여러가지 제약이 따릅니다. 설치는 커맨드라인과 설정파일을 통해서 해야 합니다. 자세한 내용은 명령 프롬프트에서 SQL Server 설치를 참조하세요. 그리고 SSMS를 사용할 수 없기 때문에 원격지에서 접속해야 합니다. 만약 콘솔에서 작업하려면 커맨드라인툴이나 파워쉘을 사용해야 합니다.

댓글 없음:

댓글 쓰기