User Theo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:17:32Z http://stackoverflow.com/feeds/user/43402 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/344665/get-most-common-value-in-sql/345221#345221 0 Answer by Theo for Get most common value in SQL Theo 2008-12-05T21:31:29Z 2008-12-05T21:31:29Z <pre><code>select country,food_id, count(*) ne from food f1 group by country,food_id having count(*) = (select max(count(*)) from food f2 where country = f1.country group by food_id) </code></pre> http://stackoverflow.com/questions/345080/what-should-computer-science-be-called/345125#345125 0 Answer by Theo for What should 'Computer Science' be called? Theo 2008-12-05T21:02:41Z 2008-12-05T21:02:41Z <p>In the Netherlands it is called informatica. </p> http://stackoverflow.com/questions/345025/select-unique-xelements-by-attribute-with-a-filter-using-linqtoxml/345121#345121 0 Answer by Theo for Select unique XElements (by attribute) with a filter using LinqToXml Theo 2008-12-05T21:00:11Z 2008-12-05T21:00:11Z <pre><code> XElement ele = XElement.Parse(@"&lt;items&gt;&lt;item cat=""1"" owner=""14""&gt;bla&lt;/item&gt;&lt;item cat=""1"" owner=""9""&gt;bla&lt;/item&gt;" + @"&lt;item cat=""1"" owner=""14""&gt;bla&lt;/item&gt;&lt;item cat=""2"" owner=""12""&gt;bla&lt;/item&gt;" + @"&lt;item cat=""2"" owner=""12""&gt;bla&lt;/item&gt;&lt;/items&gt;"); int cat = 1; List&lt;int&gt; owners = ele.Elements("item") .Where(x=&gt;x.Attribute("cat").Value==cat.ToString()).Select(x=&gt;Convert.ToInt32(x.Attribute("owner").Value)).Distinct().ToList(); </code></pre> http://stackoverflow.com/questions/345025/select-unique-xelements-by-attribute-with-a-filter-using-linqtoxml/345040#345040 0 Answer by Theo for Select unique XElements (by attribute) with a filter using LinqToXml Theo 2008-12-05T20:36:48Z 2008-12-05T20:36:48Z <p>How can you do LINQ without lambdas? Lambdas are a key element of LINQ. What's wrong with lambdas? </p> http://stackoverflow.com/questions/345001/smart-clients-easier-to-maintain-than-web-apps/345015#345015 1 Answer by Theo for Smart clients easier to maintain than web apps? Theo 2008-12-05T20:24:30Z 2008-12-05T20:24:30Z <p>Maybe the tide is changing to silverlight? </p> <p>But the deployment of smart clients is often quite easy (clickonce). </p> http://stackoverflow.com/questions/343733/good-f-asynchronous-io-sample/344226#344226 1 Answer by Theo for Good F# Asynchronous IO Sample Theo 2008-12-05T15:42:07Z 2008-12-05T15:42:07Z <p>In this video cast <a href="http://channel9.msdn.com/pdc2008/TL11/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL11/</a> Luca Bolognese explain F#, including async file reading and parallel map reduce. </p> <p>I hope it helps. </p> http://stackoverflow.com/questions/9304/c-3-0-auto-properties-useful-or-not/343495#343495 2 Answer by Theo for C# 3.0 Auto-Properties - useful or not? Theo 2008-12-05T10:59:42Z 2008-12-05T10:59:42Z <p>I always create properties instead of public fields because you can use properties in an interface definition, you can't use public fields in an interface definition. </p> http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net/343398#343398 4 Answer by Theo for Bulk Insert to Oracle using .NET Theo 2008-12-05T10:17:41Z 2008-12-05T10:17:41Z <p>The solution of Rob Stevenson-Legget is slow because he doesn't bind his values but he uses string.Format( ). </p> <p>When you ask Oracle to execute a sql statement it starts with calculating the has value of this statement. After that it looks in a hash table whether it already knows this statement. If it already knows it statement it can retrieve its execution path from this hash table and execute this statement really fast because Oracle has executed this statement before. This is called the library cache and it doesn't work properly if you don't bind your sql statements. </p> <p>For example don't do:</p> <p>int n;</p> <pre><code> for (n = 0; n &lt; 100000; n ++) { mycommand.CommandText = String.Format("INSERT INTO [MyTable] ([MyId]) VALUES({0})", n + 1); mycommand.ExecuteNonQuery(); } </code></pre> <p>but do:</p> <pre><code> OracleParameter myparam = new OracleParameter(); int n; mycommand.CommandText = "INSERT INTO [MyTable] ([MyId]) VALUES(?)"; mycommand.Parameters.Add(myparam); for (n = 0; n &lt; 100000; n ++) { myparam.Value = n + 1; mycommand.ExecuteNonQuery(); } </code></pre> <p>Not using parameters can also cause sql injection. </p> http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net/343379#343379 2 Answer by Theo for Bulk Insert to Oracle using .NET Theo 2008-12-05T10:06:09Z 2008-12-05T10:06:09Z <p>A really fast way to solve this problem is to make a database link from the Oracle database to the MySQL database. You can create database links to non-Oracle databases. After you have created the database link you can retrieve your data from the MySQL database with a ... create table mydata as select * from ... statement. This is called heterogeneous connectivity. This way you don't have to do anything in your .net application to move the data. </p> <p>Another way is to use ODP.NET. In ODP.NET you can use the OracleBulkCopy-class. </p> <p>But I don't think that inserting 160k records in an Oracle table with System.Data.OracleClient should take 25 minutes. I think you commit too many times. And do you bind your values to the insert statement with parameters or do you concatenate your values. Binding is much faster. </p> http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net/343309#343309 3 Answer by Theo for Bulk Insert to Oracle using .NET Theo 2008-12-05T09:30:29Z 2008-12-05T09:30:29Z <p>You should not commit every insert because committing takes a lot of time. </p> <p>Which provider do you use to connect your .NET app to the oracle database? Do you use ODP.NET or the Devart provider (aka as corelab provider) or do you use the Microsoft provider for Oracle (System.Data.OracleClient)? </p> http://stackoverflow.com/questions/342993/why-software-engineer-are-so-egoist-to-learn-new-languages-stuffs/343169#343169 0 Answer by Theo for Why software engineer are so egoist to learn new languages & stuffs Theo 2008-12-05T08:05:41Z 2008-12-05T08:05:41Z <p>If you want to learn new things you need a strategy. I have chosen a wrong strategy the last 8 months. </p> <p>I studied a little bit of ASP.NET, a little bit of CSS, a little bit of JavaScript, a little bit of Ruby, a little bit of XSLT, a little bit of the Semantic Web, a little bit of Text Mining, a little bit of WCF and even a little bit of F#. </p> <p>Now I'm tired, I need to rest and after that I need to focus more on one subject to understand it more deeply. But I have learned LINQ and that's great. </p> http://stackoverflow.com/questions/339639/why-and-when-to-use-linq/342483#342483 0 Answer by Theo for Why and When to use LINQ ? Theo 2008-12-04T23:56:58Z 2008-12-04T23:56:58Z <p>LINQ is some kind of universal query language. If you learn it you don't have to limit yourself to the database but you can also use it to manipulate XML files, or JSON files or arrays, Lists&lt;> and dictionairies&lt;,> . It's great. </p> <p>There is even LinqToFlickr, LinqToExcel and LinqToGoogle. It is much more than an OR mapper. See: <a href="http://blogs.msdn.com/charlie/archive/2008/02/28/link-to-everything-a-list-of-linq-providers.aspx" rel="nofollow">http://blogs.msdn.com/charlie/archive/2008/02/28/link-to-everything-a-list-of-linq-providers.aspx</a> </p> http://stackoverflow.com/questions/340128/ironpython-for-unit-testing-over-c/342457#342457 0 Answer by Theo for IronPython For Unit Testing over C# Theo 2008-12-04T23:36:58Z 2008-12-04T23:36:58Z <p>Very interesting. </p> <p>What would happen if you write all your code with IronPython (not just the unit tests)? Would you end up with approximately 10 times less code? </p> <p>Maybe I should learn IronPython too. </p> http://stackoverflow.com/questions/340167/what-language-should-i-learn-to-give-me-something-very-different-from-c/342441#342441 0 Answer by Theo for What language should I learn to give me something very different from C#? Theo 2008-12-04T23:29:27Z 2008-12-04T23:29:27Z <p>Maybe F# or the Semantic Web. The Semantic Web is not really a language but it changes your world view. Or learn JavaScript closures. </p> http://stackoverflow.com/questions/340837/null-pointer-when-populating-grails-domain-object-with-oracle-10g-long-field/342388#342388 0 Answer by Theo for Null Pointer when populating Grails Domain object with Oracle 10g long field Theo 2008-12-04T22:57:55Z 2008-12-04T22:57:55Z <p>Why do you use a long field in Oracle? Long is very obsolete, you should use a clob. </p> http://stackoverflow.com/questions/341271/should-application-users-be-database-users/342353#342353 0 Answer by Theo for Should application users be database users? Theo 2008-12-04T22:40:42Z 2008-12-04T22:40:42Z <p>*not a good idea if the RDBMS contains: * any information covered by HIPAA or Sarbanes-Oxley or The Official Secrets Act (UK) * credit card information or other customer credit info (POs, lines of credit etc) * personal information (ssn, dob, etc) * competitive, proprietary, or IP information*</p> <p>Not true, one can perfectly manage which data a database user can see and which data it can modify. A database (at least Oracle) can also audit all activities, including selects. To have thousands of database users is also perfectly normal. </p> <p>It is more difficult to build good secure applications because you have to program this security, a database offers this security and you can configure it in a declarative way, no code required. </p> http://stackoverflow.com/questions/341271/should-application-users-be-database-users/342353#342353 Comment by Theo on Should application users be database users? Theo 2008-12-05T08:21:30Z 2008-12-05T08:21:30Z The designers, the architects and the DBAs can design a data security strategy together. Don't talk with your DBAs too late. To make an application more user friendly it should be impossible to change data in the form that the user is not allowed to change in the database.