IErrorInfo.GetDescription failed with E_FAIL(0x80004005).http://forums.asp.net/t/1798287.aspx/1?IErrorInfo+GetDescription+failed+with+E_FAIL+0x80004005+Mon, 30 Apr 2012 08:00:57 -040017982874957326http://forums.asp.net/p/1798287/4957326.aspx/1?IErrorInfo+GetDescription+failed+with+E_FAIL+0x80004005+IErrorInfo.GetDescription failed with E_FAIL(0x80004005). <p>Guys, im not sure why am i getting this error. I have tried to google it and seems most are about the [] around the field.</p> <p>Here's my code that causing the error, hope someone can rectify it:</p> <pre class="prettyprint">&lt;asp:SqlDataSource ID=&quot;dsGridView&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:MyConn %&gt;&quot; ProviderName=&quot;&lt;%$ ConnectionStrings:MyConn.ProviderName %&gt;&quot; SelectCommand=&quot;SELECT d.[dept_ID], d.[dept_name], c.[costCentre_name], Coalesce(i.Amount, 0) - Coalesce(u.Amount, 0) AS 'balance' FROM department d INNER JOIN costCentre c ON d.[dept_ID] = c.[dept_ID] LEFT JOIN (SELECT cc_ID, Sum(amount) AS 'Amount' FROM monthlyIncome GROUP BY cc_ID) i ON c.[cc_ID]=i.[cc_ID] LEFT JOIN (SELECT cc_ID, Sum(amount) AS 'Amount' FROM utilization GROUP BY cc_ID) u ON c.[cc_ID]=u.[cc_ID]&quot; FilterExpression=&quot;Convert(dept_ID, 'System.String') like '{0}%'&quot;&gt; &lt;FilterParameters&gt; &lt;asp:ControlParameter Name=&quot;dept_ID&quot; ControlID=&quot;ddlDept&quot; PropertyName=&quot;SelectedValue&quot; /&gt; &lt;/FilterParameters&gt; &lt;/asp:SqlDataSource&gt;</pre> <p></p> 2012-04-30T03:33:42-04:004957480http://forums.asp.net/p/1798287/4957480.aspx/1?Re+IErrorInfo+GetDescription+failed+with+E_FAIL+0x80004005+Re: IErrorInfo.GetDescription failed with E_FAIL(0x80004005). <p>Hello,</p> <p>Follow the links below. It will help you to resolve the issue.</p> <p>http://forums.asp.net/t/1225443.aspx/1</p> <p>http://stackoverflow.com/questions/6455909/ierrorinfo-getdescription-failed-with-e-fail0x80004005-system-data-while-data</p> 2012-04-30T06:03:55-04:004957705http://forums.asp.net/p/1798287/4957705.aspx/1?Re+IErrorInfo+GetDescription+failed+with+E_FAIL+0x80004005+Re: IErrorInfo.GetDescription failed with E_FAIL(0x80004005). <p>run your sql query in SSMS with some sample inputs and check if your SQL is working, then we can trouble shoot with Filter Paramter...</p> <p>Thanks,</p> 2012-04-30T08:00:57-04:00