Enterprise Library Database.ExecuteNonQuery hidden performance issues (Connecting to IBM iSeries) - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:09:53Zhttp://stackoverflow.com/feeds/question/497649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/497649/enterprise-library-database-executenonquery-hidden-performance-issues-connecting2Enterprise Library Database.ExecuteNonQuery hidden performance issues (Connecting to IBM iSeries)Jon Erickson2009-01-30T23:17:41Z2009-01-31T00:21:59Z
<p>I was wondering what were the hidden performance implications of using the Database object in the Enterprise Library. I have an OleDbCommand (type=stored procedue) that is calling an IBM iSeries stored procedure that is taking anywhere from 1.5 to 4.5 minutes to complete.</p>
<p>If I manually run the sproc using the iSeries tools and similar parameters then it takes about 5 secs. So the performance slowdown is either in the network communication to the iSeries or something hidden within the Database object within the Enterprise library. Just looking for any ideas.</p>
<pre><code>m_asi = DatabaseFactory.CreateDatabase("ASI-TEST");
using (var cmd = new OleDbCommand())
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = string.Format("{0}.P_VNDR_INV", m_strASISprocCatalog);
cmd.Parameters.Add("@RUN_ENV", OleDbType.Char, 1).Value = strEnvironmentCode;
cmd.Parameters.Add("@SIS_KEY", OleDbType.Char, 36).Value = InvFilter.SISKey;
cmd.Parameters.Add("@FROM_DTE", OleDbType.Char, 8).Value = InvFilter.CheckDateFrom.ToString("yyyyMMdd");
cmd.Parameters.Add("@TO_DTE", OleDbType.Char, 8).Value = InvFilter.CheckDateTo.ToString("yyyyMMdd");
cmd.Parameters.Add("@EXT_Y", OleDbType.Char, 1).Value = (InvFilter.IsExternal ? "Y" : "N");
cmd.Parameters.Add("@INC_Y", OleDbType.Char, 1).Value = (InvFilter.IncludeASI ? "Y" : "N");
cmd.Parameters.Add("@VND_ID", OleDbType.Char, 1800).Value = InvFilter.GetVendorQueryString(18, 1800);
// This call is the bottleneck
m_asi.ExecuteNonQuery(cmd);
}
</code></pre>
http://stackoverflow.com/questions/497649/enterprise-library-database-executenonquery-hidden-performance-issues-connecting/497664#4976641Answer by Marc Gravell for Enterprise Library Database.ExecuteNonQuery hidden performance issues (Connecting to IBM iSeries)Marc Gravell2009-01-30T23:21:54Z2009-01-30T23:21:54Z<p>I would <em>expect</em> it to be some bizarre setting that is different from the iSeries tools and the .NET client - for example:</p>
<ul>
<li>transaction mode?</li>
<li>ansi settings?</li>
<li>other connection options? (for SQL Server, I'd mean things like SET CONCAT_NULL_YIELDS_NULL, etc)</li>
</ul>
<p>I don't know much about iSeries, but with SQL Server, for example, it can only use "indexed persisted calculated" columns if everything is just right; otherwise it re-computes the formula per row.</p>
<p>Have you tried a trace?</p>