Problems that you may experience when you install VMM R2 Cumulative Update 1

Source: Internet
Author: User

I view the description from https://support.microsoft.com/en-us/kb/2904712 and download the patch for installation.

Issues

Update Rollup 1 for System Center R2 Virtual machine Manager resolves the following issues:
  • System Center R2 Virtual Machine Manager cannot deploy a new or imported VMWare template.
  • A virtual machine with that uses VHDX cannot is refreshed correctly in System Center for R2 virtual machine Manager, and You receive the following error message:

    Refresh job failed with error 2912:the requested operation cannot being performed on the virtual disk as it's currently use D in shared mode (0XC05CFF0A)

  • Database operations sometimes fail with "failedtoacquirelockexception."
  • A new virtual machine template from a template, which specifies an operating system profiles doesn ' t use credentials from the Operating system profile.
  • Virtual machines in VMWare, connect by the using Cisco n1000v Dvswitch is unavailable for management from Virtual Mac Hine Manager.
  • System Center Virtual Machine Manager service crashes if disable one of the teamed network adapters.
  • The Get-scstoragearray-host command should return storage arrays that was visible to a host which is using zoning.
  • During The discovery of a network-attached storage (NAS) provider, the credentials that is used do not include a domain n Ame.
  • Some localized strings is not displayed correctly in the UI.
  • A query to find the certificate should match both the subject name and the friendly name because Findbysubjectname is a WI Ldcard Search.
  • Template deployment fails, and you receive the following error message:

    Error (2904)
    VMM could not find the specified path on the < Server name > server.
    The system cannot find the path specified (0x80070003)

  • Virtual hard Disk (VHD) cannot is mounted on a host because VHD conflicts with other disks because of a stale entry that W As left in the dictionary of Virtual Machine Manager memory.
  • differencing disk based deployment may fail because the parent disk is being refreshed as noncached.

Both VMM server and console installations are normal. However, the SQL script that is provided in the article is executed:

/* Script starts here */alter Procedure [dbo]. [Prc_rbs_userrolesharedobjectrelation_insert] (@ID uniqueidentifier, @ObjectID uniqueidentifier, @ObjectType int, @RoleID uniqueidentifier, @UserOrGroup varbinary (85 ), @ForeignAccount nvarchar, @IsADGroup bit, @ExistingID uniqueidentifier = NULL OUTPUT) ASSET NOCOUNT on SELECT @Exi Stingid = [ID] from [dbo]. [Tbl_rbs_userrolesharedobjectrelation] WHERE [ObjectID] = @ObjectID and [Roleid] = @RoleID and--Select owner OR Select all which matches Foreignaccount OR User Orgroup or--both Foreignaccount and Userorgroup is NULL ([userorgroup] = @UserOrGroup or [foreignaccount] = @ForeignAcc Ount) OR ([Userorgroup] is null and @UserOrGroup is null and [Foreignaccount] are null and @ForeignAccount is NULL))/* IGN Ore duplicate Entries */IF (@ExistingID is NULL) BEGIN INSERT [dbo]. [Tbl_rbs_userrolesharedobjectrelation] ([ID], [ObjectID], [ObjectType], [Roleid], [Userorgroup], [Foreignaccount], [Isadgroup], [Isowner]) VALUES (@ID, @Object ID, @ObjectType, @RoleID, @UserOrGroup, @ForeignAccount, @IsADGroup, 0) endset NOCOUNT offreturn @ @ERROR */script ends here */

You encounter the following error

650) this.width=650; "title=" image "style=" border-top:0px; border-right:0px; Background-image:none; border-bottom:0px; padding-top:0px; padding-left:0px; border-left:0px; padding-right:0px "border=" 0 "alt=" image "src=" http://s3.51cto.com/wyfs02/M01/73/FC/ Wkiol1ylnnoau0xnaafqawf6iaa042.jpg "" 644 "height=" 428 "/>

The check found that the SQL statement is wrong, the space is not a space, the line break is not wrapped.

I modified it to the following so that it can be executed normally.

/* Script starts here */
ALTER Procedure [dbo]. [Prc_rbs_userrolesharedobjectrelation_insert]
(
@ID uniqueidentifier,
@ObjectID uniqueidentifier,
@ObjectType int,
@RoleID uniqueidentifier,
@UserOrGroup varbinary (85),
@ForeignAccount nvarchar (256),
@IsADGroup bit,
@ExistingID uniqueidentifier = NULL OUTPUT
)
As
SET NOCOUNT on
SELECT @ExistingID = [ID]
from [dbo]. [Tbl_rbs_userrolesharedobjectrelation]
WHERE [ObjectID] = @ObjectID and [Roleid] = @RoleID and
--Select owner or select all which matches foreignaccount or Userorgroup or
--both Foreignaccount and Userorgroup is NULL
([Userorgroup] = @UserOrGroup or [foreignaccount] = @ForeignAccount) or
([Userorgroup] is null and @UserOrGroup are null and [Foreignaccount] is null and @ForeignAccount is null))
/* Ignore Duplicate entries */
IF (@ExistingID is NULL)
BEGIN
INSERT [dbo]. [Tbl_rbs_userrolesharedobjectrelation]
([ID]
, [ObjectID]
, [ObjectType]
, [Roleid]
, [Userorgroup]
, [Foreignaccount]
, [Isadgroup]
, [Isowner]
)
VALUES
(
@ID,
@ObjectID,
@ObjectType,
@RoleID,
@UserOrGroup,
@ForeignAccount,
@IsADGroup,
0
)
END
SET NOCOUNT OFF
RETURN @ @ERROR
/* Script ends here */

Problems that you may experience when you install VMM R2 Cumulative Update 1

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.