Dev/etc

DB의 collation 변경

엘 이스 2018. 4. 17. 09:46

the database could not be exclusively locked to perform the operation. alter database failed


--ALTER DATABASE latinLang

--COLLATE Korean_Wansung_CI_AS

--GO 




ALTER DATABASE latinLang SET SINGLE_USER WITH ROLLBACK IMMEDIATE; 

GO 


ALTER DATABASE latinLang COLLATE Korean_Wansung_CI_AS; 

GO 


ALTER DATABASE latinLang  SET MULTI_USER; 

GO 

'Dev > etc' 카테고리의 다른 글

크로스 사이트 ajax 호출  (0) 2018.05.30