블로그 이미지
LifeisSimple

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

2010. 10. 4. 00:00 Brain Trainning/DataBase
SQL Server 2008 SP2가 나왔습니다. 

지금 적용을 하면 마루타가 될까요? ㅎㅎㅎ

적용 방법은 요렇게...  (2005 와 2008은 패치 방법이 다릅니다.)

Apply a service pack or patch SQL Server 2008 in a clustered environment 
    Step 1 : Validation wizard 
    Step 2 : Pre-check
    Step 3 : Installation of the first node
    Step 4 : Add a new node 
    Step 5: Apply a service pack or hotfix on a SQL cluster 

Installing Service Pack SQL Server 2008 in failover cluster is very different than the SQL Server 2005 cluster failover.

With SQL Server 2005, when you start installing cluster service pack (or hotfix), it must be launched on the active node (node that hosts the instance). When installing the Setup will launch simultaneously  "remote silence" on all passive nodes. All nodes in the cluster containing the SQL Server instance are updated in the same time.

With SQL Server 2008, to reduce the downtime, we have revised the method of deployment. Now if you want to apply a service pack (or hotfix), you must install in first on the passive nodes. The passive nodes are updated before the active node.

Therefore, for your instance SQL Server 2008  in failover cluster, you must follow the scenario below for the application of Service Pack, Cumulative Update or Hotfix :

1.  Apply the hotfix on pasive node N2
2.  Reboot the passive node N2
3.  Failover on SQL resource : the passive node become the active node
4.  Apply the hotfix on the passive node N1
5.  Reboot the passive node N1

You can check the version of SQL server with the following query:

SELECT   

      SERVERPROPERTY('IsClustered') as _1_Means_Clustered ,   
      
SERVERPROPERTY('Edition') as Edition ,   
      
SERVERPROPERTY('ProductVersion') as Version  , 
      
      
SERVERPROPERTY('ComputerNamePhysicalNetBIOS') as ActiveNode


한글 링크는 아래에 


영문버전 링크

Files in this Download


The links in this section correspond to separate files available in this download. Download the files most appropriate for you.

File Name:
Size:
Download files below
Microsoft SQL Server 2008 SP2 Readme.htm
16KB
SQLServer2008SP2-KB2285068-IA64-ENU.exe
343.4MB
SQLServer2008SP2-KB2285068-x64-ENU.exe
349.8MB
SQLServer2008SP2-KB2285068-x86-ENU.exe
284.8MB

Quick Details


Version:
10.00.4000.00
Date Published:
9/29/2010
Change Language:
Knowledge Base (KB) Articles:

'Brain Trainning > DataBase' 카테고리의 다른 글

MNG : Backup 유지관리계획  (0) 2010.10.17
SQL Diag 이렇게 이용  (0) 2010.10.16
MySQL Clustering Config  (0) 2010.09.29
MySQL Clustering on Ubuntu  (0) 2010.09.29
MySQL Cluster 구성  (0) 2010.09.20
posted by LifeisSimple