User Theo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T20:17:32Zhttp://stackoverflow.com/feeds/user/43402http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/344665/get-most-common-value-in-sql/345221#3452210Answer by Theo for Get most common value in SQLTheo2008-12-05T21:31:29Z2008-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#3451250Answer by Theo for What should 'Computer Science' be called?Theo2008-12-05T21:02:41Z2008-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#3451210Answer by Theo for Select unique XElements (by attribute) with a filter using LinqToXmlTheo2008-12-05T21:00:11Z2008-12-05T21:00:11Z<pre><code> XElement ele = XElement.Parse(@"<items><item cat=""1"" owner=""14"">bla</item><item cat=""1"" owner=""9"">bla</item>" +
@"<item cat=""1"" owner=""14"">bla</item><item cat=""2"" owner=""12"">bla</item>" +
@"<item cat=""2"" owner=""12"">bla</item></items>");
int cat = 1;
List<int> owners = ele.Elements("item")
.Where(x=>x.Attribute("cat").Value==cat.ToString()).Select(x=>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#3450400Answer by Theo for Select unique XElements (by attribute) with a filter using LinqToXmlTheo2008-12-05T20:36:48Z2008-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#3450151Answer by Theo for Smart clients easier to maintain than web apps?Theo2008-12-05T20:24:30Z2008-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#3442261Answer by Theo for Good F# Asynchronous IO SampleTheo2008-12-05T15:42:07Z2008-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#3434952Answer by Theo for C# 3.0 Auto-Properties - useful or not?Theo2008-12-05T10:59:42Z2008-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#3433984Answer by Theo for Bulk Insert to Oracle using .NETTheo2008-12-05T10:17:41Z2008-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 < 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 < 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#3433792Answer by Theo for Bulk Insert to Oracle using .NETTheo2008-12-05T10:06:09Z2008-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#3433093Answer by Theo for Bulk Insert to Oracle using .NETTheo2008-12-05T09:30:29Z2008-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#3431690Answer by Theo for Why software engineer are so egoist to learn new languages & stuffsTheo2008-12-05T08:05:41Z2008-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#3424830Answer by Theo for Why and When to use LINQ ?Theo2008-12-04T23:56:58Z2008-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<> and dictionairies<,> . 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#3424570Answer by Theo for IronPython For Unit Testing over C#Theo2008-12-04T23:36:58Z2008-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#3424410Answer by Theo for What language should I learn to give me something very different from C#?Theo2008-12-04T23:29:27Z2008-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#3423880Answer by Theo for Null Pointer when populating Grails Domain object with Oracle 10g long fieldTheo2008-12-04T22:57:55Z2008-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#3423530Answer by Theo for Should application users be database users?Theo2008-12-04T22:40:42Z2008-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#342353Comment by Theo on Should application users be database users?Theo2008-12-05T08:21:30Z2008-12-05T08:21:30ZThe 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.