User Optimal Solutions - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:20:45Zhttp://stackoverflow.com/feeds/user/14728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/107017/detect-and-remove-rootkit3Detect And Remove RootkitOptimal Solutions2008-09-20T03:51:09Z2009-11-22T21:56:49Z
<p>What is the best (hopefully free or cheap) way to detect and then, if necessary, remove a rootkit found on your machine?</p>
http://stackoverflow.com/questions/115108/use-vba-in-office-2007-applications3Use VBA in Office 2007 Applications?Optimal Solutions2008-09-22T14:22:43Z2009-10-06T13:07:49Z
<p>Is VBA going to go away any time soon, like VB6 has? Should I not develop new Office applications with VBA? Or should I be developing all new Office Apps with VSTO?</p>
<p>Update: Recently read this <a href="http://visualbasic.about.com/b/2009/09/26/visual-basic-and-office-an-update.htm" rel="nofollow">article</a>.</p>
http://stackoverflow.com/questions/290579/do-i-have-to-use-j2me-for-blackberry-development1Do I have to use J2ME for Blackberry development?Optimal Solutions2008-11-14T16:08:56Z2009-09-23T12:02:11Z
<p>I would like to begin developing for the Blackberry platform and, specifically, the Bold and also the Storm device which is coming out soon. Do I need to get into Java and J2ME or can I develop sites in ASP.NET and just keep utilizing the skills I already have? I am completely new to mobile platform development and have no idea what it will take to target these Blackberry devices. I am hoping to continue to use my ASP skills..</p>
http://stackoverflow.com/questions/68456/is-anyone-using-the-asp-net-mvc-framework-on-live-sites/95150#951501Answer by Optimal Solutions for Is anyone using the ASP.NET MVC Framework on live sites?Optimal Solutions2008-09-18T18:13:00Z2009-09-20T16:07:33Z<p>I think StackOverflow, itself, is built on ASP.NET MVC. Just read this: <a href="http://haacked.com/archive/2008/09/15/stackoverflow-at-pdc.aspx" rel="nofollow">http://haacked.com/archive/2008/09/15/stackoverflow-at-pdc.aspx</a></p>
http://stackoverflow.com/questions/1427359/insert-data-in-increments/1427393#14273931Answer by Optimal Solutions for insert data in incrementsOptimal Solutions2009-09-15T14:05:04Z2009-09-15T14:05:04Z<p>Depending on the version, you could use SSIS(2005/2008) or DTS (2000/7) or if you are comfortable with the command line then BCP or if you are an admin and this is a one-time shot AND depending on the version again, Enterprise Manager has query interfaces that will certainly allow you to write SQL (INSERT INTO...) or SELECT * FROM ... but not knowing the version or the purpose its difficult to be specific..</p>
http://stackoverflow.com/questions/398690/how-to-split-up-income-from-a-product-between-co-founders/1406195#14061950Answer by Optimal Solutions for How to split up income from a product between co-founders?Optimal Solutions2009-09-10T16:03:43Z2009-09-10T16:03:43Z<p>Seek legal counsel. You can probably agree to at least split that cost equally. Be sure to ask each partner about their feelings regarding a "survivor clause". i.e. what happens if one of the partners crokes? Does the wife or next-of-kin get to have a say in the direction of the business even if he or she has no business knowledge and no technical skills? You may want to consider buy-out clauses for that purpose and, in general as well. Good luck!</p>
http://stackoverflow.com/questions/711166/sql-2005-csv-import-quote-delimited-with-inner-quotes-and-commas/1401675#14016750Answer by Optimal Solutions for SQL 2005 CSV Import Quote Delimited with inner Quotes and CommasOptimal Solutions2009-09-09T19:43:10Z2009-09-09T19:43:10Z<p>I've had MAJOR problems with SSIS. Things that Access, Excel and even DTS seemed to do very well, SSIS chokes on. Variable record-length data is another problem but, yes, these embedded qualifiers are a major problem. Especially if you do not have access to the import files because they're on someone else's server that you pay to gain access to and might even be 4 to 5 GB in size! Cant just to a "replace all" on that every import.</p>
<p>You may want to check into this at Microsoft Downloads called "<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=B51463E9-2907-4B82-A353-E15016486E1D" rel="nofollow">UnDouble</a>" and here is another <a href="http://social.msdn.microsoft.com/forums/en-US/sqlintegrationservices/thread/f1502bec-17fa-4bf1-8c5d-b8d24b16218e/" rel="nofollow">workaround</a> you might try. </p>
<p>Seems like with SSIS in SQL Server 2008, the bug is still there. I dont know why they havent addressed this in the parser but its like we went back in time with SSIS in basic import functionality. </p>
http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1370950#13709504Answer by Optimal Solutions for Why are database features being ignored, and instead reinvented in the middle tier?Optimal Solutions2009-09-03T01:00:38Z2009-09-03T01:00:38Z<p>I have been in too many situations where corporate politics ("we arent allowed access to the SQL Server so lets install a lesser powerful DBMS like Access to process millions of rows and join that with millions of rows in another table, and lets automate that import..") or even the technical politics that can happen ("I know Access can handle that amount of data and even if it doesnt we can split the MDB into several MDBs and reference them.....") </p>
<p>UGH. Corporate politics and technical politics or even ignorance have prevented me from using many features. </p>
<p>Another example - I see no reason to not use stored procedures in a 100% Microsoft shop where SQL Server is <strong>the</strong> DBMS of choice. But, because the IT guy who was eventually going to own the solution was "light" on SPs, I had to resort to other measures. I mean, there is a perfect example of why some that "feature" went ignored by them at their shop.</p>
<p>I know another shop that still uses DOS Foxpro 2 because their sole IT guy wrote the existing system that way and that is how all new stuff will be developed. Why? Cant we move along with the times? Many of the marketing people over there have several DOS prompts open at once, with Foxpro "jobs" running in them to produce the most ugly reports I've ever seen. But it works - I will give them that. It works -- they have 12 million rows in their main table and 50+ other tables that they 'join' with that main table (not all 50 at once obviously) but man... its well past 1991! They dont even want to discuss one item from that bullet list you provided in your question.</p>
<p>Stuff like this is why I guess.</p>
http://stackoverflow.com/questions/95700/vb-net-or-c-2008-multi-threaded-import3VB.Net (or C#) 2008 Multi Threaded ImportOptimal Solutions2008-09-18T18:57:10Z2009-08-14T12:47:42Z
<p>I am looking to build a multi-threaded text import facility (generally CSV into SQL Server 2005) and would like to do this in VB.NET but I am not against C#. I have VS 2008 trial and just dont know where to begin. Can anyone point me in the direction of where I can look at and play with the source of a <em>VERY</em> simple multi-threaded application for VS 2008?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1256104/how-do-i-normalise-this-database-design/1256115#12561152Answer by Optimal Solutions for How do I normalise this database design?Optimal Solutions2009-08-10T17:22:46Z2009-08-10T17:22:46Z<p>I would go with separate tables for Teams, Coaches, Rowers (maybe Athletes if there are more than one type of sport that you'll want to scale to) and Events.</p>
<h2>Teams</h2>
<p>TeamID</p>
<h2>Coaches</h2>
<p>CoachID</p>
<h2>Rowers</h2>
<p>RowerID</p>
<h2>Events</h2>
<p>EventID
TeamID
RowerID</p>
<p>There are a lot of other questions that will further define the relationships, like: What defines the entry (event)? Is it one set of rowers and one coach PER event? Multiple coaches per a set of rowers per event? Are there Teams? What makes up a team?</p>
<p>I'd be asking questions like that...</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164570#16457013Answer by Optimal Solutions for What real life bad habits has programming given you?Optimal Solutions2008-10-02T20:57:44Z2009-07-27T01:34:34Z<p>You tend to become very logical and with a highly developed memory, and it can be a very large pain in the butt when dealing with people in the real world (outside of other very logical folks), such as behind the deli counter (dont ever ask for 1/3 of a pound of anything!) or the post office, or the my God - you're toast if you go to Mc Donalds and dont order by number. They have no clue as to how to convert what you ordered to their number key for the "value meal" on their register (i.e. memory)..</p>
http://stackoverflow.com/questions/660798/multiple-iphone-developer-accounts-on-one-mac4Multiple iPhone Developer Accounts on One Mac?Optimal Solutions2009-03-19T01:51:43Z2009-07-25T21:43:56Z
<p>I have searched but cant find this question anywhere. My wife and I are about to take on iPhone development and we've only got the funds to purchase one iMac 24" to do this. Anyone out there with iPhone development experience know if two different Apple developer accounts can be profiled on one development Mac? Not only via the developer program but also does the XCODE (I believe it is) IDE support it?</p>
<p>What we're hoping to be able to do is that I can log in with my profile and developer/debug, etc my iPhone application and her do the same under her own profile (not seeing mine and vice-versa). Time sharing wont be an issue as I work from home while she works away from home and we'll be able to figure out that part no problem.</p>
<p>Please understand that we're both completely new to the Mac, OS X as well as the iPhone development arena and so we have no idea if this is possible. If not our second option would be to purchase two Mac Mini's (keyboards and mice too) and figure out some KVM to each of our existing PC's monitors that we already have, and develop that way. We would rather not and just share one iMac between two developer accounts and IDE profiles.</p>
<p><strong>UPDATE:</strong> My wife and I invested in a 24" iMac from Best Buy utilizing a 12 month no-interest offer, which made it the choice over the 20" iMac. Its got plenty of RAM (4G out of 8G max) and HD space (640G) and we're getting used to the MAC OS X and will begin developing soon. We've created two OS X accounts, to keep settings and such separate. Either Windows moved closer to OS X or vice-versa as things on OS X seem quite intuitive and we were highly impressed at the whole un-box and setup time of about 8 minutes! So far, so good.</p>
http://stackoverflow.com/questions/1148895/doing-something-new/1148992#11489921Answer by Optimal Solutions for Doing something new?Optimal Solutions2009-07-19T00:49:09Z2009-07-19T01:42:00Z<p>iPhone development. Went all out and got an iMac 24", my first Apple PC and second Apple product. The iPhone being the first Apple product. After nearly 3 decades of "Apple avoidance", I am hooked. Right now that is my "something new" :)</p>
http://stackoverflow.com/questions/1092144/what-mobile-platform-should-i-start-learning/1126769#11267693Answer by Optimal Solutions for what mobile platform should I start learning?Optimal Solutions2009-07-14T17:15:34Z2009-07-17T03:24:42Z<p>All one needs to do is to note the tag counts, on the top right of this question, in order to get a subset population (at stackoverflow.com) of where the popularity is. </p>
<p>As of my comment, the tag counts were:</p>
<ul>
<li><strong>iphone</strong> × 4829</li>
<li><strong>windowsmobile</strong> × 606</li>
<li><strong>android</strong> × 523</li>
<li><strong>j2me</strong> × 301</li>
<li><strong>symbian</strong> × 106</li>
</ul>
<p>The are other factors, obviously. Do you enjoy writing for Windows Mobile over iPhone or J2ME? Do you know J2ME but want to get into iPhone development? I dont think there is any one <em>correct</em> answer, but the tag-counts <strong>do</strong> say something about popularity.</p>
http://stackoverflow.com/questions/98749/best-hosted-calendar0Best Hosted Calendar?Optimal Solutions2008-09-19T01:46:44Z2009-07-08T22:23:42Z
<p>Can anyone suggest or recommend a great online/hosted calendar system that is, hopefully, free, but if not then less than $10 per month? Anything other than Google? Must be accessible via any web browser.</p>
http://stackoverflow.com/questions/109922/is-wap-dead7Is WAP Dead?Optimal Solutions2008-09-21T01:17:10Z2009-07-06T16:34:12Z
<p>7-8 years ago I developed some cool apps using WAP. The mobile phone apps were able to help several in a few local governments, school systems as well as apartment complexes manage their mobile-workforce and various duties they did. </p>
<p>Back then the alternative was a Java mobile edition (J2ME I think). What is the best mobile development platform to use today. Something that the majority of mobile devices will be able to install and run easily (for the user as well as the developer)?</p>
http://stackoverflow.com/questions/129028/how-to-deal-with-the-developers-refusing-to-use-certain-technologies-or-tools/129732#1297320Answer by Optimal Solutions for How to deal with the developers refusing to use certain technologies or tools?Optimal Solutions2008-09-24T20:26:29Z2009-06-23T13:00:24Z<p>HLGEM is correct. You dont want us to say "let them go" but truth be told, they dont deserve to work you you with that attitude. Remind them who the boss is. Its one thing to want to suggest a new idea or product to work with and give the reasons why. But, if you are truly getting those sort of remarks then you really do need to consider showing them where the door is. Sorry. Business is business.</p>
<p>You added: </p>
<blockquote>
<p><strong><em>Good help is hard to find, so answer 'Let them go' doesn't work in this case. Besides, they are very good in what they do, just don't want to do what they don't want to do.</em></strong></p>
</blockquote>
<p>Why not? There are plenty of programmers who have been outsourced and laid-off who would more than happy to get their hands dirty in some Crystal Reports development - even if they hate it, like I hate it. :-) </p>
<p>So, if you dont let them go and find someone else who would be happy to do Crystal Reports (yuck) or SSIS (yuck) or MAS 500, then who will do that work?? You? Or a very unhappy programmer? Either of those two scenarios is far worse, in my opinion, than seeking new help. I'd rather interview a dozen people a day than know someone working for me is unhappy - for the reasons you gave. </p>
<p>We dont control what products the customer has for us to work with. I dont like doing CR or SSIS myself but I would never say no to a client and I would never take no from anyone on my team. If they want to do whatever they want to do then they can go an start their own gig. Trust me, its worth going out on your own gigs and all, however you dont REALLY get to do whatever it is you want to do - all of the time. They'll see.</p>
<p>Good help <em>is</em> hard to find, you've actually proven that by posting this. :-)</p>
http://stackoverflow.com/questions/114735/potential-other-uses-of-a-jabber-server/1020752#10207521Answer by Optimal Solutions for Potential other uses of a jabber serverOptimal Solutions2009-06-20T02:09:38Z2009-06-20T02:09:38Z<p>Iowa State University Department of Agronomy has created this with Jabber: <a href="http://mesonet.agron.iastate.edu/iembot/" rel="nofollow">http://mesonet.agron.iastate.edu/iembot/</a> </p>
<p>If you're a weather freak like I am, this is <strong>VERY</strong> cool stuff!</p>
http://stackoverflow.com/questions/971985/asp-net-user-management-and-godaddy-shared-hosting/972022#9720220Answer by Optimal Solutions for ASP.net user management and GoDaddy shared hostingOptimal Solutions2009-06-09T19:24:13Z2009-06-09T20:56:12Z<p>I have also had this problem. About a year ago. So I am curious to know what the solution might be, if there <em>is</em> one! I was told by Go Daddy, back then, that they had ASP.net admin stuff "locked down" pretty tight. I went back and forth with their help people, who had to actually escalate it - because the general help team didnt understand what I was asking. What I ultimately did was I canceled my hosting service (they did give me a refund for unused time!) and I went over to a different host. Hope this helps and I will be listening carefully to responses as I am curious to see if they changed OR if someone has a workaround. </p>
http://stackoverflow.com/questions/102829/best-free-text-editor-supporting-more-than-4g-files7Best Free Text Editor Supporting *More Than* 4G Files?Optimal Solutions2008-09-19T15:26:17Z2009-06-03T23:31:31Z
<p>I am looking for a text editor that will be able to load a 4+ Gigabyte file into it. Textpad doesnt work. I own a copy of it and have been to its support site, it just doesnt do it. Maybe I need new hardware, but that's a different question. The editor needs to be free OR, if its going to cost me, then no more than $30. For Windows.</p>
http://stackoverflow.com/questions/928656/iphone-sdk-on-windows-alternative-solutions/928718#9287181Answer by Optimal Solutions for Iphone SDK on Windows (alternative solutions)Optimal Solutions2009-05-30T01:27:32Z2009-05-30T01:27:32Z<p>No, you must have an Intel Mac of some sort. I went to Best Buy and got a 24" iMac with 4G RAM for $1499 using their 18 month no interest promotion. I pay a minimum payment of something like $16 a month. As long as I pay the entire thing off within 18 months - no interest. That was the only way I was getting into iPhone development.</p>
http://stackoverflow.com/questions/513445/what-application-have-you-integrated-with-developed-on-that-you-would-intention/918843#9188430Answer by Optimal Solutions for What application have you integrated with/developed on - that you would intentionally leave off your resumeOptimal Solutions2009-05-28T01:45:25Z2009-05-28T01:45:25Z<p>For me, it would have to be Java.</p>
http://stackoverflow.com/questions/89372/import-variable-record-length-csv-file-using-ssis2Import *variable record length* CSV file using SSISOptimal Solutions2008-09-18T02:06:32Z2009-05-21T17:56:53Z
<p>Has anyone been able to get a variable record length text file (CSV) into SQL Server via SSIS?</p>
<p>I have tried time and again to get a CSV file into a SQL Server table, using SSIS, where the input file has varying record lengths. For this question, the two different record lengths are 63 and 326 bytes. All record lengths will be imported into the same 326 byte width table.</p>
<p>There are over 1 million records to import.<br />
I have no control of the creation of the import file.<br />
I must use SSIS.<br />
I have confirmed with MS that this has been reported as a bug.
I have tried several workarounds. Most have been where I try to write custom code to intercept the record and I cant seem to get that to work as I want.</p>
http://stackoverflow.com/questions/863435/from-computer-scientist-to-software-engineer/863541#8635411Answer by Optimal Solutions for From Computer Scientist to Software Engineer Optimal Solutions2009-05-14T14:10:36Z2009-05-14T14:10:36Z<p><a href="http://en.wikipedia.org/wiki/RTFM" rel="nofollow">RTFM</a>!! Seriously, READ and READ and READ. Then apply, READ, make mistakes, READ, backtrack to figure out what you did wrong, READ, fix, READ, apply again and over and over.</p>
<p>Did I say READ? :-) I am serious. Read everything you can get your hands on. Google is your friend. StackOverflow is your friend. There are great books out there and posts like <a href="http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program">this one</a> describe them, and more! Good Luck!!</p>
http://stackoverflow.com/questions/168191/what-dont-you-like-in-agile-development/168769#1687691Answer by Optimal Solutions for What don't you like in Agile development?Optimal Solutions2008-10-03T20:31:21Z2009-05-11T18:16:31Z<p>I've given almost all of my votes on this very question! I just like the way I develop software. The way I have been doing it for 28 years. I have never had a problem. Not until someone tries to 'convert' me to some new-fangled idea. Then the sparks fly. I have turned down jobs that force me to code in such ways.</p>
http://stackoverflow.com/questions/111653/cocoa-touch-application-template-from-xcode-3-1-1/707690#7076900Answer by Optimal Solutions for "Cocoa Touch Application" Template from XCode 3.1.1Optimal Solutions2009-04-01T23:08:25Z2009-04-01T23:08:25Z<p>I am having the same exact issue. I have watched tutorials where the screen doesnt look like my Xcode "new project..." screen. I dont even see Cocoa anything and I just downloaded and installed the iPhone SDK 2.2.1 </p>
<p>Did you ever get this issue resolved and if so, how? I am pulling out whats left of my hair. :-)</p>
<p>Additional: I am running an iMac 4GB, Mac OS X 10.5.6</p>
http://stackoverflow.com/questions/19772/cmd-exe-replacement/698530#6985300Answer by Optimal Solutions for CMD.exe replacementOptimal Solutions2009-03-30T18:45:57Z2009-03-30T18:45:57Z<p>Nick, I know you asked this a long while ago but I've just found it while searching for something related. I have been using <a href="http://www.promptpal.com/" rel="nofollow">PromptPal</a> and its been great. I got it about a year ago, early 2008, and it was through this discount software thing called BitsDujour. I just went there and noticed they had a deal for 51% off that product only a <a href="http://www.bitsdujour.com/software/promptpal/" rel="nofollow">few days ago</a>. Keep your eyes on that site and maybe the discount will come up again soon. Its well worth the $30 but I got 2 licenses for 1/2 off, one for each of my PCs...</p>
http://stackoverflow.com/questions/195010/how-can-i-split-multiple-joined-words10How can I split multiple joined words?Optimal Solutions2008-10-12T02:37:19Z2009-03-18T21:31:38Z
<p>I have an array of 1000 or so entries, with examples below:</p>
<pre><code>wickedweather
liquidweather
driveourtrucks
gocompact
slimprojector
</code></pre>
<p>I would like to be able to split these into their respective words, as:</p>
<pre><code>wicked weather
liquid weather
drive our trucks
go compact
slim projector
</code></pre>
<p>I was hoping a regular expression my do the trick. But, since there is no boundary to stop on, nor is there any sort of capitalization that I could possibly key on, I am thinking, that some sort of reference to a dictionary might be necessary? </p>
<p>I suppose it could be done by hand, but why - when it can be done with code! =) But this has stumped me. Any ideas? </p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/582532#5825321Answer by Optimal Solutions for What are some good free programming books?Optimal Solutions2009-02-24T16:52:55Z2009-02-24T16:52:55Z<p>THANKS! This has been a very valuable resource considering the economic situation we're all faced with these days. Savings, of any amount, is wonderfully welcomed!</p>
http://stackoverflow.com/questions/566371/what-is-the-difference-between-an-iphone-web-app-and-an-iphone-app6What is the difference between an iPhone web app and an iPhone app?Optimal Solutions2009-02-19T17:40:39Z2009-02-19T17:43:34Z
<p>I ask this because I am on the verge of diving into iPhone development and I have been intently following the iPhone related questions here. </p>
<p>This question:
<a href="http://stackoverflow.com/questions/566265/retrieving-current-local-time-on-iphone">http://stackoverflow.com/questions/566265/retrieving-current-local-time-on-iphone</a></p>
<p>has a comment which asks "are you creating iphone web app or iphone app" and my question is, is there a difference and if so - what is that difference.</p>
<p>If the "web app" is simply a matter of CSS and is more or less a traditional web app with mobile in mind, then do you need a Mac to develop those apps? Or can it be developed on any platform and accessed via Safari instead.</p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/216735#216735Comment by Optimal Solutions on Keyboard for programmersOptimal Solutions2009-10-05T19:57:13Z2009-10-05T19:57:13ZI just got a notice about the pro 3 keyboard almost being out of production... but for $160? No way. I cant justify $160 for a keyboard right now with this recession and all. I wish I could because it does look nice and it seems like a solid keyboard but no way for $160. http://stackoverflow.com/questions/884162/guis-from-movies/884202#884202Comment by Optimal Solutions on GUIs from moviesOptimal Solutions2009-10-04T00:21:14Z2009-10-04T00:21:14ZMinority report actually had a cool interface (for that time) when Cruise's character was at the apartment (or was it a hotel) where the guy that he thought killed his son was staying. The attendant in the lobby was looking him up via a neat menu/interface. At the time, I had never seen anything like it.http://stackoverflow.com/questions/1427359/insert-data-in-increments/1427423#1427423Comment by Optimal Solutions on insert data in incrementsOptimal Solutions2009-09-17T13:26:43Z2009-09-17T13:26:43Zoooooh.. I like! http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1367102#1367102Comment by Optimal Solutions on Why are database features being ignored, and instead reinvented in the middle tier?Optimal Solutions2009-09-03T00:19:51Z2009-09-03T00:19:51Z@lutz: I have. THREE times within 7 weeks and then they canned the contract. Client had no clue as to what they wanted. These are people that refer to excel spreadsheets "tables" or even "databases". Most of the BS that went on with this particular client was due to corporate <i>politics</i>. To a lesser degree, ignorance on the 'technical' staff's part. Not knowing, then not <b>believing</b> the hired consultant didnt help them. Nor me.http://stackoverflow.com/questions/687/keyboard-for-programmers/4603#4603Comment by Optimal Solutions on Keyboard for programmersOptimal Solutions2009-08-19T00:23:52Z2009-08-19T00:23:52ZI love this keyboard too. We both still have the one from the 1980's and it still works (and feels like its made of iron ala- bobobobo) because it wasnt made in China! The product garbage we have to choose from these days is made so cheaply! And, yes, I can attest to the dishwasher working (dont use bleach OR the heated dry cycle and wait at least 3 days after allowing it to dry THOROUGHLY!).. It came out spit shining new!http://stackoverflow.com/questions/95700/vb-net-or-c-2008-multi-threaded-import/1277670#1277670Comment by Optimal Solutions on VB.Net (or C#) 2008 Multi Threaded ImportOptimal Solutions2009-08-16T02:37:20Z2009-08-16T02:37:20ZThanks for that reply Simon. That <i>is</i> an excellent article/resource!!http://stackoverflow.com/questions/1256104/how-do-i-normalise-this-database-design/1256115#1256115Comment by Optimal Solutions on How do I normalise this database design?Optimal Solutions2009-08-10T17:44:00Z2009-08-10T17:44:00ZYou will want to create a table that "defines" that group. As you said, a Team is made up of multiple coaches and multiple rowers. Do then Team table should have a TeamID as well as a RowerID and CoachID.
Not to muddy this even more but if a team can have multiple rowers then can it be said, too, that a rower can belong to multple teams? Example: If the Blue team can have John, Mike and Sam could John be on the Blue team as well as the Red team (another team in the system)? If so then you definitely need those resolving tables.http://stackoverflow.com/questions/1256104/how-do-i-normalise-this-database-design/1256115#1256115Comment by Optimal Solutions on How do I normalise this database design?Optimal Solutions2009-08-10T17:35:46Z2009-08-10T17:35:46ZIf you know you're going to have many-to-many relationships, you should handle that with a table "in between" them that resolves those into a more simple many-to-1 and 1-to-many relationship. If that is the case then my first example wont work for you as its not that simple. So you need to expand the design to handle the complexity.http://stackoverflow.com/questions/1256104/how-do-i-normalise-this-database-design/1256115#1256115Comment by Optimal Solutions on How do I normalise this database design?Optimal Solutions2009-08-10T17:29:34Z2009-08-10T17:29:34ZYou'll have to define a corresponding table between those many-to-many relationships. If you can have multiple teams enter into multiple events then there will be a table in the middle of the two called TeamEvents with the keys of both in them (TeamID, RowerID).. Do you follow?http://stackoverflow.com/questions/660798/multiple-iphone-developer-accounts-on-one-mac/1183147#1183147Comment by Optimal Solutions on Multiple iPhone Developer Accounts on One Mac?Optimal Solutions2009-07-27T01:36:44Z2009-07-27T01:36:44ZGood info - thanks!http://stackoverflow.com/questions/1141316/integer-zero-0-will-be-ignored-when-upload-to-sql-serverComment by Optimal Solutions on Integer zero, "0' will be ignored when upload to SQL Server.Optimal Solutions2009-07-17T04:04:50Z2009-07-17T04:04:50ZWhat method are you using to get your Excel data into SQL Server? SSIS? DTS? Bulk loading? Via ASP scripting? What version of Excel, of SQL Server? What are the maximum 'text' values of those Excel numbers you have shown in your question? Would it be possible to have a 10 character number with a zero in front? If you wanted to pad a zero in front, to what number of characters would you want it padded out to? Sorry to ask so many questions, just trying to get you closer to a solution...http://stackoverflow.com/questions/1122328/first-name-middle-name-last-name-why-not-full-name/1122762#1122762Comment by Optimal Solutions on First name, middle name, last name. Why not Full Name?Optimal Solutions2009-07-14T00:02:59Z2009-07-14T00:02:59ZWhat about sorting? With one field, how do you decide what character to begin the sort with? Arent you then resorting back to "guessing conventions"?http://stackoverflow.com/questions/1008897/emr-electronic-medical-record-standard-record-format/1008977#1008977Comment by Optimal Solutions on EMR (Electronic Medical Record) standard record format?Optimal Solutions2009-07-13T23:47:42Z2009-07-13T23:47:42ZShabbyDoo - I couldnt agree more with that warning. I started out in the healthcare IT world 25 years ago and I dont ever want to get back into it. My experiences were <i>not</i> good. :)http://stackoverflow.com/questions/98749/best-hosted-calendarComment by Optimal Solutions on Best Hosted Calendar?Optimal Solutions2009-07-09T12:42:47Z2009-07-09T12:42:47ZActually Jared, this is not 'someone at Microsoft'. But, thanks, as I do like a good conspiracy theory as much as the next guy. :-)
Tim (and others who have asked): At the time <i>I think</i> Google's calendar was beta and my client didnt wish to get involved with beta and also didnt wish to get involved with Google (or Microsoft) or any large software dev that "changes things almost daily" as they put it to me. So I wrote them a custom app.http://stackoverflow.com/questions/109922/is-wap-dead/1087951#1087951Comment by Optimal Solutions on Is WAP Dead?Optimal Solutions2009-07-07T03:31:37Z2009-07-07T03:31:37ZThat makes a lot of sense!