User Dave - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T11:20:32Zhttp://stackoverflow.com/feeds/user/13846http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175131/using-stored-procedures-for-calculations1Using stored procedures for calculations.Dave2008-10-06T16:48:18Z2008-10-08T15:11:59Z
<p>I am currently working on a project that will store specific financial information about our clients in a MS SQL database. Later, our users need to be able to query the database to return data from the clients based on certain criteria (eg. clients bigger then a certain size, clients in a certain geographical location) and total it to use as a benchmark. The database will be accessed by our financial software using a script.</p>
<p>I am currently writing the stored procedures for the database. What I am planning on doing is writing several different stored procedures based on the different types of criteria that can be used. They will return the client numbers.</p>
<p>The actual question I have is on the method of retrieving the data. I need to do several different calculations with the clients data. Is it better practice to have different stored procedures to do the calculation based on the client number and return the result or is it better to just have a stored procedure return all the information about the client and perform the calculations in the script?</p>
<p>Performance could be an issue because there will be a lot of clients in the database so I want the method to be reasonably efficient.</p>
http://stackoverflow.com/questions/180549/learn-c-first-before-learning-objective-c/180562#1805621Answer by Dave for Learn C first before learning Objective-CDave2008-10-07T21:41:03Z2008-10-07T21:41:03Z<p>Depending on many languages you already know it may be a better idea to just start learning Objective-C. The foundation in most languages are basically the same, it's the syntax that is different. Learning C first isn't really going to make much of a difference when it comes to learning Objective-C.</p>
http://stackoverflow.com/questions/122531/what-are-some-problems-old-c-textbooks-may-have2What are some problems old C++ textbooks may have?Dave2008-09-23T17:39:55Z2008-09-23T19:59:45Z
<p>I've been trying to pick up C++ and I have an old textbook a professor gave me awhile ago. The book was published in 1998 and I've been reading through it.</p>
<p>The first area that I ran into problems was in the graphic section. The textbook says to use the following library.</p>
<pre><code>#include <graphics.h>
</code></pre>
<p>This didn't work with the system I'm on so I did some research. I found out that the library is very outdated and not used anymore.</p>
<p>So the problem I'm facing is whether or not to keep trying to learn from the textbook or switch to an online tutorial, or even buy a brand new textbook.</p>
<p>I really prefer to learn from physical media, like textbooks, as opposed to learning from a web page.</p>
<p>Am I going to have many more problems if I continue trying to learn from the textbook? If so, what are they?</p>
<p>Also, what are your opinion on keep the textbook or just tossing it?</p>
http://stackoverflow.com/questions/115549/process-kill-in-jscript0Process Kill in JscriptDave2008-09-22T15:32:31Z2008-09-22T16:18:53Z
<p>I'm writing a script for Caseware, the accounting software my Company uses, and I need to kill a process that hangs and messes up the compression of files on the server. The problem is it needs to be written in jscript and I havn't had a lot of experience with it.</p>
<p>I've been looking around for code examples people use to kill process but I couldn't find much. I did find an example of someone calling an .exe from jscript and I thought I'd try it using the taskkill.exe in windows, but it didn't seem to work.</p>
<p>Here's the block of code that I used.</p>
<pre><code> function OnFileClose()
{
w = new ActiveXObject("WScript.Shell");
w.run("taskkill.exe /im iexpore.exe");
return true;
}
</code></pre>
<p>I'd appreciate any examples people have or suggestions.</p>
<p>Thanks.</p>
<p>Update: I've done some more testing on the script and I've figured out that it actually executes taskkill.exe, but it isn't passing the /im parameter.</p>
http://stackoverflow.com/questions/88010/what-is-the-best-way-to-learn-dvorak/88037#880372Answer by Dave for What is the best way to learn Dvorak?Dave2008-09-17T21:49:13Z2008-09-17T21:49:13Z<p>It's a tough thing to do if you've already learned Qwery. I've tried to learn Dvorak and failed after a little while. The problem that I ran into was that I couldn't completely give up Qwerty due to my job.</p>
<p>I think to actually have a good chance at learning Dvorak you'd need to be in a situation where you wouldn't have to use Qwerty, because switching between the two causes a lot of learning problems.</p>
http://stackoverflow.com/questions/87771/how-can-i-multiply-two-64bit-numbers-using-x86-assembly-language/87804#878040Answer by Dave for How can I multiply two 64bit numbers using x86 assembly language?Dave2008-09-17T21:22:24Z2008-09-17T21:22:24Z<p>It depends what language you are using. From what I remember from learning MIPS assembly, there is a Move From High command and a Move From Lo command, or mflo and mfhi. mfhi stores the top 64bits while mflo stores the lower 64bits of the total number.</p>
http://stackoverflow.com/questions/85996/how-do-i-create-a-folder-in-vb-if-it-doesnt-exist/86035#860350Answer by Dave for How do I create a folder in VB if it doesn't exist?Dave2008-09-17T18:13:58Z2008-09-17T18:13:58Z<p>You should try using the File System Object or FSO. There are many methods belonging to this object that check if folders exist as well as creating new folders.</p>
http://stackoverflow.com/questions/83185/should-you-administer-iq-tests-to-programmers-during-the-interview-process/83226#832261Answer by Dave for Should you administer IQ tests to programmers during the interview process?Dave2008-09-17T13:32:54Z2008-09-17T13:32:54Z<p>I believe some of the tests that programmers are put through during an interview can be unfair. I've been on interview where I've been asked to solve a problem or write a block of code. There arn't really any other fields that are put through that kind of interview process.</p>
<p>I wouldn't rate IQ tests very high; certainly not higher then education and experience. IQ tests arn't always 100% accurate and sometimes don't show a persons full potential.</p>
http://stackoverflow.com/questions/79231/why-dont-they-teach-these-things-in-school/79265#792651Answer by Dave for Why don't they teach these things in school?Dave2008-09-17T02:26:11Z2008-09-17T02:26:11Z<p>I agree with what you're saying. I just recently started working in the software development world and I've already started to learn about agile development, something that I was never taught in university.</p>
<p>The fact of the matter may be that university profs don't keep up with newer development techniques as much as they should. They also may feel that there are other, more important things on their curriculum.</p>
http://stackoverflow.com/questions/77126/what-are-some-good-compilers-to-use-when-learning-c0What are some good compilers to use when learning C++?Dave2008-09-16T21:09:00Z2008-09-16T22:17:52Z
<p>What are some suggestions for easy to use C++ compilers for a beginner? Free or open-source ones would be preferred.</p>
http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77416#774161Answer by Dave for How do I reward my developers for the little things they get right?Dave2008-09-16T21:38:46Z2008-09-16T21:38:46Z<p>Bring in some nice coffee in the morning. Make sure you know what everyone takes before hand.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184854#184854Comment by Dave on What is the best comment in source code you have ever encountered?Dave2008-10-08T21:48:50Z2008-10-08T21:48:50ZI laughed really hard on this one.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85203#85203Comment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:36:03Z2008-09-23T21:36:03ZThe comic would lose it's effect if it was smallerhttp://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88785#88785Comment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:34:51Z2008-09-23T21:34:51ZI've seen profs do something similarhttp://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84815#84815Comment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:33:01Z2008-09-23T21:33:01ZOh Steve Baller, always to butt of everyones jokes.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84826#84826Comment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:32:00Z2008-09-23T21:32:00ZMan, I wish I could save the day with Perl.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84589#84589Comment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:30:20Z2008-09-23T21:30:20ZThis is a good one. +1http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoonComment by Dave on What's your favorite "programmer" cartoon?Dave2008-09-23T21:27:29Z2008-09-23T21:27:29ZI thought you could only earn around 250 rep per day?http://stackoverflow.com/questions/122531/what-are-some-problems-old-c-textbooks-may-have/122732#122732Comment by Dave on What are some problems old C++ textbooks may have?Dave2008-09-23T21:09:02Z2008-09-23T21:09:02ZThat accu.org seems like a great resource, too bad the book review section is down right now, :Phttp://stackoverflow.com/questions/115549/process-kill-in-jscript/115841#115841Comment by Dave on Process Kill in JscriptDave2008-09-22T16:24:26Z2008-09-22T16:24:26Zwow, I'm embarassed. I make I typo in the process I was using to test it. Works fine.