User Jarod Elliott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:58:39Z http://stackoverflow.com/feeds/user/1061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1337767/specify-more-than-one-item-in-the-where-clause/1337774#1337774 2 Answer by Jarod Elliott for Specify more than one item in the where clause Jarod Elliott 2009-08-26T22:04:23Z 2009-08-26T22:04:23Z <p>You can use "in" instead of "=".</p> <p>eg.</p> <pre><code>DELETE FROM users WHERE id IN (3,4,5,9); </code></pre> http://stackoverflow.com/questions/990396/encoding-problems-in-php-mysql/990407#990407 0 Answer by Jarod Elliott for Encoding problems in PHP / MySQL Jarod Elliott 2009-06-13T09:39:20Z 2009-06-13T09:39:20Z <p>Maybe try checking for error messages after calling the query (if you aren't already doing this outside that function). It could be telling you exactly what's wrong.</p> <p>As Artem commented, printing out the actual query is a good idea - sometimes things aren't exactly as you expect them to be.</p> http://stackoverflow.com/questions/958898/php-mysqlquery-not-returning-false/958900#958900 1 Answer by Jarod Elliott for PHP mysql_query not returning false... Jarod Elliott 2009-06-06T03:09:02Z 2009-06-06T03:09:02Z <p>You are checking the '$q' variable (your sql statement) instead of the '$r' variable (the mysql result)</p> http://stackoverflow.com/questions/937808/how-to-extract-data-from-a-pdf-file-while-keeping-track-of-its-structure/937992#937992 0 Answer by Jarod Elliott for How to extract data from a PDF file while keeping track of its structure? Jarod Elliott 2009-06-02T05:14:21Z 2009-06-02T05:14:21Z <p>I haven't tried it, but converting the PDF to PostScript may make the result easier to parse.</p> <p>I've found the <a href="http://www.foolabs.com/xpdf/" rel="nofollow">Xpdf</a> programs invaluable for dealing with PDF processing.</p> http://stackoverflow.com/questions/937360/best-free-way-to-store-20-million-rows-a-day/937450#937450 4 Answer by Jarod Elliott for Best free way to store 20 million rows a day? Jarod Elliott 2009-06-02T00:33:44Z 2009-06-02T00:33:44Z <p>Our MySQL database has over 300 million rows indexed and we only ever experience problems with complex joins running a little slow - most can be optimized though.</p> <p>Handling the rows was no problem - the key to our performance was good indexes.</p> <p>Considering you are dropping the information at midnight, i would also look at MySQL partitioning which would allow you to drop that part of the table whilst allowing the next day to continue inserting if need be.</p> http://stackoverflow.com/questions/277440/mysql-myisam-vs-inno-db/277445#277445 17 Answer by Jarod Elliott for MySql: MyISAM vs. Inno DB! Jarod Elliott 2008-11-10T09:45:20Z 2009-04-29T00:50:38Z <p>The main difference is that InnoDB supports transactions while MyISAM does not.</p> <p>There are numerous other differences, however the common one's i am aware of are:</p> <ul> <li>MyISAM has typically been considered faster at searching, but recent InnoDB improvements are removing this difference and improving high concurrency workload performance</li> <li>InnoDB support transactions whilst MyISAM does not</li> <li>InnoDB handles indexes a bit differently, storing the primary key as part of every index (making indexes take up more room on the disk, but also making a covering index more likely)</li> <li>MyISAM does table level locking while InnoDB can do row level locking</li> <li>Different memory/buffer/index settings are used in the MySQL configuration files</li> <li>InnoDB is typically said to have better crash recovery</li> <li>As mentioned in another answer, the data is store on disk differently. I believe InnoDB is configurable in this area and can have one file per table etc. if required</li> </ul> <p>I'm sure a google search or the MySQL site will bring up numerous other differences in more detail.</p> http://stackoverflow.com/questions/703608/sql-query-not-working/703620#703620 0 Answer by Jarod Elliott for Sql Query not working! Jarod Elliott 2009-04-01T00:38:44Z 2009-04-01T00:38:44Z <p>You need to remove the "WHERE id=$id" - it has no meaning in an INSERT statement.</p> http://stackoverflow.com/questions/652148/how-to-copy-indexes-from-one-table-to-another-in-sqlserver/652196#652196 1 Answer by Jarod Elliott for How to copy indexes from one table to another in SQLSERVER Jarod Elliott 2009-03-16T21:22:09Z 2009-03-16T21:22:09Z <p>I'm not specifically familiar with SQL Server, however based on the way database tables are defined and used in other databases, i would say there is no way to do this by just copying the data or using a SELECT INTO.</p> <p>The indexes need to be defined as part of the table structure and need to be generated for any existing data that may be in the table.</p> <p>The only way to do this is during the CREATE TABLE statement of by using an ALTER TABLE statement after the table has been created.</p> <p>Statements for working with the data itself are separate to working with the table definitions so i don't think there will be any work around or shortcut for this.</p> <p>I'm sure there would be tools available to generate the ALTER TABLE statement to create all the appropriate indexes based on the table you already have, making it easy and reliable.</p> http://stackoverflow.com/questions/649702/how-to-send-a-signal-to-webpage/649721#649721 1 Answer by Jarod Elliott for how to send a signal to webpage Jarod Elliott 2009-03-16T09:16:02Z 2009-03-16T09:30:54Z <p>I think you will find this is not the right approach to update a web page. If the CGI never finished running, the browser will just wait until it times out. </p> <p>Although i believe you can flush the response and some browsers may start rendering the page, for the page to display properly the CGI needs to finish executing successfully. </p> <p>With the endless loop, the browser never has a complete page to render and doesn't know the expected content length, and if for some reason a crash occurs during the loop it will result in an internal server error. </p> <p>CGI's or server side scripts for outputting web pages aren't really designed to run indefinitely.</p> <p>I would investigate using AJAX in your page to query the server for updates on a regular basis.</p> <p>I believe there are some server "push" technologies (i think one might have been called Comet from memory) but usually people use AJAX to accomplish this type of thing.</p> http://stackoverflow.com/questions/18936/good-cheat-sheets 13 Good Cheat Sheets? Jarod Elliott 2008-08-20T21:53:28Z 2009-03-14T19:47:18Z <p>I currently have a really good MySQL cheat sheet which comes in handy for all the extra details i don't deal with on a daily basis.</p> <p>I was wondering what cheat sheets other people are using?</p> <p>I'm interested in vi/vim, regex, linux, python etc. as that's where i tend to have the basic day-to-day knowledge but then keep forgetting more complicated commands or options which i don't use often. However, please feel free to post links to any good cheat sheets you may use as i'm sure others will find them useful.</p> http://stackoverflow.com/questions/645270/runtime-query-analysis-and-optimization/645334#645334 1 Answer by Jarod Elliott for Runtime query analysis and optimization Jarod Elliott 2009-03-14T04:01:48Z 2009-03-14T04:01:48Z <p>I'd suggest giving <a href="http://www.jetprofiler.com/" rel="nofollow">Jet Profiler</a> a try. The free version is a bit limited but i still found it useful. It will do most of what you have asked, but you may struggle to find a tool that will suggest indexes for you though.</p> http://stackoverflow.com/questions/612908/multiple-inline-conditions-and-or-vs-elseif/612936#612936 1 Answer by Jarod Elliott for Multiple Inline Conditions AND OR vs ELSEIF Jarod Elliott 2009-03-04T23:16:09Z 2009-03-04T23:16:09Z <p>I think you would want to use 'and' rather than 'or'.</p> <p>Using an 'or' on both of those conditions will always result in true as the string will always not be one of the values.</p> http://stackoverflow.com/questions/572593/what-are-the-best-javascript-flash-frameworks-to-render-graphs-or-charts-from-dat/585423#585423 0 Answer by Jarod Elliott for What are the best Javascript/Flash frameworks to render graphs or charts from data? Jarod Elliott 2009-02-25T10:07:22Z 2009-02-25T10:07:22Z <p>I haven't used it extensively yet, but after some initial fiddling around i was quite impressed with <a href="http://teethgrinder.co.uk/open-flash-chart/" rel="nofollow">Open Flash Chart</a> (which i just noticed was already mentioned by Dinesh above)</p> http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585293#585293 0 Answer by Jarod Elliott for ie7 bottom scrollbar hell Jarod Elliott 2009-02-25T09:20:49Z 2009-02-25T09:20:49Z <p>It looks like your CSS has several things with large widths or margins which could be invisibly going off the side of the page - most likely a positioning difference between IE and other browsers.</p> <p>In firefox, the firebug addon allows you to inspect all the elements of your page. If there's something like that for IE it should help you identify the offending element. Otherwise, maybe try setting all borders to a width of 1 pixel with various colours to try to highlight which element is sitting out there.</p> http://stackoverflow.com/questions/583615/pdf-to-text-tool-or-java-library/583642#583642 0 Answer by Jarod Elliott for PDF to text tool or Java library? Jarod Elliott 2009-02-24T21:14:40Z 2009-02-24T21:14:40Z <p>I have always found the <a href="http://www.foolabs.com/xpdf/" rel="nofollow">xpdf</a> tools very useful.</p> <p>We successfully use the pdf to text conversion for converting PDF business documents for use in EDI. The option to preserve layout works well to keep things positioned well for parsing in a program.</p> http://stackoverflow.com/questions/579662/why-are-my-images-stored-as-mysql-longblobs-only-being-displayed-partially/579702#579702 0 Answer by Jarod Elliott for Why are my images stored as MySQL longblobs only being displayed partially? Jarod Elliott 2009-02-23T22:41:36Z 2009-02-23T22:41:36Z <p>It may be possible the data got corrupted during the server move - especially if the data was dumped and then re-inserted. Can you confirm the entire image data is actually in the database?</p> <p>Edit: Just saw your edit to the question. Can you confirm that the new images are being completely inserted into the database then? It could be an insertion problem.</p> http://stackoverflow.com/questions/579664/when-listing-information-from-a-database-using-php-and-mysql-how-would-you-make-t/579681#579681 1 Answer by Jarod Elliott for When listing information from a database using php and mysql how would you make the first row look different to the rest? Jarod Elliott 2009-02-23T22:37:03Z 2009-02-23T22:37:03Z <p>A simple if statement when looping through your results will usually do the trick. You can use a boolean to indicate if you've output the first row of results or now. If you haven't then give it a particular style and then set the boolean to true. Then all subsequent rows get a different style.</p> http://stackoverflow.com/questions/576096/how-do-i-select-titles-from-a-mysql-db-that-begin-with-a-specific-letter/576104#576104 0 Answer by Jarod Elliott for How do I select titles from a mysql DB that begin with a specific letter? Jarod Elliott 2009-02-22T23:46:13Z 2009-02-22T23:46:13Z <p>This will handle the "starts with" requirement:</p> <p>SELECT title FROM table WHERE title LIKE "D%"</p> <p>To deal with the movie titles which start with "a" or "the" etc. is it possible to adjust the way these are entered into the database. eg. "Movie, A" instead of "A Movie"</p> http://stackoverflow.com/questions/507815/where-can-i-get-started-writing-a-media-server-in-c-like-playon/575805#575805 3 Answer by Jarod Elliott for Where can I get started writing a media server in C# like PlayOn Jarod Elliott 2009-02-22T21:10:23Z 2009-02-22T21:10:23Z <p><a href="http://stackoverflow.com/questions/544152/connect-my-360-to-an-application">This</a> question may also help point you in the right direction.</p> <p>Specifically the accepted answer point to the <a href="http://www.plutinosoft.com/blog/projects/platinum" rel="nofollow">Platinum UPnP library</a>. Whilst it's a C++ library, it looks promising and i'm sure it could be integrated with a C# solution or at least give you ideas for your own implementation.</p> http://stackoverflow.com/questions/559891/best-way-to-calculate-dates-from-results/559894#559894 4 Answer by Jarod Elliott for Best way to calculate dates from results? Jarod Elliott 2009-02-18T04:59:04Z 2009-02-18T05:06:12Z <p>can't you just select for a "DISTINCT" timestamp in your query?</p> <p>Or if the times vary on each day (not sure from your example) you can convert the timestamp column to just a date of the fly using the mysql DATE function. Keep in mind this may prevent use of an index if it's used on that column.</p> <p>eg.</p> <pre><code>SELECT DISTINCT DATE(timestamp_column) FROM table </code></pre> <p>This will remove the time part of the timestamp.</p> http://stackoverflow.com/questions/544152/connect-my-360-to-an-application/544192#544192 0 Answer by Jarod Elliott for Connect my 360 to an application Jarod Elliott 2009-02-13T00:20:44Z 2009-02-13T00:20:44Z <p>Assuming you want to use the media player built into the Xbox 360, i think you will need to look into media streaming standards and what one's the 360 recognizes (i'm not sure myself).</p> <p>You may also be interested in <a href="http://tversity.com/" rel="nofollow">TVersity</a> which handles a wide range of streaming capabilities.</p> http://stackoverflow.com/questions/505406/when-to-use-optimize-in-mysql/505448#505448 3 Answer by Jarod Elliott for when to use OPTIMIZE in mysql Jarod Elliott 2009-02-02T23:38:04Z 2009-02-02T23:38:04Z <p>it may depend upon whether you are using MyISAM or InnoDB tables, but i would run the OPTIMIZE after truncating the table. This should ensure space is reclaimed and it will run very quickly. </p> <p>When you insert your batch of data it should all insert in order and not be fragmented anyway, and since it's a fresh insert there will be no space to reclaim. If it's a small dataset it may not matter too much, but on a large dataset doing the OPTIMIZE after the insert could also be quite slow.</p> http://stackoverflow.com/questions/385667/test-data-generators-quickest-route-to-generating-solid-non-repetitive-but-no/385685#385685 0 Answer by Jarod Elliott for Test data generators / quickest route to generating solid, non-repetitive, but not-real database sample data? Jarod Elliott 2008-12-22T06:49:21Z 2008-12-22T06:49:21Z <p>Check out my answer to this earlier question <a href="http://stackoverflow.com/questions/19162/php-script-to-populate-mysql-tables">here</a>.</p> <p>Not sure what database you are using but hopefully it proves useful. I still haven't used the tool myself but i have heard more good reports when i've passed on the link.</p> http://stackoverflow.com/questions/382814/best-practices-for-a-software-research-and-development-team 4 "Best Practices" for a software research and development team? Jarod Elliott 2008-12-20T02:51:38Z 2008-12-20T04:39:16Z <p>I have seen numerous articles and questions here on SO regarding best practices for software development in general. I am however after more specific best practices or guidelines focussing more on the research area for and R&amp;D team.</p> <p>For example, i have read that Google allows their developers to work on personal projects for one day per week to help drive new ideas and keep the developers familiar with multiple technologies etc.</p> <p>Assuming a team is already in place (so ignoring hiring guidelines for now), my question is, what guidelines or best practices are known to drive an R&amp;D team to be more likely to come up with new ideas and ways of utilising new technologies?</p> http://stackoverflow.com/questions/277384/how-can-i-update-a-progress-display-on-a-perl-command-line-application/277389#277389 1 Answer by Jarod Elliott for How can I update a progress display on a Perl command-line application? Jarod Elliott 2008-11-10T09:05:03Z 2008-11-10T09:05:03Z <p>You should be able to print a backspace character '\b' to move the cursor back so you can overwrite what you printed previously.</p> http://stackoverflow.com/questions/271319/lightweight-sql-database-which-doesnt-require-installation/271325#271325 1 Answer by Jarod Elliott for Lightweight SQL database which doesn't require installation Jarod Elliott 2008-11-07T05:42:39Z 2008-11-07T05:42:39Z <p><a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> will be what you're after</p> http://stackoverflow.com/questions/266709/guesstimating-database-size/266758#266758 1 Answer by Jarod Elliott for Guesstimating database size. Jarod Elliott 2008-11-05T21:24:06Z 2008-11-05T22:02:19Z <p>As the previous answer suggested, the varchar field makes things a little more difficult as it only uses enough storage for the string it contains in each row. After entering some sample data, a database such as MySQL (i assume others do this too) will be able to tell you the average size of each row.</p> <p>Also, you need to keep in mind any indexes you create which will take up additional space. Again, using a range of sample data should give a rough indication to extrapolate the size estimates.</p> <p>Edit: As many of the answers here suggest using sample data, please see my answer to and older questions relating to this: <a href="http://stackoverflow.com/questions/19162/php-script-to-populate-mysql-tables">PHP Script to populate MySQL tables</a></p> http://stackoverflow.com/questions/255534/remove-the-default-browser-header-and-footer-when-printing-html/255535#255535 5 Answer by Jarod Elliott for Remove the default browser header and footer when printing HTML. Jarod Elliott 2008-11-01T04:35:15Z 2008-11-01T04:41:51Z <p>These a usually browser specific print settings.</p> <p>In IE &amp; FireFox for example you can go into page setup and change the header and footer details for printing.</p> <p>I don't think this can be controlled by the web page itself.</p> http://stackoverflow.com/questions/255511/php-echo-line-breaks/255512#255512 9 Answer by Jarod Elliott for PHP Echo Line Breaks Jarod Elliott 2008-11-01T04:04:13Z 2008-11-01T04:04:13Z <p>\n is a linux/unix line break</p> <p>\r is a mac line break</p> <p>\r\n is a windows line break</p> <p>I usually just use \n on our linux systems and most windows apps deal with it ok anyway</p> http://stackoverflow.com/questions/242386/whats-the-best-book-or-article-you-have-read-on-optimizing-mysql-servers-linux/242487#242487 4 Answer by Jarod Elliott for Whats the best book or article you have read on optimizing mysql servers (linux)? Jarod Elliott 2008-10-28T07:37:44Z 2008-10-28T07:37:44Z <p>High Peformance MySQL Second Edition is highly recommended.</p> http://stackoverflow.com/questions/277440/mysql-myisam-vs-inno-db/277445#277445 Comment by Jarod Elliott on MySql: MyISAM vs. Inno DB! Jarod Elliott 2009-08-03T21:58:45Z 2009-08-03T21:58:45Z @Don - sorry i can't really help with the exact performance tests you are after, but for scaling improvement try taking a look specifically at MySQL 5.4 (in beta still), the InnoDB plugin and XtraDB from Percona. Many of the improvements for scaling on multiple processors have been included in these versions as well as other patches which can be applied. OurDelta also does MySQL builds with many of the patches included. Correct memory tuning is more critical with InnoDB compared to MyISAM and i've found the table design, indexing correctly and then reworking queries is very beneficial as well. http://stackoverflow.com/questions/937360/best-free-way-to-store-20-million-rows-a-day/937450#937450 Comment by Jarod Elliott on Best free way to store 20 million rows a day? Jarod Elliott 2009-06-02T01:17:22Z 2009-06-02T01:17:22Z @duffymo Yes, but it's getting removed each night at midnight so it's not going to build up any bigger over time. http://stackoverflow.com/questions/277440/mysql-myisam-vs-inno-db/277445#277445 Comment by Jarod Elliott on MySql: MyISAM vs. Inno DB! Jarod Elliott 2009-04-29T00:52:11Z 2009-04-29T00:52:11Z @Bill - agreed - i have been following these improvements as well. I've updated my answer. http://stackoverflow.com/questions/647274/good-wiki-software-for-internal-company-use/647308#647308 Comment by Jarod Elliott on Good wiki software for internal company use? Jarod Elliott 2009-03-15T05:49:19Z 2009-03-15T05:49:19Z +1, we did exactly the same thing in our company and it works great - the hardest part is getting people involved and caring about their areas in the wiki. http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585293#585293 Comment by Jarod Elliott on ie7 bottom scrollbar hell Jarod Elliott 2009-02-25T09:27:22Z 2009-02-25T09:27:22Z I just found this link if you don't already have it for IE. Hopefully it helps: <a href="http://getfirebug.com/lite.html" rel="nofollow">getfirebug.com/lite.html</a> http://stackoverflow.com/questions/581130/how-to-use-inner-join-in-the-scenario/581166#581166 Comment by Jarod Elliott on How to use INNER JOIN in the scenario? Jarod Elliott 2009-02-24T10:20:16Z 2009-02-24T10:20:16Z i think the &quot;WHERE&quot; needs to be &quot;friends.friend_id = 0004&quot; instead of user_id http://stackoverflow.com/questions/255511/php-echo-line-breaks/255512#255512 Comment by Jarod Elliott on PHP Echo Line Breaks Jarod Elliott 2008-11-02T22:09:57Z 2008-11-02T22:09:57Z @Imran - good question! I was wondering that myself but don't have a Mac OS X to test with. http://stackoverflow.com/questions/255511/php-echo-line-breaks/255512#255512 Comment by Jarod Elliott on PHP Echo Line Breaks Jarod Elliott 2008-11-01T05:54:15Z 2008-11-01T05:54:15Z Don't have access to linux right now to check but i'm pretty sure the \r doesn't come out properly in linux if you viewed it as a text file. Should be pretty easy to test the various options if you need to see what they look like. http://stackoverflow.com/questions/255511/php-echo-line-breaks/255528#255528 Comment by Jarod Elliott on PHP Echo Line Breaks Jarod Elliott 2008-11-01T04:24:56Z 2008-11-01T04:24:56Z +1 for the history which i didn't include :) http://stackoverflow.com/questions/255511/php-echo-line-breaks Comment by Jarod Elliott on PHP Echo Line Breaks Jarod Elliott 2008-11-01T04:10:19Z 2008-11-01T04:10:19Z Further to my answer below, how are you using the echo'd output from php? Obviously in a web page the &lt;br/&gt; tag defines a line break so i assume this is being used differently? http://stackoverflow.com/questions/242307/root-element-missing-error/242359#242359 Comment by Jarod Elliott on root element missing error Jarod Elliott 2008-10-28T06:06:32Z 2008-10-28T06:06:32Z just use any standard built in C# file stream or text writer. If you're not familiar with these i would strongly suggest doing some C# tutorials before going further with this. http://stackoverflow.com/questions/239213/is-it-safe-to-assume-that-the-path-c-windows-system32-always-exists Comment by Jarod Elliott on Is it safe to assume that the path C:\WINDOWS\system32 always exists? Jarod Elliott 2008-10-27T06:39:45Z 2008-10-27T06:39:45Z this question has been posted twice ... i already answered the other copy of this question http://stackoverflow.com/questions/181951/question-regarding-iframe-and-redirection/181958#181958 Comment by Jarod Elliott on Question regarding iframe and redirection Jarod Elliott 2008-10-08T09:50:15Z 2008-10-08T09:50:15Z after a quick look around, it appears that this is not possible with asp. It is processed on the server so it's not aware of the frames on the client side. I think you may be stuck using a javascript option in the page itself. http://stackoverflow.com/questions/181951/question-regarding-iframe-and-redirection/181958#181958 Comment by Jarod Elliott on Question regarding iframe and redirection Jarod Elliott 2008-10-08T09:46:54Z 2008-10-08T09:46:54Z ahh ok. I'm not really familiar asp so i'm not aware of the options using response.redirect http://stackoverflow.com/questions/181272/what-does-select-count1-from-tablename-on-any-database-tables-mean/181277#181277 Comment by Jarod Elliott on what does "select count(1) from table_name" on any database tables mean Jarod Elliott 2008-10-08T03:58:22Z 2008-10-08T03:58:22Z @dacracot: it may but i don't believe so. From what i understand oracle just re-writes count(1) to be count(*) in the background