Affected Version(s):
vRD 2010 R2, Build 7.0.3067.0
1. Problems when connecting via VNC
Symptoms:
Following message appears, when trying to connect via VNC and the connection will not be etsablished:
EN: An error occurred. Object reference not set to an instance of an object.
DE: Es ist ein Fehler aufgetreten. Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
Cause:
visionapp confirms this to be a bug.
Resolution:
Will be fixed with the next version of vRD.
2. Permissions in database mode do not work as expected
Symptoms:
Even when restricting a user to use only certain credentials, he can use all public credentials using the option Connect as from the context menu of an connection object.
Cause:
visionapp confirms this to be bug.
Resolution:
Will be fixed with the next version of vRD.
3. Updating a vRD 2010 database to vRD 2010 R2 does not work on MS SQL 2000
Symptoms:
Following error occurs, when updating:
visionapp.vRDInstall.Schema._2010R2.dbSchema.sql
CREATE NONCLUSTERED INDEX IX_vCCErrorLog ON dbo.vCCErrorLog
(
_InsertDate DESC
) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
Cause:
The error is been caused by a missing index.
Workaround:
Add the index manually - it is a performance index for "Deleting automatically logs on start of vRD":
CREATE NONCLUSTERED INDEX IX_vCCErrorLog ON dbo.vCCErrorLog
(
_InsertDate DESC
) ON [PRIMARY]
Resolution:
Will be fixed with the next version of vRD.