Error: The multi-part identifier "SourceView.MonitoringClassId" could not be bound

We have a strange error with multiple views under "Configuration Items". First of all with some users the error happens almost every time and there are a few users where this never happens. If it happens the following errors appear in the SCSM
console and the server evtentlog after clicking on a view.
Currently it looks like domain administrators don't face this problem. But SCSM admins and regular SCSM users have the same problem.
Eventlog:
Data Access Layer rejected retry on SqlError:
Request: Composite_Select_Path_00000000-0000-0000-0000-000000000000 -- (ManagedTypeId_SubqueryJoin0_00=880e7a50-afab-74d9-1e74-8a4ca50640b0), (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb), (CustomerName_97197BF6_C0B3_78BA_4B4A_A34047F47DCA0=%XName+YName%)
Class: 16
Number: 4104
Message: The multi-part identifier "SourceView.MonitoringClassId" could not be bound.
SCSM Console Error:
Date: 01.07.2014 14:58:05
Application: Service Manager Console
Application Version: 7.5.3079.0
Severity: Error
Message: An error occurred while loading the items.
Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportException: The Full adapter threw an exception. See the FullUpdate property to see the exception.
at Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
Is there a way to troubleshoot this or can someone point me in the right direction?
I read that some of those "Full adapter"-errors should be fixed with SCSM R2 UR2. But it didn't help here.

Hi,
Did you create any custom views? what is the common views between the end users facing this problem.
Regards
Antoine AL Ibry

Similar Messages

  • The multi-part identifier "#AIP.agentcode" could not be bound is error coming while executing code

    DECLARE @Groupid varchar(50)
    DECLARE @Agentcode varchar(50)
    Declare @From numeric(20)
    Declare @TO numeric(20)
    DECLARE @date nvarchar(30)
    Declare @tempSelect varchar(max)=''
    Declare @tempQuery varchar(max)
    declare @sqlstr nvarchar(max)
    declare @alias nvarchar(100)
    declare @agent1 varchar(4000)
    declare @agentid varchar(20)
    declare @transvalue varchar(20)
    Set @From= 20140801
    Set @TO= 20140810
    SET @Groupid=2
    SET @Agentcode=121
    --set @ttotal = @TO - @From
    --set @counter = @From
    --set @i = 0
    set @tempQuery=''
    truncate table  jv.dbo.a_tbl_AIP_LOGIN 
    insert into jv.dbo.a_tbl_AIP_LOGIN (agentcode)
    select distinct   AgentCode   from jv.dbo.aGENT WHERE Flagactive='y' and email like '%@%'
    union
    SELECT Distinct 
    jv.dbo.POLICYADMININFO.AGENTID 
    FROM jv.dbo.POLICYADMININFO(NOLOCK)
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB'  and POLICYADMININFO.AGENTID>0 
    Update T set RM_NAME=RMMASTER.rmname,SM_NAME=SM_MASTER.name,REGION=rmmaster.region,AIP_NAME=agent.FirstName     
     from jv.dbo.a_tbl_AIP_LOGIN T
    left join jv.dbo.AGENT (NOLOCK) on    t.agentcode=agent.AgentCode
    LEFT JOIN jv.dbo.SM_MASTER(NOLOCK) ON AGENT.SMID = SM_MASTER.SMID
    LEFT JOIN jv.dbo.RMMASTER(NOLOCK) ON sm_master.Region =rmmaster.region   
    --------------------------------------FOR AIP Operation----------------------------------------------------------
    if (@groupid=2)
    Begin 
    select agentcode into #AIP from jv.dbo.a_tbl_aip_login where AgentCode=@Agentcode
    SELECT PolicyAdminInfo.AgentID,ORDEFFDATE,isnull(convert(bigint, SUM(cast(TransVal*s1.mf as money))),0) TRANSVAL
    into #aipbusiness FROM   jv.dbo.POLICYADMININFO(NOLOCK) 
    INNER join #AIP on PolicyAdminInfo.AgentID=#AIP.agentcode
    LEFT JOIN jv.dbo.Amwayskuitem_New(NOLOCK) S1 ON S1.SKU_ITEM=POLICYADMININFO.SKUNO  
    LEFT JOIN jv.dbo.POLICYINFO(NOLOCK) I ON I.POLICYNO=POLICYADMININFO.ApplNo and I.PRODUCTTYPE=POLICYADMININFO.ProductType
    LEFT JOIN jv.dbo.PolicyStatus_new S ON I.PolicyStatus=S.PolicyStatus
    WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB' 
    AND NOT ISNULL(S.EffStatus,'')='CANCELLED' 
    GROUP BY  PolicyAdminInfo.AGENTid,ORDEFFDATE
    order by agentid
    end
    set @transvalue ='transval';
    while(@From <=@TO )
         Begin
           set @alias=' a'+CONVERT(nvarchar,@From) --as '+@i +' 
    --set @tempSelect=@tempSelect + ',' +@alias+'.'+@agentid +','+@alias+'.'+@transvalue ;
    set @tempSelect=@tempSelect + ','+@alias+'.'+@transvalue +' ['+replace(convert(nvarchar, jv.dbo.convDatetime(@From),103),'/','-')+']';
    --set @tempSelect=@tempSelect + ','+@alias+'.'+@alias 
    --set @tempSelect=@tempSelect + ',' +@alias
       set @tempQuery=@tempQuery+' left outer join (select agentid,transval from #aipbusiness where #aipbusiness.ordeffdate='+CONVERT(nvarchar,@From)+')' +  @alias + '  on #AIP.agentcode='
    +  @alias +'.agentid'        
    set @from =@From +1;
    End 
    SET @sqlStr  = 'select a_tbl_AIP_LOGIN.Region,a_tbl_AIP_LOGIN.RM_NAME RMName,a_tbl_AIP_LOGIN.SM_NAME SMName,a_tbl_AIP_LOGIN.AIP_NAME AIPName' + @tempSelect +  ' from jv.dbo.a_tbl_AIP_LOGIN' +@tempQuery +' Order by Region,RM_NAME ,SM_NAME
    ,AIP_NAME '
    --select @sqlStr as out
    execute sp_Executesql  @sqlStr
    --select @tempSelect as out
    drop table #aip
    drop table #aipbusiness
    malik

    Hello,
    In your dynamic SQL you are trying to access the local temporary table #AIP, which was created in the stored procedure. You run the dynamic SQL with sp_Executesql, which starts as a separate session, where you can't access the local temp table from the other
    session; this don't work.
    Use a global temp table, which will cause other issues, or run everything as one big dynamic SQL statement.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • The multi-part identifier "p.p#" could not be bound.

    Hi,
    When i executed the below query , i have an error :(
    select s# from s where exists (select * from spj where spj.s# = s.s# and spj.p# = p.p#)
    and relation is :
    S(s#,sname,city) s# is primary key
    p(p#,pname,color) p#
    is primary key
    j(j#,jname,city)  j#
    is primary key
    SPJ(S#,p#,j#,qty) s# and p# and j# is foreign key

    I see table "s" and "spj" in your query, but I don't see any table (alias) "p"; where is it?
    Hi,
    I change query with 
    select s# from s
    where exists (select * from p where pname='test' and exists (select * from spj where spj.s#=s.s#
    and spj.p# = p.p#))
    and the problem is solved. But can you explain the query? How it runs?(step by step?) Thank you

  • Multi-part identifier dtss.DocumentID could not be bound

    Below is my query
    Getting error
    The multi-part identifier "dtss.DocumentID" could not be bound.
    SELECT sb.BoxID,sbls.Locationcode,sbl.LocationName,sbls.DateEntered
    From data_document.dbo.StorageBox sb
    inner join data_document.dbo.StorageBoxLocations sbls
    on sb.storageBoxID
    = sbls.storageBoxID
    inner join data_document.dbo.StorageBoxLocation sbl
    ON sbls.LocationCode
    = sbl.LocationCode
    Inner Join CVDocuments cvds
    on dtss.DocumentID
    = cvds.DocumentID
    INNER JOIN CVFact cvf
    ON cvf.CVID
    = cvds.CVID
    INNER JOIN Employee e
    ON e.Employeeid
    = cvf.EmployeeID
    inner join data_document.dbo.DocumentStorageBox dsb
    ON dsb.StorageBoxID
    = sb.StorageBoxID
    Can anybody help me. 
    Mary Sunish

    Where is this dtss object defined -> dtss.DocumentID?
    Can you check the dtss alias which is not defined on of the objects?
    --Prashanth

  • The multi-part identifier could not be bound.

    Hi!
    Somebody can tell me what I'm doing wrong on this code (see below) because I'm getting this message
    (Msg 4104, Level 16, State 1, Line 1. The multi-part identifier "dbo.tdbComments.cmsComments" could not be bound.)
    SELECT [to].odsProduct, tsd.sndInvoice, tsd.sndSerialID, tsd.sndTicketNo, tsd.sndStationID, ps.psName, CONVERT(varchar(8),tsd.sndDate,1) AS [Scanned Date], 
    CONVERT(varchar(8),tsd.sndLaborDay,1) AS [Labor day], tsd.sndEmployeeID, u.EmpName, tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct, tsd.sndInvoice, tsd.sndTicketNo, tsd.sndSerialID, tsd.sndStationID, ps.psName, tsd.sndDate, tsd.sndLaborDay, tsd.sndEmployeeID, u.EmpName, dbo.tdbComments.cmsComments
    ORDER BY tsd.sndStationID

    try
    SELECT [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndSerialID
    ,tsd.sndTicketNo
    ,tsd.sndStationID
    ,ps.psName
    ,CONVERT(VARCHAR(8), tsd.sndDate, 1) AS [Scanned Date]
    ,CONVERT(VARCHAR(8), tsd.sndLaborDay, 1) AS [Labor day]
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndTicketNo
    ,tsd.sndSerialID
    ,tsd.sndStationID
    ,ps.psName
    ,tsd.sndDate
    ,tsd.sndLaborDay
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,dbo.tdbComments
    ,tc.cmsComments
    ORDER BY tsd.sndStationID
    Thanks
    Manish
    Please click Mark as Answer if my post solved your problem and click
    Vote as Helpful if this post was useful.

  • REPLICAT ERROR(The procedure entry point long jmp could not be located )

    Hi,
    I am getting the following error
    The procedure entry point long jmp could not be located in the dynamic link library orauts.dll
    Does anyone know anything about this? please help.
    Thanks
    V

    i googled to the solution before i got to the answer but thanks anyway... you are right i changed my oracle home yesterday...today i had to reset to make this work...
    Thanks
    Venkat

  • Getting error: The document [document title was here] could not be saved."

    I am getting this error when trying to save a Numbers spreadsheet:
    "The document (document title was here) could not be saved."
    I created this spreadsheet from scratch in the numbers format, and I have been using it for several weeks now.
    When I 'get info' on the file and look at the file permissions, I see that my user has read and write access to the file. It is in the /Users/Shared directory as I share it with others on this computer. No other users are logged in, therefore the file is only open by me.
    I have already tried restarting the computer, and that didn't work.
    Any help would be greatly appreciated with this! I think others on this forum may have had a similar problem but they were blaming it on opening the file over a network. In my case as you can see, it is all local to my computer.

    Thanks for the suggestions. I tried all three and unfortunately the problems just got worse until the file would not open at all
    I had to restore from time machine from yesterday, then save as a different file. This allows me to edit the copy, but as soon as I try to edit it as a different use I go back to the same old problems again, even if the user has read & write permissions on the file and the directory the file is in.

  • SQL Server 2005: Multi-part identifier could not be bound

    Hello,
    I use IBM WebSphere Portal and am desperately trying to move data from the default Cloudspace Database to MS SQL Server 2005, of course following the official guidelines.
    What happens is that WebSphere's Configuration Wizard fails because of an error caused by the SQL Script. Trouble is, I can't bring it to work not even in the SQL Server Management Studio.
    What follows is the code generated by the script. The error is caused by the last "check"-constraint (colored in red).
    CREATE TABLE community.APP_DESC (
    OID BINARY(18) NOT NULL,
    TYPE INTEGER NOT NULL,
    APP_NAME NVARCHAR(255) NOT NULL,
    IS_ACTIVE INTEGER NOT NULL,
    JSR_VERSION NVARCHAR(255),
    GUID NVARCHAR(255),
    WEB_MOD_OID BINARY(18),
    WEB_MOD_SL BINARY(18),
    WSRP_PROD_OID BINARY(18),
    WSRP_PROD_SL BINARY(18),
    DEFAULT_LOCALE NVARCHAR(64),
    CREATED BIGINT NOT NULL,
    MODIFIED BIGINT NOT NULL,
    WSC_GROUP_ID NVARCHAR(255),
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((community.APP_DESC.WEB_MOD_OID IS NULL) AND (community.APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((community.APP_DESC.WEB_MOD_OID IS NOT NULL) AND (community.APP_DESC.WEB_MOD_SL IS NULL)))
    And that's what SQL Server 2005 told me:
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    BTW, as this is a generated script I do not have the possibility to change it. Because it has been released by IBM I am rather convinced that it is correct - therefore I was wondering whether SQL Server 2005 has a known bug that makes it refuse "check"-constraints.
    Any hint is very appreciated.
    Thanks in advance,
    adapter

    THe problem is that is was probably not made for SQL Server 2005. It should read:
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((APP_DESC.WEB_MOD_OID IS NULL) AND (APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((APP_DESC.WEB_MOD_OID IS NOT NULL) AND (APP_DESC.WEB_MOD_SL IS NULL)))
    The meaning of the first identifier changed in SQL Server 2005, as this is now the Schema and not the owner. DO you have a chance of using a SQL Server 2000 computer ? In terms of licences you will have a downgrade licence for the SQL Server, otherwise you should ping the IBM guys to provide a compatible script.
    HTH, Jens K. Suessmeyer.
    http://www.sqlserver2005.de

  • Error message: "the following files were imported but could not be renamed"

    Trying to import photos and keep getting error "the following files were imported but could not be renamed."  Any help would be appreciated...using Lightroom 3 still ( I know I know) and importing into lightroom with a backup copy to computer harddrive. 
    Message title was edited by: Brett N

    Peter I am also experiencing the same error message.  Here is my situation:
    I am using Lightroom 4.
    I have duplicated images across multiple harddrives.
      I am trying to import these using 2 seperate 2 terrabyte hard drives ( 1 for lightrooom the other as my image backup drive).
    I am using keywords and embedding the keyword into the new backup file name. Hopefully provide some organization.
    I am using the MOVE option in my import process.
    Have he images that were not renamed moved to the new backup drive?  Are they they under the original file name?
    I want to end up with a common lightroom catalog and single backup file structure as my photo repository.
    What am I doing to trigger the above message and what suggestions might you have with regards to my lightroom organization approach?
    Any insight and recommendations to my situation would be greatly appreciated..   Thanks,  Jay

  • Time Capsule Help: The backup disk image "XYZ.sparsebundle" could not be accessed (error -1).

    My time capsule hasn't been working for months now. Finally got around to looking into the problem. Have tried looking on forums -- most solutions point to Pondini.org. I've tried #17, which is related to my specific error with no avail (including using Airport Utility 5.6 to disconnect all users).
    I have also tried moving (instead of deleting) my old sparsebundle into a temporary folder on the Time Capsule to "hide it" to attempt to create a new sparsebundle: while I have managed to get Time Machine to create a new one (albeit after many, many attempts), once it creates a new one, it doesn't seem to say that anything has been backed-up AND it cannot seem to access the "new" sparsebundle, giving me the error: "The backup disk image “XYZ.sparsebundle” could not be accessed (error -1)."
    Thoughts?

    Try Here  >  http://pondini.org/TM/C12.html
    More Info here  >  http://pondini.org/TM/Time_Capsule.html

  • The Sun Java System Application Server could not start

    Hello All,
    I downloaded the Java Pet Store example from sun's website and followed the instructions for installation. After successful installation, I tried to deploy the project and gave the following error
    C:\Documents and Settings\sina\My Documents\Projects\services\nbproject\build-impl.xml:194: Deployment error:
    The Sun Java System Application Server could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - IDE timeout: refresh the server node to see if it's running now.
    - Port conflicts. (use netstat -a to detect possible port numbers already used by the operating system.)
    - Incorrect server configuration (domain.xml to be corrected manually)
    - Corrupted Deployed Applications preventing the server to start.(This can be seen in the server.log file. In this case, domain.xml needs to be modified).
    - Invalid installation location.
    See the server log for details.
    BUILD FAILED (total time: 5 minutes 20 seconds)
    The link above points to the following line in the build-impl.xml file
    <nbdeploy debugmode="false" forceRedeploy="${forceRedeploy}" clientUrlPart="${client.urlPart}" clientModuleUri="${client.module.uri}"/>
    Can any one help whats wrong.An early response will be highly appreciated.
    Kind Regards.
    Hasnain Javed.

    Hi,
    Maybe you already got this fix but here is a suggestion, a snippet from the readme index,html of the petstore download
    # Start the Sun Java System Application Server and the JavaDB database. To do so, open a command prompt and change directory to <javaeesdk.home>/bin and issue the following commands:
    asadmin start-database
    asadmin start-domain
    # Change directory to <petstore.home> and enter the following commands
    ant setup
    ant run
    This will setup, build and deploy the petstore on the application server, and then launch the application homepage in your default browser.
    The "ant setup" that you run from <petstore.home> (petstore.home is the directory where petstore is installed or where you unzipped it) will populate the database wth data and setup the proper database tables etc that are used by the application.
    hth,
    Sean

  • The type or namespace name 'SPSite' could not be found (are you missing a using directive or an assembly reference?)_

    I am creating a Winforms application. I need to upload and download a file from Sharepoint.
     I have added reference to Microsoft.Sharepoint.Client.
    Below is the code to upload file:
    using System.IO;
    using Microsoft.SharePoint;
    private void Button_Click_1(object sender, RoutedEventArgs e)
                String fileToUpload = @"C:\Test.txt";
                String sharePointSite = "https://myshapoint";
                String documentLibraryName = "Test";
                using (SPSite oSite = new SPSite(sharePointSite))
                    using (SPWeb oWeb = oSite.OpenWeb())
                        if (!System.IO.File.Exists(fileToUpload))
                            throw new FileNotFoundException("File not found.", fileToUpload);
                        SPFolder myLibrary = oWeb.Folders[documentLibraryName];
                        // Prepare to upload
                        Boolean replaceExistingFiles = true;
                        String fileName = System.IO.Path.GetFileName(fileToUpload);
                        FileStream fileStream = File.OpenRead(fileToUpload);
                        // Upload document
                        SPFile spfile = myLibrary.Files.Add(fileName, fileStream, replaceExistingFiles);
                        // Commit 
                        myLibrary.Update();
    But i get the error "The type or namespace name 'SPSite' could not be found (are you missing a using directive or an assembly reference?)"
    I am not sure what else I am supposed to do here.

    Hi,
    If you want to develop a WinForm application to be only used in SharePoint Server, we can use Server-Side Object Model(use Microsoft.Sharepoint.dll) to achieve it. 
    If you want to use the WinForm application to be used both in Server side and Client Side, I suggest you use .Net Client Object Model(use Microsoft.Sharepoint.Client.dll) to achieve it.
    Here are two links for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/c357e3c7-37e9-4ded-83aa-a57beae0b0e4/how-to-upload-download-files-to-sharepoint-2013?forum=sharepointdevelopment
    http://msdn.microsoft.com/en-us/library/ff798388.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • The installed version of SQL Server could not be verified or is not supported. Verify that the computer and the installed version of SQL Server meet the minimum requirements for installation

    Hi Guys,
    Currently i am trying to install SCOM2012R2 with SQL 2012 SP1. When i proceed with SCOM installation, getting an error
    "The installed version of SQL Server could not be verified or is not supported. Verify that the computer and the installed version of SQL Server meet the minimum requirements for installation, and that the firewall settings are correct. See the Supported
    Configurations document for further information.
    SQL Collation i selected as per System Center2012 guide SQL_Latin1_General_CP1_CI_AS
    Can some one please help me on this?
    Regards
    Kris
    Kris

    Hi,
    Please check logs for further information. Let us know what the logs says:
    http://www.systemcentercentral.com/opsmgr-2012-my-installation-failed-what-log-files-do-i-read-and-where-can-i-find-them/
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • The Remote Desktop Connection Broker server could not enumerate the targets for the provider named NULL from the database.

    When I try to install Connection Broker on a Windows 2012 R2 Server in a Windows 2003 domain I get this error:
    The Remote Desktop Connection Broker server could not enumerate the targets for the provider named NULL from the database.
    Pooled virtual desktop collection name: NULL
    Error: Logon to the database failed.
    I have added both the Connection Broker server and the 2 remote desktop servers (also Windows 2012 R2 Servers) to the "Windows Authorization Access Group" in the domain according to this: http://support.microsoft.com/kb/331951
    But it still does not work :-(
    I keep getting same error....
    Any idea what I might be missing ?

    Hi,
    Thank you for posting in Windows Server Forum.
    Firstly please let us know by which method you have setup RDS role. You can have more advantage and feature when you will install with Standard deployment instead of Quick start deployment. So if you have setup with quick start option then you can try installing
    with standard type and check the result.
    In addition, please check SQL server database is properly configured for RDS server. Also check that domain controller properly communicates. Kindly go through below thread for more information.
    Server 2012 RDS - Remote
    Desktop Connection Broker Client failed to redirect the user domain\username. Error: NULL
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • When you try to send or to receive email in Outlook 2010, you may receive one of these error messages: 0x8004010F: Outlook data file cannot be accessed. or 0x8004010F: The operation failed. An object could not be found.

    0x8004010F: The operation failed. An object could not be found.
    1. reviewed Profile instructions
    2. Ran SytTools thinking it would fix the error. NO although I could send received I ended up with a giant pst 
    3. Back to Profile Instructions.
    4. Set up new profile with my email address. email address tested well. Run Outlook. loads as outlook data PST
    and  gmail address PST.  Deleted all the Gmail subscriptions to improve speed. Original error was gone but have two GIGANIC PST FILES.
    5. Set up another new profile with my email address and a named pst.  Run Outlook under that Profile -
    comes up with newly named pst and the gmail addrress pst (although I can't figure out where that pst is located. Will not let me use email address as default Profile.  Tried different approaches and still ended up always with the gmail address pst.  Deleted
    all profiles but email address and comes   up.
    6. Should I just go ahead and use the gmail address pst  I need to import data or download data from gmail
    to get last years correspondence.e
    7. Outlook is my lifeblood, I am in communications and every submitted email gets moved to a file with an update.
    Help?
    8. One option is to merge psts but might make worse mess.
    Thanks.  Beautiful Beach weather here!

    To resolve error 0x8004010F , identify the current location of your default Outlook data file, and then create a new Outlook profile.
    Step 1- Locate the default Outlook data file
    Click Start, and then click Control Panel.
    In Control Panel, click Mail.
    In the Mail Setup - Outlook dialog box, click Show Profiles.
    Select your current Outlook profile, and then click Properties.
    In the Mail Setup - Outlook dialog box, click Data Files.
    Select the Data Files tab in the Account Settings dialog box, and then note the name and location of the default data file for your profile (a check mark will denote the default data file).
    Click Close.
    Step 2 - Create a new Outlook profile
    Step 3 - Configure your new Outlook profile as the default profile
    More detailed steps you can refer to this KB article:
    http://support.microsoft.com/kb/2659085

Maybe you are looking for

  • Can anyone explain why a different Apple Id pops up

    when I use the iCloud back-up to restore a new device. My own Apple Id comes up so I type in my passwor...that's not the problem..but... while it is downloading all of my apps and contents from my icloud back-up to my new device, another Apple ID pop

  • Displaying Images with Cocoon

    I am a bit of a Cocoon Newbie but I have spent a day or two trying to resolve this issue. Here Goes. We are starting to use Cocoon 2.1 and we are replacing a Struts based system that extracts information from a Legacy Database (IDMS) and retrieves am

  • Installing/Updating iTunes 12.1.x 64bit Error 7

    Every time I try to install or upgrade iTunes on Windows 7/64 to any 12.1 version, the Apple Mobile Device service fails to start every time. If I hit ignore, then let the install complete, I get a permanent "Error 7" message any time I try to start

  • Lightroom 4.2 update does not install MacPro 10.7.5running LR 4.1

    LR 4.2 update downloads and dialog .pkg opens.  Click and Install Icon briefly appears in Dock and dissappears.  No "continue" dialog opens.  Adobe tech took over desktop X2 without sucess.  Apple says cannot help.  Tried uninstalling LR 4.1, Tried i

  • OLAP VARIABLES

    Hello How to use OLAP variables in Infopackage. I want to create a package in which i want to give the period from value as last month and period to value as current month. how to achieve this using OLAP variables or other variables. thansk for your