User keithwarren7 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:19:56Z http://stackoverflow.com/feeds/user/40714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1793575/sql-server-2008-performance-question/1793736#1793736 0 Answer by keithwarren7 for SQL Server 2008 Performance Question keithwarren7 2009-11-24T23:39:02Z 2009-11-24T23:39:02Z <p>There are so many questions that could be asked relating to disk IO, size of the columns and other setup related things. Bottom line unless you are on a really really slow disk and slow network it should not take 12 minutes.</p> <p>The first place to look is at the Execution plan. This should give you an idea of how SQL Server is handling things.</p> <p>Couple things I would ask to better troubleshoot? Is there a primary key? Is it clustered? Is there an order by?</p> http://stackoverflow.com/questions/1455022/ssrs2005-user-reports/1716142#1716142 0 Answer by keithwarren7 for SSRS2005 User Reports keithwarren7 2009-11-11T15:58:36Z 2009-11-11T15:58:36Z <p>You should be able to change the data source which is decoupled from the report data itself.</p> http://stackoverflow.com/questions/1715131/the-future-of-ssrs/1715197#1715197 0 Answer by keithwarren7 for The future of SSRS keithwarren7 2009-11-11T13:35:03Z 2009-11-11T13:35:03Z <p>No future feature list for SSRS exists other than what is known about R2; the engine underwent a major overhaul in 2005 so I would not expect significant new features until the vNext.Next - that said if you look at some of the momentum in various areas you might get an idea of what to expect. New mapping related functionality, more interactive reporting (maybe a silverlight play), more robust export options and finer grained control over data processing.</p> <p>What features do you need? They may already be implemented by a third party or they could be something you could create a CRI for...</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712509#1712509 2 Answer by keithwarren7 for What's your take on the programming language Go? keithwarren7 2009-11-11T01:56:38Z 2009-11-11T01:56:38Z <p>This language, as Rob says in the google tech talk is meant as a systems language. Realistically the number of true systems programmers in the dev ecosystem is probably less than 5% of the whole. Dont get me wrong, I LOVE the fast compile time etc but what is needed is a language that is simple, that reduces the complexity of the development process. I dont know that there is a silver bullet. I think Ted Neward hit the nail on the head in a discussion about Agile - "We are in desperate need of simplicity in this industry. Whoever gets that, and gets it right, defines the "Next Big Thing"." I think that in that context GO is yet another language and not the next big thing we are looking for.</p> <p><a href="http://blogs.tedneward.com/2009/10/12/quotAgile+Is+Treating+The+Symptoms+Not+The+Diseasequot.aspx" rel="nofollow">http://blogs.tedneward.com/2009/10/12/quotAgile+Is+Treating+The+Symptoms+Not+The+Diseasequot.aspx</a></p> http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value 0 Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:05:01Z 2009-11-10T21:19:10Z <p>For some context, the record class SaleAmount property is</p> <pre><code>public decimal? SaleAmount { get; set; } </code></pre> <p>Ideally I would go with this</p> <pre><code>record.SaleAmount.Value = sql.Reader.IsDBNull(IDX_SALEAMOUNT) ? null : sql.Reader.GetDecimal(IDX_SALEAMOUNT); </code></pre> <p>Alas the compiler and this are not friends because...</p> <p><em>Type of conditional expression cannot be determined because there is no implicit conversion between '' and 'decimal'</em></p> <p>So how would you express this elegantly, and dont play the obvious card like below...</p> <pre><code>if (!sql.Reader.IsDBNull(IDX_SALEAMOUNT)) record.SaleAmount = sql.Reader.GetDecimal(IDX_SALEAMOUNT); </code></pre> <p>Or is above the best solution?</p> http://stackoverflow.com/questions/1710908/reporting-services-2008-can-you-link-2-datasets-together/1710929#1710929 0 Answer by keithwarren7 for Reporting Services 2008 - Can you link 2 datasets together? keithwarren7 2009-11-10T20:23:07Z 2009-11-10T20:23:07Z <p>If you must join them somehow you can look at writing a custom data processing extension. This also may be a more elegant method than a custom assembly as it fits the architecture a little better.</p> <p><a href="http://technet.microsoft.com/en-us/library/ms152816.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/ms152816.aspx</a></p> http://stackoverflow.com/questions/1700903/sql-performance-issue-for-in-and-or/1700910#1700910 1 Answer by keithwarren7 for SQL performance issue for IN and OR keithwarren7 2009-11-09T13:13:54Z 2009-11-09T13:13:54Z <p>Those are logically the same...both (assuming your ID column is the PK) will perform an index seek.</p> <p>An easy way to understand how SQL treats queries like this is to click the button in the toolbar in SSMS to the right of the 'Execute' button called 'Display Estimated Execution Plan'. There is also an option to show the actual plan when you execute. Either way this will let you see how SQL Server breaks down the query into smaller parts. This is the most important tool in tuning a query.</p> http://stackoverflow.com/questions/1675689/what-c-features-would-be-removed-if-backwards-compatibility-were-not-an-issue/1675705#1675705 0 Answer by keithwarren7 for What C# features would be removed if backwards compatibility were not an issue? keithwarren7 2009-11-04T18:21:03Z 2009-11-04T18:21:03Z <p>Wow, I seriously could not think of any. That says something.</p> http://stackoverflow.com/questions/1654809/copy-table-and-merge-field/1654819#1654819 3 Answer by keithwarren7 for Copy Table and Merge field keithwarren7 2009-10-31T16:11:29Z 2009-10-31T16:41:20Z <p>The appended text actually needs to be in the SELECT statement so it would look more like</p> <pre><code>Insert Into [dSCHEMA].[TABLE_COPY_TO] (FieldA, FieldB, FieldC) Select FieldA, FieldB, FieldA + '-' + FieldB From [dSCHEMA].[TABLE_COPY_FROM] </code></pre> http://stackoverflow.com/questions/1651589/sql-server-table-not-updated-with-linq/1651609#1651609 0 Answer by keithwarren7 for Sql Server table not updated with LINQ keithwarren7 2009-10-30T18:43:26Z 2009-10-30T18:43:26Z <p>Can you trace the query to see what L2S is generating? What does that query look like? Can you get an update to occur by executing that directly into SSMS?</p> <p>Are there other outside influences? I have seen this issue before where a TRIGGER was preventing the update.</p> http://stackoverflow.com/questions/1647736/t-sql-group-by-with-like-is-this-possible/1647753#1647753 1 Answer by keithwarren7 for T-SQL - GROUP BY with LIKE - is this possible? keithwarren7 2009-10-30T02:52:57Z 2009-10-30T02:52:57Z <p>I dont believe so, LIKE is effectively a binary state - something is LIKE or NOT LIKE, there are not logical degrees of 'likeness' that could be grouped together. Then again, I could be off my rocker.</p> <p>If what you really want is to express filtering over your grouped data take a look at the HAVING clause.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms180199.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms180199.aspx</a></p> http://stackoverflow.com/questions/1645379/auto-increment-ids-in-net/1645389#1645389 5 Answer by keithwarren7 for Auto increment Id's in .net keithwarren7 2009-10-29T17:41:01Z 2009-10-29T17:57:06Z <p>I am assuming your application is not stateful, meaning it will be started and stopped several times.</p> <p>I would consider using an Application Setting which in a standard .NET project is an option available to you that is read/write. The value can be strongly typed and will be stored in the application configuration file.</p> <p>Examples: <a href="http://msdn.microsoft.com/en-us/library/aa730869%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa730869%28VS.80%29.aspx</a></p> http://stackoverflow.com/questions/1638775/very-long-build-time-in-visual-studio/1638903#1638903 2 Answer by keithwarren7 for Very long build time in Visual Studio. keithwarren7 2009-10-28T17:45:54Z 2009-10-28T17:45:54Z <p>Try turning on verbose logging for the build</p> <p>Tools...Options...Projects and Solutions...Build and Run..."MSBuild project build output verbosity"</p> <p>This should help you get a better picture of what is going on.</p> http://stackoverflow.com/questions/1637901/best-practise-when-updating-individual-fields-in-a-database-record/1637949#1637949 6 Answer by keithwarren7 for Best practise when updating individual fields in a database record keithwarren7 2009-10-28T15:20:47Z 2009-10-28T15:20:47Z <p>Premature optimization is the root of all evil.</p> <p>Is there justification for this, do you actually have a bandwidth problem? </p> <p>In my experience, tracking changes can be lots of work (ie lots of code to maintain) depending on how it is implemented. There are some elegant ways but I think what you are doing is fine unless there is some evidence to support a change.</p> <p>If you were planning to implement some custom form of change tracking I would certainly not 'chat' with the database about it. Make a copy of your object locally when you first pull it from the DB and compare against that. </p> http://stackoverflow.com/questions/1631572/linq-to-sql-associations/1631600#1631600 0 Answer by keithwarren7 for Linq To Sql Associations keithwarren7 2009-10-27T15:27:12Z 2009-10-27T15:27:12Z <p>What are the field types for your database fields? Some are not supported by L2S. Are they showing up in the tables when you drop onto the dbml surface?</p> http://stackoverflow.com/questions/1625259/slow-to-none-performance-on-sql-2005-after-attaching-sql-2000-database/1625295#1625295 0 Answer by keithwarren7 for Slow (to none) performance on SQL 2005 after attaching SQL 2000 database keithwarren7 2009-10-26T14:52:39Z 2009-10-26T19:10:04Z <p>You need to go back to the 2000 server, run a full backup and then restore that to 2005. </p> http://stackoverflow.com/questions/1626200/net-runtime-2-0-error-on-net-3-5-application/1626208#1626208 2 Answer by keithwarren7 for .NET Runtime 2.0 Error on .NET 3.5 application keithwarren7 2009-10-26T17:39:05Z 2009-10-26T17:39:05Z <p>You are correct on both points.</p> http://stackoverflow.com/questions/1625363/populating-a-gridview-from-a-datatable/1625394#1625394 0 Answer by keithwarren7 for Populating a GridView from a DataTable keithwarren7 2009-10-26T15:09:01Z 2009-10-26T15:09:01Z <p>You are referencing two completely different tables. You create the Table USERS then add columns to a table called ADD USERS then add rows to the Users table. Nothing will show up when you bind this.</p> <p>Change this code </p> <pre><code>ds.Tables["Add Users"].Columns.Add("ID"); ds.Tables["Add Users"].Columns.Add("Name"); ds.Tables["Add Users"].Columns.Add("Email"); </code></pre> <p>to this</p> <pre><code>ds.Tables["Users"].Columns.Add("ID"); ds.Tables["Users"].Columns.Add("Name"); ds.Tables["Users"].Columns.Add("Email"); </code></pre> http://stackoverflow.com/questions/1625159/need-advice-on-creating-a-new-asp-net-application/1625236#1625236 4 Answer by keithwarren7 for Need advice on creating a new ASP.NET application keithwarren7 2009-10-26T14:44:04Z 2009-10-26T14:44:04Z <p>The control market around web forms is quite a bit more mature than MVC so tools from companies like Telerik, Devexpress, Infragistics will have a more mature implementation and broader base of support. Most all of those will do the things you mentioned across major browsers.</p> <p>THAT SAID...</p> <p>Consider MVC, when you put an application into the field it will probably be there for many many years, regardless of what you may think; now there is a good chance it might still be used in 10 years so make a decision like this with an eye to the future. MVC and jQuery make a powerful combo that can afford you rich functionality often commensurate with what the third party control vendors put out.</p> <p>As far as design template, there are several sites like TemplateMonster which can give you a jump start.</p> http://stackoverflow.com/questions/1591816/how-does-one-indicate-the-default-connection-string-for-enterprise-library/1591832#1591832 0 Answer by keithwarren7 for How does one indicate the "default" connection string for Enterprise Library? keithwarren7 2009-10-20T00:20:20Z 2009-10-20T00:20:20Z <p><strong>YOu should define the dataConfiguration section in your config</strong></p> <pre><code>&lt;configuration&gt; &lt;configSections&gt; &lt;section name="dataConfiguration" ... </code></pre> <p><strong>And then set the value</strong></p> <pre><code>&lt;dataConfiguration defaultDatabase="ConnectionStringName" /&gt; </code></pre> http://stackoverflow.com/questions/1582948/asp-net-application-time-and-cost-estimate/1582957#1582957 0 Answer by keithwarren7 for ASP.NET Application - Time and Cost estimate keithwarren7 2009-10-17T19:03:21Z 2009-10-17T19:03:21Z <p>Such a thing does not exist, that is based on your requirements. The technology you use should have almost no factor in the timing</p> http://stackoverflow.com/questions/1582930/asp-net-application-architecture-and-class-diagrams/1582951#1582951 0 Answer by keithwarren7 for ASP.NET Application - Architecture and Class Diagrams keithwarren7 2009-10-17T19:02:21Z 2009-10-17T19:02:21Z <p>This may be the best collection you will find... <a href="http://www.asp.net/get-started/" rel="nofollow">http://www.asp.net/get-started/</a></p> http://stackoverflow.com/questions/1575889/hire-or-no-hire/1575901#1575901 1 Answer by keithwarren7 for Hire or No Hire ? keithwarren7 2009-10-16T00:44:01Z 2009-10-16T00:44:01Z <p>well that is entirely subjective, it would really depend on the nature of the job and what you really mean by engineer....since you provide no context I shall respond with questions lacking the same.</p> <p>What would you say is the most significant advancement in software development in the past 10 years and why? Please cite examples and support your opinions with evidence.</p> <p>What is the most influential technical book you have read in your career? </p> <p>What technology area do you think will be the most influential to the advancement of economies and society as a whole in the next 25 years and why?</p> http://stackoverflow.com/questions/1575055/mysql-foreach/1575072#1575072 4 Answer by keithwarren7 for MySQL foreach ? keithwarren7 2009-10-15T21:05:26Z 2009-10-15T21:05:26Z <p>try a pattern similar to this</p> <pre><code>INSERT INTO logs (blah,blah) SELECT foo,bar from Users </code></pre> <p>You should also read into something called Correlated subqueries if you need some type of logical connection between the two statements</p> http://stackoverflow.com/questions/1570112/how-can-i-replace-a-value-within-a-sql-select-which-returns-multiple-rows/1570135#1570135 1 Answer by keithwarren7 for How can I replace a value within a Sql Select which returns multiple rows? keithwarren7 2009-10-15T03:25:40Z 2009-10-15T03:25:40Z <p>Couple other options for null...</p> <p>ISNULL and COALESCE</p> http://stackoverflow.com/questions/1545937/net-and-sql-server-diagnostics/1545974#1545974 3 Answer by keithwarren7 for .Net and SQL Server Diagnostics keithwarren7 2009-10-09T20:47:16Z 2009-10-09T20:47:16Z <p>One easy thing you can do is make sure your connection strings take advantage of the "Application Name" element. </p> <pre><code>Server=OurSqlServer;Database=AppDB;Integrated Security=SSPI;Application Name=Our Application Name </code></pre> <p>When you look at things like profiling this will be much easier to differentiate.</p> <p>Another good practice would be to ensure each app is connecting with it's own set of credentials.</p> http://stackoverflow.com/questions/1540010/ssrs-2005-parameter-based-security/1540047#1540047 1 Answer by keithwarren7 for SSRS 2005 Parameter Based Security keithwarren7 2009-10-08T19:53:44Z 2009-10-08T20:39:16Z <p>What is your security apparatus here? It seems to me a solid and secure solution would be to drive the access to data based on the user account. How is the report data gathered? Is it SELECT directly in your data set? Are you calling procedures? selecting against a view?</p> <p>EDIT: Since you are selecting against a VIEW which unions the respective company data, if you grant rights to the views to the users or roles which have access you may be able to create a scenario where the data is returned to the user based on their rights. </p> http://stackoverflow.com/questions/1537836/mssql-does-the-order-by-clause-recalculate-the-value/1537855#1537855 1 Answer by keithwarren7 for MSSQL: Does the Order By clause recalculate the value? keithwarren7 2009-10-08T13:38:28Z 2009-10-08T13:38:28Z <p>It will only does the sort once, the engine itself can sort by an alias name you give the column</p> <pre><code>SELECT EmployeeName, (SELECT COUNT(*) FROM Employee e2 WHERE MgrID = Employee.EmployeeID) FROM Employee ORDER BY (SELECT COUNT(*) FROM Employee e2 WHERE MgrID = Employee.EmployeeID) </code></pre> <p>could also be expressed like</p> <pre><code>SELECT EmployeeName, (SELECT COUNT(*) FROM Employee e2 WHERE MgrID = Employee.EmployeeID) MyField FROM Employee ORDER BY myField </code></pre> <p>The engine will do basically the same thing, giving a temporary name to your column to use in the order by clause.</p> http://stackoverflow.com/questions/485901/what-reporting-platform-do-you-prefer/485941#485941 6 Answer by keithwarren7 for What reporting platform do you prefer? keithwarren7 2009-01-28T00:17:30Z 2009-10-06T21:10:15Z <p>I feel like <a href="http://www.microsoft.com/sqlserver/2008/en/us/reporting.aspx" rel="nofollow">SSRS 2008</a> gives you the most flexibility - every property, every field, every element is extensible through the expression language. You can write .net assemblies to call into from expressions and if you need more power they provide several interfaces for extending security, data processing and rendering. </p> <p>Best of all it is 'free' when you have SQL Server.</p> http://stackoverflow.com/questions/1517527/what-is-the-difference-between-and-go-in-tsql-sql-2008/1517553#1517553 6 Answer by keithwarren7 for What is the difference between ";" and "GO" in TSQL (SQL 2008) ? keithwarren7 2009-10-04T22:25:13Z 2009-10-04T22:25:13Z <p>GO is not actually a T-SQL command, it was something introduced by the tools as a way to separate batch statements such as the end of a stored procedure. It is supported by the MS SQL stack tools but not formally part of other tools.</p> <p>You cannot put a GO into a string of SQL and send it as part of a ADO.NET command object as SQL itself doesnt understand the term. Another way to demonstrate this is with the profiler, setup some statements that use GO in Query Analyzer/Management Studio and then run the profiler when you execute - you will see they are issued as separate commands to the server.</p> <p>The semi-colon is used to signify the end of a statement itself, not necessarily a whole batch.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms188037.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms188037.aspx</a></p> http://stackoverflow.com/questions/1793575/sql-server-2008-performance-question/1793713#1793713 Comment by keithwarren7 on SQL Server 2008 Performance Question keithwarren7 2009-11-24T23:47:52Z 2009-11-24T23:47:52Z OK, I agree but SO wont let me give you back the vote down. Sorry. http://stackoverflow.com/questions/1793575/sql-server-2008-performance-question/1793713#1793713 Comment by keithwarren7 on SQL Server 2008 Performance Question keithwarren7 2009-11-24T23:40:11Z 2009-11-24T23:40:11Z I must be missing a /sarcasm tag or something http://stackoverflow.com/questions/1793575/sql-server-2008-performance-question/1793713#1793713 Comment by keithwarren7 on SQL Server 2008 Performance Question keithwarren7 2009-11-24T23:36:26Z 2009-11-24T23:36:26Z What? finely tuned and running optimally can deliver 3.4 in about 12 minutes? Are you serious? Try less than 12 seconds. -1 http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712517#1712517 Comment by keithwarren7 on What's your take on the programming language Go? keithwarren7 2009-11-11T18:59:04Z 2009-11-11T18:59:04Z I just thought it funny how Rob kept going out of the way to avoid mentioning C#/.NET http://stackoverflow.com/questions/1715690/what-are-some-programming-interview-questions-which-give-a-good-indication-of-one/1715708#1715708 Comment by keithwarren7 on What are some programming interview questions which give a good indication of one's ability? keithwarren7 2009-11-11T15:02:09Z 2009-11-11T15:02:09Z While I think most people could do this, I dont see how it has much bearing to the common problems faced in line of business application development in this day and age. http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710917#1710917 Comment by keithwarren7 on Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:29:31Z 2009-11-10T20:29:31Z I agree it would make for cleaner code but the others are right, someone can sell for zero and null means it hasnt sold. http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710877#1710877 Comment by keithwarren7 on Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:26:20Z 2009-11-10T20:26:20Z I hate it that the rich keep getting richer and I really want to give someone other than Skeet the win on this...maybe someone should copy this answer and mod it just a tad so I can give them the check mark! http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710832#1710832 Comment by keithwarren7 on Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:20:22Z 2009-11-10T20:20:22Z which makes me think that Skeet's idea of an extension method may make the most sense since it would be most evident and readable. But I refuse to give him the check mark, he has too many points! http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710866#1710866 Comment by keithwarren7 on Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:15:31Z 2009-11-10T20:15:31Z <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.getdecimal.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> See the remarks section, it should throw an InvalidCastException if it is not actually a decimal http://stackoverflow.com/questions/1710812/elegant-syntax-for-assigning-value-from-possibly-null-db-value/1710832#1710832 Comment by keithwarren7 on Elegant syntax for assigning value from possibly null db value keithwarren7 2009-11-10T20:12:48Z 2009-11-10T20:12:48Z My only problem with approach two is it isnt totally evident to a JR programmer (people will have to maintain this after all); it actually takes a second to digest that we are only assigning when there is a value and just leaving it untouched otherwise. I know this seems trivial but trust me, people get confused over the simple stuff. http://stackoverflow.com/questions/1675689/what-c-features-would-be-removed-if-backwards-compatibility-were-not-an-issue/1675705#1675705 Comment by keithwarren7 on What C# features would be removed if backwards compatibility were not an issue? keithwarren7 2009-11-04T20:55:45Z 2009-11-04T20:55:45Z I am honestly not quite sure :) But I will defend myself by saying that the majority of answers are BCL issues not language issues, sad that people dont know the difference. http://stackoverflow.com/questions/1645407/excessive-space-required-for-sql-server-bak-restore/1645423#1645423 Comment by keithwarren7 on Excessive space required for SQL Server .bak restore keithwarren7 2009-10-29T19:13:25Z 2009-10-29T19:13:25Z No, unfortunately you cant. http://stackoverflow.com/questions/1645407/excessive-space-required-for-sql-server-bak-restore/1645423#1645423 Comment by keithwarren7 on Excessive space required for SQL Server .bak restore keithwarren7 2009-10-29T18:26:00Z 2009-10-29T18:26:00Z There are maintenance plan options for shrinking it but it really depends on your operational needs. Shrinking will lose transactional data from the past but if that is not of concern to you then it is something you can consider. http://stackoverflow.com/questions/1625259/slow-to-none-performance-on-sql-2005-after-attaching-sql-2000-database/1625295#1625295 Comment by keithwarren7 on Slow (to none) performance on SQL 2005 after attaching SQL 2000 database keithwarren7 2009-10-26T19:09:46Z 2009-10-26T19:09:46Z I stand corrected, edit made. http://stackoverflow.com/questions/1625159/need-advice-on-creating-a-new-asp-net-application/1625236#1625236 Comment by keithwarren7 on Need advice on creating a new ASP.NET application keithwarren7 2009-10-26T14:49:28Z 2009-10-26T14:49:28Z Agreed. Just thought I would throw out both points to consider.