COLLOCATE DATABASE_DEFAULT replaced with Latin1_General1_CI_AS

This commit is contained in:
robvde 2012-07-04 18:09:25 +04:00
parent b652fab29e
commit c958211ce7
3 changed files with 7 additions and 7 deletions

View file

@ -35704,8 +35704,8 @@ RAISERROR('You are not allowed to access this package', 16, 1)
DECLARE @Records TABLE
(
RecordID int,
RecordType nvarchar(10) COLLATE DATABASE_DEFAULT,
RecordName nvarchar(50) COLLATE DATABASE_DEFAULT
RecordType nvarchar(10) COLLATE Latin1_General_CI_AS,
RecordName nvarchar(50) COLLATE Latin1_General_CI_AS
)
-- select PACKAGES DNS records
@ -44137,7 +44137,7 @@ EXEC sp_xml_preparedocument @idoc OUTPUT, @xml
-- Execute a SELECT statement that uses the OPENXML rowset provider.
DELETE FROM ServiceProperties
WHERE ServiceID = @ServiceID
AND PropertyName COLLATE DATABASE_DEFAULT IN
AND PropertyName COLLATE Latin1_General_CI_AS IN
(
SELECT PropertyName
FROM OPENXML(@idoc, '/properties/property', 1)