Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))

I've Main Report + 5 sub report. All of this in a 1 file named _rptBorang.rpt.
This _rptBorang.rpt consists of
1. Main Report
2. _spupimSPMBorang.rpt
3. _spupimSTPMBorang.rpt
4. _spupimSijilDiploma.rpt
5. _spupimKoQ.rpt
6. _spupimPilihanProg.rpt
When I preview the report, the Enter values dialog box ask 7 parameters. It's
1. idx
2. tbl_MST_Pemohon_idx
3. tbl_MST_Pemohon_idx(_spupimSPMBorang.rpt)
4. tbl_MST_Pemohon_idx(_spupimSTPMBorang.rpt)
5. tbl_MST_Pemohon_idx(_spupimSijilDiploma.rpt)
6. tbl_MST_Pemohon_idx(_spupimKoQ.rpt)
7. tbl_MST_Pemohon_idx(_spupimPilihanProg.rpt)
My ASP.NET code as following,
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="_cetakBorang.aspx.vb" Inherits="_cetakBorang" title="SPUPIM" %>
<%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1n" runat="server">
    <div align="center">
        <asp:Label ID="lblMsg" runat="server" ForeColor="Red"></asp:Label>
        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
            AutoDataBind="true" />
    </div>
    </form>
</body>
</html>
Imports System.configuration
Imports System.Data.SqlClient
Imports System.Web.Security
Imports CrystalDecisions.Shared
Imports CrystalDecisions.CrystalReports.Engine
Partial Class _cetakBorang
    Inherits System.Web.UI.Page
    Private Const PARAMETER_FIELD_NAME1 As String = "idx"
    Private Const PARAMETER_FIELD_NAME2 As String = "tbl_MST_Pemohon_idx"
    Private Const PARAMETER_FIELD_NAME3 As String = "tbl_MST_Pemohon_idx(_spupimSPMBorang.rpt)"
    Private Const PARAMETER_FIELD_NAME4 As String = "tbl_MST_Pemohon_idx(_spupimSTPMBorang.rpt)"
    Private Const PARAMETER_FIELD_NAME5 As String = "tbl_MST_Pemohon_idx(_spupimSijilDiploma.rpt)"
    Private Const PARAMETER_FIELD_NAME6 As String = "tbl_MST_Pemohon_idx(_spupimKoQ.rpt)"
    Private Const PARAMETER_FIELD_NAME7 As String = "tbl_MST_Pemohon_idx(_spupimPilihanProg.rpt)"
    Dim myReport As New ReportDocument
    'rpt connection
    Public rptSvrNme As String = ConfigurationManager.AppSettings("rptSvrNme").ToString()
    Public rptUsr As String = ConfigurationManager.AppSettings("rptUsr").ToString()
    Public rptPwd As String = ConfigurationManager.AppSettings("rptPwd").ToString()
    Public rptDB As String = ConfigurationManager.AppSettings("rptDB").ToString()
    Private Sub SetCurrentValuesForParameterField(ByVal reportDocument As ReportDocument, ByVal arrayList As ArrayList, ByVal paramFieldName As String)
        Dim currentParameterValues As New ParameterValues()
        For Each submittedValue As Object In arrayList
            Dim parameterDiscreteValue As New ParameterDiscreteValue()
            parameterDiscreteValue.Value = submittedValue.ToString()
            currentParameterValues.Add(parameterDiscreteValue)
        Next
        Dim parameterFieldDefinitions As ParameterFieldDefinitions = reportDocument.DataDefinition.ParameterFields
        Dim parameterFieldDefinition As ParameterFieldDefinition = parameterFieldDefinitions(paramFieldName)
        parameterFieldDefinition.ApplyCurrentValues(currentParameterValues)
    End Sub
    Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
        If Not IsPostBack Then
            publishReport(Convert.ToInt32(Session("applicantIdx")), Convert.ToInt32(Session("applicantIdx")))
        End If
    End Sub
    Private Sub publishReport(ByVal idx As Integer, ByVal tbl_MST_Pemohon_idx As Integer)       
        Try
            Dim reportPath As String = String.Empty
            reportPath = Server.MapPath("_rptBorang.rpt")
            myReport.Load(reportPath)
            myReport.SetDatabaseLogon(rptUsr, rptPwd, rptSvrNme, rptDB)
            Dim arrayList1 As New ArrayList()
            arrayList1.Add(idx)
            SetCurrentValuesForParameterField(myReport, arrayList1, PARAMETER_FIELD_NAME1)
            Dim arrayList2 As New ArrayList()
            arrayList2.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList2, PARAMETER_FIELD_NAME2)
            Dim arrayList3 As New ArrayList()
            arrayList3.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList3, PARAMETER_FIELD_NAME3)
            Dim arrayList4 As New ArrayList()
            arrayList4.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList4, PARAMETER_FIELD_NAME4)
            Dim arrayList5 As New ArrayList()
            arrayList5.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList5, PARAMETER_FIELD_NAME5)
            Dim arrayList6 As New ArrayList()
            arrayList6.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList6, PARAMETER_FIELD_NAME6)
            Dim arrayList7 As New ArrayList()
            arrayList7.Add(tbl_MST_Pemohon_idx)
            SetCurrentValuesForParameterField(myReport, arrayList7, PARAMETER_FIELD_NAME7)
            Dim parameterFields As ParameterFields = CrystalReportViewer1.ParameterFieldInfo
            CrystalReportViewer1.ReportSource = myReport
        Catch ex As Exception
            lblMsg.Text = ex.Message
        End Try
    End Sub
    Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
        myReport.Close()
    End Sub
End Class
The result was, my ASP.NET return error --- > Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
I'm stuck
Really need help
Edited by: WKM1925 on Feb 22, 2012 11:49 AM

First off, it would really be nice to have the version of CR you are using. Then
1) does this report work the CR designer?
2) What CR SDK are you using?
3) If .NET, what version?
4) Web or Win app?
5) What OS?
Then, please re-read your post and see if it actually makes any sense. To me, it's just gibberish...
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup
Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Similar Messages

  • Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX

    I am using the following:
    1. Crystal Report 10
    2. .Net Framework 2.0 for developing page aspx page
    3. Oracle Stored Procedure for fetching result set with one input parameter.
    I am getting the following error
    Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
    Source Error:
    Line 30:         crReportDocument.Load(reportPath)
    Line 31:
    Line 32:         crReportDocument.SetParameterValue("LASTNAME", "Gagnon")
    Line 33:
    Line 34:         'Set the ConnectionInfo properties for logging on to the Database
    Source File: C:\UnClient940_TEST1\nbkreports\Reportview.aspx.vb    Line: 32
    Stack Trace:
    [COMException (0x8002000b): Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))]
       CrystalDecisions.ReportAppServer.DataDefModel.FieldsClass.get_Item(Int32 Index) +0
       CrystalDecisions.CrystalReports.Engine.ParameterFieldDefinitions.get_Item(Int32 index) +44
       CrystalDecisions.CrystalReports.Engine.ParameterFieldDefinitions.get_Item(String fieldName) +60
       CrystalDecisions.CrystalReports.Engine.ReportDocument.SetParameterValue(String name, Object val) +172
       Reportview.LoadReport() in C:\UnClient940_TEST1\nbkreports\Reportview.aspx.vb:32
       Reportview.Page_Load(Object sender, EventArgs e) in C:\UnClient940_TEST1\nbkreports\Reportview.aspx.vb:26
       System.Web.UI.Control.OnLoad(EventArgs e) +80
       System.Web.UI.Control.LoadRecursive() +49
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3745
    Oracle Stored Procedure Code:
    CREATE OR REPLACE PROCEDURE Test_Procedure (
    Test_Cursor IN OUT Test_Package.Test_Type,
    v_LASTNAME IN Test_Table.LASTNAME%TYPE)
    AS
    BEGIN
    OPEN Test_Cursor FOR
    SELECT *
    FROM Test_Table
    WHERE Test_Table.LASTNAME = v_LASTNAME;
    END Test_Procedure;
    ASPX.NET Page
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.Web
    Imports System.Collections
    Imports System
    Partial Class Reportview
        Inherits System.Web.UI.Page
        Dim crtableLogoninfos As New TableLogOnInfos()
        Dim crtableLogoninfo As New TableLogOnInfo()
        Dim crConnectionInfo As New ConnectionInfo()
        Dim CrTables As Tables
        Dim CrTable As Table
        Dim TableCounter
        Dim reportPath As String '= Server.MapPath("Report1.rpt")
        'Define Variables to read Session variables (Parameter Values)
        Dim s_repID As String, s_repName As String, s_repPath As String, reportPath1 As String
        Public Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            'Session("repid") = Request.QueryString.Item(0)
            s_repID = Session("v_RepID")
            s_repName = Session("v_RepName")
            s_repPath = Session("v_RepPath")
            reportPath1 = s_repPath & s_repName
            reportPath = Server.MapPath(reportPath1)
            LoadReport()
        End Sub
        Private Sub LoadReport()
            Dim crReportDocument As New ReportDocument()
            crReportDocument.Load(reportPath)
            crReportDocument.SetParameterValue("LASTNAME", "Gagnon")
            'Set the ConnectionInfo properties for logging on to the Database
            With crConnectionInfo
                .ServerName = System.Configuration.ConfigurationManager.AppSettings("ServerName")
                'If you are connecting to Oracle there is no DatabaseName. Use an empty string
                .DatabaseName = System.Configuration.ConfigurationManager.AppSettings("DatabaseName")
                .UserID = System.Configuration.ConfigurationManager.AppSettings("UserID")
                .Password = System.Configuration.ConfigurationManager.AppSettings("Password")
            End With
            CrTables = crReportDocument.Database.Tables
            'Loop through each table in the report and apply the LogonInfo information
            For Each CrTable In CrTables
                crtableLogoninfo = CrTable.LogOnInfo
                crtableLogoninfo.ConnectionInfo = crConnectionInfo
                CrTable.ApplyLogOnInfo(crtableLogoninfo)
            Next
            'Set the viewer to the report object to be previewed.
            myCrystalReportViewer.ReportSource = crReportDocument
        End Sub
    End Class
    Any help would be highly appreciated.
    Regards
    Nabeel

    Same problem here.
    Assemblies I'm using are 10.2.3600.0 version.
    Of course, there should really have been a managed exception here rather than a HEX result COM Exception I think ...
    But anyway - I get this error after defining a Parameter Field in the report "Users", and I am simply trying to pass a string array of parameters into the report.
    ParameterFieldDefinition paramField = crDoc.DataDefinition.ParameterFields[0];
    ParameterValues paramVals = paramField.CurrentValues;              
    ParameterFields userParameters = new ParameterFields();
    ParameterField userParameter = new ParameterField();
    //These don't work here
    //userParameter.Name = "Users";
    //userParameter.Name = "@Users";
    userParameter.Name = "?Users";
      foreach (string user in Configuration.UsernamesArray)
      ParameterDiscreteValue userDiscreteReusableValue = new ParameterDiscreteValue();
      userDiscreteReusableValue.Value = user;
      paramVals.Add(userDiscreteReusableValue);
      userParameter.CurrentValues.Add(userDiscreteReusableValue);
      paramField.ApplyCurrentValues(paramVals);
    // Add param object to params collection
    userParameters.Add(userParameter);
    // Assign the params collection to the report viewer
    crystalReportViewer.ParameterFieldInfo = userParameters;
    crystalReportViewer.ReportSource = crDoc;

  • Invalid index error HRESULT: 0x8002000B DISP_E_BADINDEX

    one of report have invalid index error HRESULT: 0x8002000B DISP_E_BADINDEX
    using 8.5 method have above error in local development machine
    using 2008 method can show data in report nomally in local development machine
    for what 8.5 method and 2008 method are, please refer my previous post

    closed, but get the same error after set database location
    when verify database
    ADO Error Code 0x
    Invalid object name 'dbo.CurrentAccount'
    Vendor Code 208

  • Not able to spy objects in ie9 using coded UI Test Builder Spy, giving exception -Interface not registered(Exception from HRESULT:0X....

    Not able to spy objects in ie9 using coded UI Test Builder Spy, giving exception - "Interface not registered(Exception from HRESULT:0X...."
    I am not able to capture any objects of my web application using coded ui recorder. Even though it is a simple html page, coded ui is showing a message  -"Interface not registered(Exception from HRESULT:0X...."
    Please give me solution , why this is hapening. I am having problem with object identification. Even I am not able to identify any object in google.com.
    swapnanil sengupta

    TechnologyName is displaying as "MSAA" . But my application is a Webapplication.If I try to spy the google .com's search field then also TechnologyName is displaying as "MSAA". Is it any configuration issue of vsts codedui.
    swapnanil sengupta

  • Unable to load DLL 'librfc32.dll'  (Exception from HRESULT: 0x8007007E)

    Unable to load DLL 'librfc32.dll'  (Exception from HRESULT: 0x8007007E)
    Hi!
    We would like to hold the account balance data from EMPTOR to SAP and have the following error:
    Unable to load DLL 'librfc32.dll'  (Exception from HRESULT: 0x8007007E)
    We use SAP ERP 2005 on Windows 64 Bit.
    Can some one help with the problem?
    Thank you very much!
    regards
    Thom

    You can download the latest avaiable kernel or just the librrfc component from http://service.sap.com/swdc. They maybe an issue with this DLL. Just download the latest one and copy into \usr\sap\<SID>\SYS\exe\run directory. Be sure to save the previous DLL.
    Thanks
    Adil

  • System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi,
    I have a asp.net web application running on windows server 2008 with oracle server 10g installed.
    now we are planning to run application on another server with same server as database server. but when the deployed on new server the login page comes up and after login System.DllNotFoundException: Unable to load DLL 'OraOps10.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) exception is thrown. any help would highly be appreciated.

    Did you run the ODAC installer, OUI or xcopy, or did you just copy over Oracle.DataAccess.dll to the new machine? If the latter, then you need to run the installer to put in all the necessary Oracle DLLs ODP.NET references.

  • Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040

    Please assist I am on a Windows 7 64 bit machine I have VS 2010 and have been fighting with this new program that I was brought on to help with - Issue is that I am unable to get rid of this issue. There is so many solutions but none have worked. If someone can give me some help with what has worked for you.
    The error is Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
    This is with CR installed on 64 bit.
    Thank you very much for any assistance with this problem,
    Kris

    Hi Vittorio
    Please enter the search string 'log4net crystal net' into the search box in the top right corner. When the results come up, click on the Support Notes link. That will filter for the KBAs that you want to have a look at.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • [Solved] The requested object does not exist. (Exception from HRESULT: 0x80010114)

    I have a 8 node cluster with Hyper-V, which will be 10 nodes when it's finally done.
    Recently I've been try to add nodes and though that went fine, after about a week I could not open the Failover Cluster Manager anymore.
    After some checking I found out that the latest added node was giving problems.
    VM's on the node still run and function properly, but most Powershell commands result in a "The requested object does not exist. (Exception from HRESULT: 0x80010114)".
    I can suspend the node with Suspend-ClusterNode, but draining roles was unsuccesful in one case.
    In the other there were no VM's on the node so suspending went fine.
    What I did find out was that when I tried to ping the node from another, proper functioning node, it took a while before the pinging started. It felt like the interface had to come back online on the problem node.
    After that, I could add the cluster to the Failover Cluster Manager. However, Powershell commands still give a 0x80010114 error or a CIM error for when I use Get-NetAdapter.
    A reboot resolves the problem, but only for about a week.
    I know there is a topic with the same title already, but the wbemtest en rollup update "answer" is totally unclear to me why I should change something with wbemtest, or why to install updates that to me have nothing to do with this problem.
    Before I did the ping test from a functioning node I pinged my DC and another node from the problem node just fine.
    No waiting at all.
    The cluster has three networks. Management (host only), Live Migration and iSCSI (also a VMSwitch for certain VM's).
    I have no idea where to look. Evenviewer doesn't give me anything I can work with that I can find...

    Hi,
    Are you using the HP servers? It seems is the HP Nic team service was causing the issue, please try to
     disabled the HP NIC team service from services and restarted the WMI service.
    The related third party information:
    Advisory: (Revision) HP ProLiant Servers - Systems Running Microsoft Windows Server 2012 or 2012 R2 May Experience a Memory Leak Up To 5 Mb/ Hour for Some NIC Teaming Configurations
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay/?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_ba847bafb2a2d782fcbb0710b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-c04209163-2%257CdocLocale%253D%257CcalledBy%253D&javax.portlet.tpst=ba847bafb2a2d782fcbb0710b053ce01&ac.admitted=1401176219136.876444892.199480143
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Office 365 App using NAPA - "The system cannot find the file specified. (Exception from HRESULT: 0x80070002)"

    Hello,
    I am creating an app using NAPA tool in Office 365. I am trying to "Add an attachment" to a custom list item using SPServices. When I am using my code  (jquery code) in content editor web part on a page, its working fine, but when I am adding
    the same code in an app, its giving me error :  "The system cannot find the file specified. (Exception from HRESULT:
    0x80070002)" - 500 Internal Server error.
    (function () {
    // This code runs when the DOM is ready and creates a context object which is
    // needed to use the SharePoint object model
    $(document).ready(function () {
    //alert('In doc ready');
    $('.attachmentButton').change(function(event){
    var listName = 'UploadTest',
    itemId = 2;
    handleFileChange(listName,itemId,event.target.files);
    function handleFileChange(listName,itemId,files){
    alert('In handleFileChange :=' + listName + "" + itemId + "" + files[0]);
    alert('files.length :=' + files.length);
    var filereader = {},
    file = {},
    i=0;
    //loop over each file selected
    for(i = 0; i < files.length; i++) {
    alert('In for loop');
    file = files[i];
    filereader = new FileReader();
    filereader.filename = file.name;
    alert('filereader.filename :=' + filereader.filename);
    filereader.onload = function() {
    var data = this.result;
    var n=data.indexOf(";base64,") + 8;
    //alert('n :=' + n);
    //removing the first part of the dataurl give us the base64 bytes we need to feed to sharepoint
    data= data.substring(n);
    //alert('data :=' + data);
    alert('Above SPServices this.filename :=' + this.filename);
    $().SPServices({
    operation: "AddAttachment",
    listName: listName,
    asynch: false,
    listItemID:itemId,
    fileName: this.filename,
    attachment: data,
    completefunc: function (xData, Status) {
    console.log('attachment upload complete',xData,status);
    alert('Status :=' + Status);
    if (Status.toLowerCase() == "error"){
    alert(xData.responseText);
    alert(xData.status);
    alert(xData.statusText);
    filereader.onabort = function() {
    alert("The upload was aborted.");
    filereader.onerror = function() {
    alert("An error occured while reading the file.");
    //fire the onload function giving it the dataurl
    filereader.readAsDataURL(file);
    alert(xData.responseText); - gives error - " "The system cannot find the file specified. (Exception from HRESULT: 0x80070002)""
    alert(xData.status); - gives error - "500"
    alert(xData.statusText); - gives error - "Internal server error"
    Server Publishing infrastructure and Server publishing features are activated on site collection and site respectively.
    Any suggestions, why I am getting this error in NAPA ?

    Hi,
    According to your post, my understanding is that you have an issue about adding attachments to list items in app.
    To add attachment to list item in the host web, we should first get the list and the list items from the host web, then add the attachments to the list items.
    There are two articles about retrieve the list and list items in the host web, you can refer to them.
    http://www.dotnetcurry.com/showarticle.aspx?ID=1028
    http://www.c-sharpcorner.com/UploadFile/93cb27/retrieve-sharepoint-app-host-web-list-items-in-sharepoint-ho/
    What’s more, we can also use the REST API to achieve the same scenario.
    http://www.c-sharpcorner.com/UploadFile/472cc1/add-attachments-to-list-items-in-sharepoint-2013-using-rest/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Exception from HRESULT: 0x80131904 - Error when creating a team site

    Hi,
    I am a SharePoint Administrator. I have a SharePoint 2010 site collection that had been migrated successfully from MOSS 2007 2 years ago. This site collection has some custom solutions and is very large (~200GB).
    Everything works fine but since last week, I can NOT create any team site as subsite in this site collection. Error message is Exception from HRESULT: 0x80131904 
    I checked SP log and found some errors from SQL Server side:
    05.22.2014 08:30:33.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880k High at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.Library.SPRequest.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.SPField.set_SchemaXml(String value) at Microsoft.SharePoint.SPList.FixFieldsFromColumnTemplate() at Microsoft.SharePoint.SPWeb.SyncNewLists() at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(String strWebTemplate) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.CreateSite() at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.RenderControl(HtmlTextWriter writer) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderPartContents(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderWebPart(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderZoneCell(HtmlTextWriter output, Boolean bMoreParts, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderWebParts(HtmlTextWriter output, ArrayList webParts) at Microsoft.SharePoint.WebPartPages.WebPartZone.Render(HtmlTextWriter output) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Page.Render(HtmlTextWriter writer) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryPage.Render(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Incorrect syntax near 'FC7D0500'.' Source: '.Net SqlClient Data Provider' Number: 102 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'.' Source: '.Net SqlClient Data Provider' Number: 105 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 5586 Critical Unknown SQL Exception 102 occurred. Additional error information from SQL Server is included below. Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=ch01sw0482;Initial Catalog=SharePoint_Collaboration_GRDRO;Integrated Security=True;Enlist=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzkv High SqlCommand: 'BEGIN TRAN;UPDATE AllUserData SET nvarchar3 = REPLACE(nvarchar3, ''', '') WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET float2 = CASE WHEN ISNUMERIC(nvarchar3) = 1 AND nvarchar3 != '$' AND nvarchar3 != '.' AND nvarchar3 != ',' AND nvarchar3 != '+' AND nvarchar3 != '-' THEN nvarchar3 ELSE NULL END WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET nvarchar3 = NULL WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; COMMIT TRAN' CommandType: Text CommandTimeout: 0 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database d0d6 High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80131904 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    I also checked my SQL Server. The tempdb is ok. The content database is fine, have enough free space for data files and log file. 
    Here is log entries that are related to this error:
    05.22.2014 08:30:12.20 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://siteurl/_layouts/AddGallery.aspx) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.20 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/siteurl 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.22 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 90hv Unexpected Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before. Stack trace: at Microsoft.SharePoint.WebControls.ScriptLink.SharePointClientJs_Register(Page page) at Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language) at Microsoft.SharePoint.WebControls.ScriptLink.Register(Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, String uiVersion) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Page page, String strKey, String strFile, Boolean localizable) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterCore(Page page, Boolean defer) at Microsoft.SharePoint.WebPartPages.SPWebPartManager.RegisterOWSScript(Page page, SPWeb web) at Microsoft.SharePoint.WebPartPages.WebPartPage.FormOnLoad(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:12.70 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Fields 88y1 Medium No document templates uploaded for list "$Resources:core,MasterPageGallery;" -- none found for list template "100". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Creating Web test). Execution Time=4832.14849932044 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 85m6 Medium Applying web template 'STS#0' on web url 'http://siteurl/test' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 85m7 Medium Actual web template to apply to Url 'http://siteurl/test' is 'STS#0' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.37 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72h7 Medium Applying template "STS#0" to web at URL "http://siteurl/test". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.86 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1c Medium Preparing 21 features for activation 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.87 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1d Medium Feature Activation: Batch Activating Features at URL http://siteurl/test 'AnnouncementsList' (ID: '00bfea71-d1ce-42de-9c63-a44004ce0104'), 'ContactsList' (ID: '00bfea71-7e6d-4186-9ba8-c047ac750105'), 'CustomList' (ID: '00bfea71-de22-43b2-a848-c05709900100'), 'DataSourceLibrary' (ID: '00bfea71-f381-423d-b9d1-da7a54c50110'), 'DiscussionsList' (ID: '00bfea71-6a49-43fa-b535-d15c05500108'), 'DocumentLibrary' (ID: '00bfea71-e717-4e80-aa17-d0c71b360101'), 'EventsList' (ID: '00bfea71-ec85-4903-972d-ebe475780106'), 'ExternalList' (ID: '00bfea71-9549-43f8-b978-e47e54a10600'), 'GanttTasksList' (ID: '00bfea71-513d-4ca0-96c2-6a47775c0119'), 'GridList' (ID: '00bfea71-3a1d-41d3-a0ee-651d11570120'), 'IssuesList' (ID: '00bfea71-5932-4f9c-ad71-1557e5751100'), 'LinksList' (ID: '00bfea71-2062-426c-90bf-714c59600103'), 'NoCodeWorkflowLibrary' (ID: '00bfea71-f600-43f6-a895-40c0de7b0117'), 'PictureLibrary' (ID: '00bfea71-52d4-45b3-b544-b1c71b620109'), 'SurveysList' (ID: '00bfea71-eb8a-40b1-80c7-506be7590102'), 'TasksList' (ID: '00bfea71-a83e-497e-9ba0-7a5c597d0107'), 'WebPageLibrary' (ID: '00bfea71-c796-4402-9f2f-0eb9a6e71b18'), 'workflowProcessList' (ID: '00bfea71-2d77-4a75-9fca-76516689e21a'), 'WorkflowHistoryList' (ID: '00bfea71-4ea5-48d4-a4ad-305cf7030140'), 'XmlFormLibrary' (ID: '00bfea71-1e1d-4562-b56a-f05371bb0115'), 'TeamCollab' (ID: '00bfea71-4ea5-48d4-a4ad-7ea5c011abe5'), . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.94 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8l1f Medium Feature Activation: Batch Activated Features at URL http://siteurl/test 'AnnouncementsList' (ID: '00bfea71-d1ce-42de-9c63-a44004ce0104'), 'ContactsList' (ID: '00bfea71-7e6d-4186-9ba8-c047ac750105'), 'CustomList' (ID: '00bfea71-de22-43b2-a848-c05709900100'), 'DataSourceLibrary' (ID: '00bfea71-f381-423d-b9d1-da7a54c50110'), 'DiscussionsList' (ID: '00bfea71-6a49-43fa-b535-d15c05500108'), 'DocumentLibrary' (ID: '00bfea71-e717-4e80-aa17-d0c71b360101'), 'EventsList' (ID: '00bfea71-ec85-4903-972d-ebe475780106'), 'ExternalList' (ID: '00bfea71-9549-43f8-b978-e47e54a10600'), 'GanttTasksList' (ID: '00bfea71-513d-4ca0-96c2-6a47775c0119'), 'GridList' (ID: '00bfea71-3a1d-41d3-a0ee-651d11570120'), 'IssuesList' (ID: '00bfea71-5932-4f9c-ad71-1557e5751100'), 'LinksList' (ID: '00bfea71-2062-426c-90bf-714c59600103'), 'NoCodeWorkflowLibrary' (ID: '00bfea71-f600-43f6-a895-40c0de7b0117'), 'PictureLibrary' (ID: '00bfea71-52d4-45b3-b544-b1c71b620109'), 'SurveysList' (ID: '00bfea71-eb8a-40b1-80c7-506be7590102'), 'TasksList' (ID: '00bfea71-a83e-497e-9ba0-7a5c597d0107'), 'WebPageLibrary' (ID: '00bfea71-c796-4402-9f2f-0eb9a6e71b18'), 'workflowProcessList' (ID: '00bfea71-2d77-4a75-9fca-76516689e21a'), 'WorkflowHistoryList' (ID: '00bfea71-4ea5-48d4-a4ad-305cf7030140'), 'XmlFormLibrary' (ID: '00bfea71-1e1d-4562-b56a-f05371bb0115'), 'TeamCollab' (ID: '00bfea71-4ea5-48d4-a4ad-7ea5c011abe5'), . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:17.97 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72ix Medium Not enough information to determine a list for module "mobile". Assuming no list for this module. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'MobilityRedirect' (ID: 'f41cc668-37e5-4743-b4a8-74d1db3fd8a4') at URL http://siteurl/test.). Execution Time=48.2382537445402 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.00 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75fb Medium Calling 'FeatureActivated' method of SPFeatureReceiver for Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053'). 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:18.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e1f High Failed to find the XML file at location '14\Template\Features\FacetedSearch\feature.xml' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8gru Medium Exception thrown while determining definition for Feature with ID '4ad6146d-6ada-4931-ab81-0e179de7008e': Microsoft.SharePoint.SPException: Failed to find the XML file at location '14\Template\Features\FacetedSearch\feature.xml' at Microsoft.SharePoint.SPXmlDocCache.GetGlobalXmlDocument(String pathTemplateRelativeXml, SPFeatureDefinition featdef) at Microsoft.SharePoint.Administration.SPFarmFeatureDefinitionContext.LoadFileAsXmlDocument(SPFeatureDefinition featdef, String featureRelativePath) at Microsoft.SharePoint.Administration.SPFeatureDefinition.EnsureGlobalDefinition() at Microsoft.SharePoint.Administration.SPFeatureDefinition.EnsureElementManifestList() at Microsoft.SharePoint.Administration.SPFeatureDefinition.GetElementDefinitions(CultureInfo ciElements) at Microsoft.SharePoint.SPElementProvider.QueryForElementsJoinOR[TElementType](List`1 lstdictAttrPatterns, List`1 lstfeatdefsOfInterest, List`1 listofOptionalElementsToQuery, CultureInfo ciElements, Int32 webUIVersion). Skipping this feature for element querying consideration. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:19.31 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Template Cache g09v Medium Caching global fields. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (List Creation: SitePages). Execution Time=2121.04722806949 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:20.17 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:21.33 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=261.695550691499 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:21.88 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (List Creation: SiteAssets). Execution Time=1697.65654573416 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:22.41 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72nz Medium Videntityinfo::isFreshToken reported failure. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:26.45 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=3056.27083889153 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.14 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (DocId.ItemChangedInternal). Execution Time=5035.19776954892 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.14 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.Office.DocumentManagement.Internal.DocIdHandler)). Execution Time=5098.96313637627 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.25 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=86.6235792537878 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.78 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=176.816606579887 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (DocId.ItemChangedInternal). Execution Time=438.837617630174 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:27.95 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.Office.DocumentManagement.Internal.DocIdHandler)#2). Execution Time=439.110557347372 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.02 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.02 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'WikiPageHomePage' (ID: '00bfea71-d8fe-4fec-8dad-01c19a6e4053') at URL http://siteurl/test.). Execution Time=10017.3097418806 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'RelatedLinksScopeSettingsLink' (ID: 'e8734bb6-be8e-48a1-b036-5a40ff0b8a81') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'RelatedLinksScopeSettingsLink' (ID: 'e8734bb6-be8e-48a1-b036-5a40ff0b8a81') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.08 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'BaseWeb' (ID: '99fe402e-89a0-45aa-9163-85342e865dc8') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'BaseWeb' (ID: '99fe402e-89a0-45aa-9163-85342e865dc8') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'ObaSimpleSolution' (ID: 'd250636f-0a26-4019-8425-a5232d592c01') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'ObaSimpleSolution' (ID: 'd250636f-0a26-4019-8425-a5232d592c01') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Feature Infrastructure 8e14 Medium Feature 'SlideLibrary' (ID: '0be49fe9-9bc9-409d-abf9-702753bd878d') was already activated at scope 'http://siteurl/test'. No further action necessary for this feature. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 88jb Medium Feature Activation: Activating Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75fb Medium Calling 'FeatureActivated' method of SPFeatureReceiver for Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668'). 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.11 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 75f8 Medium Feature Activation: Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') was activated at URL http://siteurl/test. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.11 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Feature Activation: Activating Feature 'MetaDataNav' (ID: '7201d6a4-a5d3-49a1-8c19-19c4bac6e668') at URL http://siteurl/test.). Execution Time=17.9978181584531 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.75 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Office Parser ey9c Medium Metadata parse dirty the file, Csi PreserveCellStorageStateInFfm skipped 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:28.75 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Office Parser ey9f Medium Metadata demote dirty the file, Csi PreserveCellStorageStateInFfm skipped 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.06 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72ix Medium Not enough information to determine a list for module "Default". Assuming no list for this module. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.09 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General tkmz Medium The WebPartOrder attribute is unspecified, a default of 1 will be used. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.19 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 72h8 Medium Successfully applied template "STS#0" to web at URL "http://siteurl/test". 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:31.19 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Applying Named Web Template: STS#0). Execution Time=13810.9050172578 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:32.66 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=7.89876925698657 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.03 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880k High at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.Library.SPRequest.UpdateField(String bstrUrl, String bstrListName, String bstrXML) at Microsoft.SharePoint.SPField.set_SchemaXml(String value) at Microsoft.SharePoint.SPList.FixFieldsFromColumnTemplate() at Microsoft.SharePoint.SPWeb.SyncNewLists() at Microsoft.SharePoint.SPWeb.ApplyWebTemplate(String strWebTemplate) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.CreateSite() at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryWebPart.RenderControl(HtmlTextWriter writer) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderPartContents(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.SPChrome.RenderWebPart(HtmlTextWriter output, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderZoneCell(HtmlTextWriter output, Boolean bMoreParts, WebPart part) at Microsoft.SharePoint.WebPartPages.WebPartZone.RenderWebParts(HtmlTextWriter output, ArrayList webParts) at Microsoft.SharePoint.WebPartPages.WebPartZone.Render(HtmlTextWriter output) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Page.Render(HtmlTextWriter writer) at Microsoft.SharePoint.Solutions.AddGallery.AddGalleryPage.Render(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_addgallery_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Incorrect syntax near 'FC7D0500'.' Source: '.Net SqlClient Data Provider' Number: 102 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 880j High SqlError: 'Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'.' Source: '.Net SqlClient Data Provider' Number: 105 State: 1 Class: 15 Procedure: '' LineNumber: 1 Server: 'ch01sw0482' 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database 5586 Critical Unknown SQL Exception 102 occurred. Additional error information from SQL Server is included below. Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=ch01sw0482;Initial Catalog=SharePoint_Collaboration_GRDRO;Integrated Security=True;Enlist=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database tzkv High SqlCommand: 'BEGIN TRAN;UPDATE AllUserData SET nvarchar3 = REPLACE(nvarchar3, ''', '') WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET float2 = CASE WHEN ISNUMERIC(nvarchar3) = 1 AND nvarchar3 != '$' AND nvarchar3 != '.' AND nvarchar3 != ',' AND nvarchar3 != '+' AND nvarchar3 != '-' THEN nvarchar3 ELSE NULL END WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; UPDATE AllUserData SET nvarchar3 = NULL WHERE tp_ListID='FC7D0500-F8BD-4974-9852-A70E754354D2' AND tp_RowOrdinal =0; COMMIT TRAN' CommandType: Text CommandTimeout: 0 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Database d0d6 High System.Data.SqlClient.SqlException: Incorrect syntax near 'FC7D0500'. Unclosed quotation mark after the character string ' AND tp_RowOrdinal =0; COMMIT TRAN'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80131904 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:33.05 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation General 8e1d High Deleting the web at http://siteurl/test . 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Render WebPart AddGalleryWebPart). Execution Time=23135.9471664695 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Render WebPart Zone g_77836901A6DE4DAC9F882928CFDFC358). Execution Time=23136.0167283831 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    05.22.2014 08:30:35.36 w3wp.exe (0x1ECC) 0x0F08 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://siteurl/_layouts/AddGallery.aspx)). Execution Time=23153.4689464722 554975d7-2bb1-479a-bdce-9bdb99cd3efb
    Any suggestions as how to resolve this issue?
    Best regard,
    Nhat Phan
    Nhat Phan

    Hi,
    Please try creating other sites liike publishing site to check if error persists?
    Refer the links
    http://spdiaries.net/fix-exception-hresult-0x80131904/ 
    if you want to shrink the logs.
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Error While calling getListItem Webservice : Server was unable to process request. --- Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

    Hi All,
    we are calling sharepoint webservice from our web application but we are getting below error while calling webservice.
    Server was unable to process request. ---> Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Our code is as below.
    We used below 2 options but we got same error for both scenario,
    1)
                ListService.Lists objLists = new ListService.Lists();
                NetworkCredential objNetworkCredential = new NetworkCredential("username", "password");
                objLists.Credentials = objNetworkCredential;
                System.Xml.XmlNode objXmlNode = objLists.GetListItems("Tasks", null, null, null, null, null, null);
    2)         ListService.Lists objLists = new ListService.Lists();
                objLists.Proxy = new WebProxy("proxyaddress",true);
                NetworkCredential objNetworkCredential = new NetworkCredential("username", "password");
                objLists.Credentials = objNetworkCredential;
                System.Xml.XmlNode objXmlNode = objLists.GetListItems("Tasks", null, null, null, null, null, null);
    Please help me what is the problem while calling this service.
    Thanks in advance.
    Regards,
    Kaivan Shah

    Hi ,
    Here is a similar case ,you can have a look at this .
    Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) -Accessing the sharepoint site:
    http://social.msdn.microsoft.com/Forums/en-NZ/sharepointworkflow/thread/5eab2116-7d7c-4bf3-bfa1-48bd8992dded
    Thanks,
    Entan Ming

  • SharePoint Navigation Error:The context has expired and can no longer be used. (Exception from HRESULT: 0x80090317)

    Hi,
    I take a exeption  on the  SharePoint 2013 left navigation. 
    Exeption:  "The context has expired and can no longer be used. (Exception from HRESULT: 0x80090317)"
    I searched  this exeption keyword on the internet and  I find usualy 3 results
    1)check datetime servers --> I checked datetime for all SP Severs ,DB server and AD server ..there is  no problem
    2)Disabled the WebPageSecurity Validation on CA>General Settings-->I tired  and problem not solved
    3) Reset IIS --> if I restart IIS problem solved  but  after 2-3 hours or anytime  error comes again..
    ULS Log:
    PortalSiteMapProvider was unable to fetch children for node
     at URL: /MySite/MySubSite, message: The context has expired and can no longer be used. (Exception from HRESULT: 0x80090317), stack trace:   
     at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)    
     at Microsoft.SharePoint.Library.SPRequest.SetHttpParameters(String bstrHttpMethod, String bstrRequestDigest, UInt32 flags, Guid gTranLockerId, Byte[]& ppsaImpersonateUserToken, Boolean bIgnoreTimeout, String bstrUserLogin, String bstrUserKey, UInt32
    ulRoleCount, String bstrRoles, Boolean bWindowsMode, String bstrAppPrincipalName, Boolean bIsHostHeaderAppPrincipal, String bstrOriginalAppPrincipalIdentifier, ApplicationPrincipalInfo& pAppUserInfo, Boolean bInvalidateCachedConfigurationProperties, Int32
    lAppDomainId, ISPManagedObjectFactory pFactory, Boolean bCallstack, ISPDataCallback pCanaryCallback)    
     at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout,
    Boolean bAsAnonymous)    
     at Microsoft.SharePoint.SPWeb.InitializeSPRequest()    
     at Microsoft.SharePoint.SPWeb.EnsureSPRequest()    
     at Microsoft.SharePoint.SPWeb.get_Request()    
     at Microsoft.SharePoint.Publishing.Navigation.SiteNavigationSettings..ctor(SPSite site)    
     at Microsoft.SharePoint.Publishing.Navigation.SiteNavigationSettings.GetSiteNavigationSettings(SPSite site)    
     at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedTypes, NodeTypes includedHiddenTypes, Boolean trimmingEnabled, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)
     at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedTypes, NodeTypes includedHiddenTypes, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)    
     at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedHiddenTypes)    
     at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider.GetChildNodes(PortalSiteMapNode node, NodeTypes includedHiddenTypes)
    Plaase Help.

    Hi Veli,
    Please check the security token timeout value and it is set to 1440 as expected by default. You can check via running the command:
    stsadm -o getproperty -pn token-timeout
    Then check the OOB recycle times of the probkematic web application pool, and add daily recycle times for the problematic web application pool. You can do as the article:
    http://technet.microsoft.com/en-us/library/cc754494(v=WS.10).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • The context has expired and can no longer be used. (Exception from HRESULT: 0x80090317)

    We have a problem with our wiki site collection. Once a day (and sometimes more), we get the following error message :
    The context has expired and can no longer be used. (Exception from HRESULT: 0x80090317)
    This message is displayed to everyone, and will stay there for an hour or so before the collection is back to life.
    Doing an iisreset would get the site working but that will last for a day at the most.
    This is what we checked and tried so far :
    1. Our time zones are set and are correct.
    2. Changing the timeout or disabling the web page security validation (followed by an iisreset) didn't work.
    3. All server use the same NTP server for time sync (and they are indeed in sync).
    4. It is happening only on the wiki collection, not the other collections.
    5. We are unable to reproduce the behavior on the staging servers.
    Some particularities :
    1. Regional settings are set to French (Canada)
    2. We have 500+ wiki pages in the site collection
    3. We require page check-out / check-in for editing. Tried without, same problem.
    Any ideas as to what should we try next ?
    Regards,
    homerggg

    Hi,
    I don't think we have changed them from the default, a quick look shows ours are set to:
    Token-timeout = 24hrs
    FormsTokenLifetime = 10hrs
    WindowsTokenLifetime = 10hrs
    LogonTokenCacheExpirationWindow = 10m
    Rob

  • The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    Hi,
    We have an exisiting .NET MVC project which uses crystal reports versions 2008 (dlls of version 12.0.). No we have Crystal Reports 2011 for.NET SDK is installed and I've updated all the crystal related dlls (Enterprise.Framework.dll, CrystalDecisions.Chared, CrystalDecisions.Web ...) to newer version which is 14.0. After this upgrade, when I run application, I am getting the following error:
    The specified module could not be found. (Exception from HRESULT: 0x8007007E)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
       System.Reflection.Assembly._nGetModules(Boolean loadIfNotFound, Boolean getResourceModules) +0
       System.Reflection.Assembly.nGetModules(Boolean loadIfNotFound, Boolean getResourceModules) +40
       System.Reflection.Assembly.GetTypes() +28
       System.Web.Mvc.TypeCacheUtil.FilterTypesInAssemblies(IBuildManager buildManager, Predicate`1 predicate) +161
       System.Web.Mvc.TypeCacheUtil.GetFilteredTypesFromAssemblies(String cacheName, Predicate`1 predicate, IBuildManager buildManager) +63
       System.Web.Mvc.ControllerTypeCache.EnsureInitialized(IBuildManager buildManager) +115
       System.Web.Mvc.DefaultControllerFactory.GetControllerTypeWithinNamespaces(RouteBase route, String controllerName, HashSet`1 namespaces) +58
       System.Web.Mvc.DefaultControllerFactory.GetControllerType(RequestContext requestContext, String controllerName) +634
       System.Web.Mvc.DefaultControllerFactory.CreateController(RequestContext requestContext, String controllerName) +58
       System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) +118
       System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) +46
       System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContext httpContext, AsyncCallback callback, Object state) +63
       System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) +13
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +8770194
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
    We have another ASP.Net project, which is working fine after I update older crystal dlls to newer ones. This project is working fine.
    Thanks in advance

    This error I am getting, after I update the "CrystalDesicions.Web.dll" from version 12 to 14.0. Any I dea on this?
    After, I verified with fusin log and ProcessMonitor, they are reporting on this:
    path to BusinessObjects.Licensing.KeyCode.Decoder.dll  is not found. Does this dll is used by CrystalDecisions.Web.dll?
    and I don't have any mixed reference.
    Any help?

  • Could not load file or assembly 'Microsoft.ReportingServices.SharePoint.ObjectModel' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

    Could not load file or assembly 'Microsoft.ReportingServices.SharePoint.ObjectModel' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
    ===========================================================
    This is a SQL Server 2012 Developer Edition of SSRS.
    I am getting this error when navigating to http://servername/Reports. The reports site was working fine, until I installed a SQL 2014 Developer instance (including SSRS) on the same server.
    I can still get to the http://servername/ReportServer site.
    Neither of these are using Sharepoint.
    Any help resolving this issue would be greatly appreciated.
    Below is the stack trace.
    ===========================================================
    [FileLoadException: Could not load file or assembly 'Microsoft.ReportingServices.SharePoint.ObjectModel' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)] System.Reflection.Assembly._nLoad(AssemblyName
    fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0 System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity,
    StackCrawlMark& stackMark, Boolean forIntrospection) +416 System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +166 System.Reflection.Assembly.Load(String
    assemblyString) +35 System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +190 [ConfigurationErrorsException: Could not load file or assembly 'Microsoft.ReportingServices.SharePoint.ObjectModel'
    or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)] System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +1149
    System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +323 System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +116 System.Web.Configuration.AssemblyInfo.get_AssemblyInternal() +36 System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection
    compConfig) +212 System.Web.Compilation.WebDirectoryBatchCompiler..ctor(VirtualDirectory vdir) +174 System.Web.Compilation.BuildManager.BatchCompileWebDirectoryInternal(VirtualDirectory vdir, Boolean ignoreErrors) +57 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath
    virtualPath) +295 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +482 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext
    context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +108 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean
    noAssert) +171 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert) +52 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext
    context, String requestType, VirtualPath virtualPath, String physicalPath) +53 System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) +519 System.Web.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    +176 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +274
    ===========================================================

    Hi Glen,
    "The located assembly's manifest definition does not match the assembly reference." is generally caused by the loaded assembly's version is different than the expected version application refers to.
    In this case, it should be caused by:
    While starting Report Manager, the backend process ReportingServiceService need to load assemblies it refers to
    ReportingServiceService reads the compilation/assemblies element from web.config(under Report Manager virtual patch)
    If the compilation/assemblies is not existing, ReportingServiceService loads all assemblies from Bin folder. It can be verified from call stack System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory(). ReportingServiceService
    uses System.Reflection.Assembly.Load with the assemblies' name only to load assemblies.
    The Assembly.Load tries to load from the specify assembly by name from GAC at first. If it is found from GAC, it won't be loaded from Bin folder any more.
    Since Reporting Service SharePoint Integration mode is installed, a same assembly of 'Microsoft.ReportingServices.SharePoint.ObjectModel' with different version might be installed to the GAC. That causes the error "The located assembly's manifest definition
    does not match the assembly reference."
    For more information about the error message and the loading process, please see:
    http://blogs.msdn.com/b/junfeng/archive/2004/03/25/95826.aspx
    https://msdn.microsoft.com/en-us/library/yx7xezcf(v=vs.100).aspx
    Thanks,
    Jinchun Chen

Maybe you are looking for

  • CX_WD_CONTEXT runtime error.

    Hello Experts: I am getting the following runtime error: "The exception 'CX_WD_CONTEXT' was raised, but it was not caught anywhere along the call hierarchy. Since exceptions represent error situations and this error was not adequately responded to, t

  • Adobe Acrobat 6.0 Standard

    Hello! I have Adobe Acrobat 6.0 Standard in a computer. I want to insert a word 2003 document into a pdf document. I try to do it but without any solution. It started doing something but then you see that there is nothing in the pdf document; in othe

  • Deltas for generic extraction.

    Hi, if i want use time stamp & calday  for my generic extraction , i can use uppercase and lower case, wher can i give timings suppose want run deltas for 10am-10.30am. regards anitha

  • FRAUDULENT REPORTING OF FAILURE TO RETURN EQUIPMENT

    I recently received a notification from Experian that Verizon has reported my account as delinquent due to charges related to failure to return equipment. I returned the equipment in October 2014 and had resolved everything with a Verizon agent in Ja

  • CS5 - Live Caption with Custom XMP Metadata?

    (I USE CS5 on WINDOWS 7) I currently have a custom panel (witch custom namespace) up and running, and have many of my photos correctly tagged. For this example, I opened a new Indesign document, placed a previously tagged JPEG Then I right-click the