User Jarod Elliott - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T09:58:39Zhttp://stackoverflow.com/feeds/user/1061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1337767/specify-more-than-one-item-in-the-where-clause/1337774#13377742Answer by Jarod Elliott for Specify more than one item in the where clauseJarod Elliott2009-08-26T22:04:23Z2009-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#9904070Answer by Jarod Elliott for Encoding problems in PHP / MySQLJarod Elliott2009-06-13T09:39:20Z2009-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#9589001Answer by Jarod Elliott for PHP mysql_query not returning false...Jarod Elliott2009-06-06T03:09:02Z2009-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#9379920Answer by Jarod Elliott for How to extract data from a PDF file while keeping track of its structure?Jarod Elliott2009-06-02T05:14:21Z2009-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#9374504Answer by Jarod Elliott for Best free way to store 20 million rows a day?Jarod Elliott2009-06-02T00:33:44Z2009-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#27744517Answer by Jarod Elliott for MySql: MyISAM vs. Inno DB!Jarod Elliott2008-11-10T09:45:20Z2009-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#7036200Answer by Jarod Elliott for Sql Query not working!Jarod Elliott2009-04-01T00:38:44Z2009-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#6521961Answer by Jarod Elliott for How to copy indexes from one table to another in SQLSERVERJarod Elliott2009-03-16T21:22:09Z2009-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#6497211Answer by Jarod Elliott for how to send a signal to webpageJarod Elliott2009-03-16T09:16:02Z2009-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-sheets13Good Cheat Sheets?Jarod Elliott2008-08-20T21:53:28Z2009-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#6453341Answer by Jarod Elliott for Runtime query analysis and optimizationJarod Elliott2009-03-14T04:01:48Z2009-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#6129361Answer by Jarod Elliott for Multiple Inline Conditions AND OR vs ELSEIFJarod Elliott2009-03-04T23:16:09Z2009-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#5854230Answer by Jarod Elliott for What are the best Javascript/Flash frameworks to render graphs or charts from data?Jarod Elliott2009-02-25T10:07:22Z2009-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#5852930Answer by Jarod Elliott for ie7 bottom scrollbar hellJarod Elliott2009-02-25T09:20:49Z2009-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#5836420Answer by Jarod Elliott for PDF to text tool or Java library?Jarod Elliott2009-02-24T21:14:40Z2009-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#5797020Answer by Jarod Elliott for Why are my images stored as MySQL longblobs only being displayed partially?Jarod Elliott2009-02-23T22:41:36Z2009-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#5796811Answer 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 Elliott2009-02-23T22:37:03Z2009-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#5761040Answer by Jarod Elliott for How do I select titles from a mysql DB that begin with a specific letter?Jarod Elliott2009-02-22T23:46:13Z2009-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#5758053Answer by Jarod Elliott for Where can I get started writing a media server in C# like PlayOnJarod Elliott2009-02-22T21:10:23Z2009-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#5598944Answer by Jarod Elliott for Best way to calculate dates from results?Jarod Elliott2009-02-18T04:59:04Z2009-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#5441920Answer by Jarod Elliott for Connect my 360 to an applicationJarod Elliott2009-02-13T00:20:44Z2009-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#5054483Answer by Jarod Elliott for when to use OPTIMIZE in mysqlJarod Elliott2009-02-02T23:38:04Z2009-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#3856850Answer by Jarod Elliott for Test data generators / quickest route to generating solid, non-repetitive, but not-real database sample data?Jarod Elliott2008-12-22T06:49:21Z2008-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-team4"Best Practices" for a software research and development team?Jarod Elliott2008-12-20T02:51:38Z2008-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&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&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#2773891Answer by Jarod Elliott for How can I update a progress display on a Perl command-line application?Jarod Elliott2008-11-10T09:05:03Z2008-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#2713251Answer by Jarod Elliott for Lightweight SQL database which doesn't require installationJarod Elliott2008-11-07T05:42:39Z2008-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#2667581Answer by Jarod Elliott for Guesstimating database size.Jarod Elliott2008-11-05T21:24:06Z2008-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#2555355Answer by Jarod Elliott for Remove the default browser header and footer when printing HTML.Jarod Elliott2008-11-01T04:35:15Z2008-11-01T04:41:51Z<p>These a usually browser specific print settings.</p>
<p>In IE & 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#2555129Answer by Jarod Elliott for PHP Echo Line BreaksJarod Elliott2008-11-01T04:04:13Z2008-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#2424874Answer by Jarod Elliott for Whats the best book or article you have read on optimizing mysql servers (linux)?Jarod Elliott2008-10-28T07:37:44Z2008-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#277445Comment by Jarod Elliott on MySql: MyISAM vs. Inno DB!Jarod Elliott2009-08-03T21:58:45Z2009-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#937450Comment by Jarod Elliott on Best free way to store 20 million rows a day?Jarod Elliott2009-06-02T01:17:22Z2009-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#277445Comment by Jarod Elliott on MySql: MyISAM vs. Inno DB!Jarod Elliott2009-04-29T00:52:11Z2009-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#647308Comment by Jarod Elliott on Good wiki software for internal company use?Jarod Elliott2009-03-15T05:49:19Z2009-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#585293Comment by Jarod Elliott on ie7 bottom scrollbar hellJarod Elliott2009-02-25T09:27:22Z2009-02-25T09:27:22ZI 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#581166Comment by Jarod Elliott on How to use INNER JOIN in the scenario?Jarod Elliott2009-02-24T10:20:16Z2009-02-24T10:20:16Zi think the "WHERE" needs to be "friends.friend_id = 0004" instead of user_idhttp://stackoverflow.com/questions/255511/php-echo-line-breaks/255512#255512Comment by Jarod Elliott on PHP Echo Line BreaksJarod Elliott2008-11-02T22:09:57Z2008-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#255512Comment by Jarod Elliott on PHP Echo Line BreaksJarod Elliott2008-11-01T05:54:15Z2008-11-01T05:54:15ZDon'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#255528Comment by Jarod Elliott on PHP Echo Line BreaksJarod Elliott2008-11-01T04:24:56Z2008-11-01T04:24:56Z+1 for the history which i didn't include :)http://stackoverflow.com/questions/255511/php-echo-line-breaksComment by Jarod Elliott on PHP Echo Line BreaksJarod Elliott2008-11-01T04:10:19Z2008-11-01T04:10:19ZFurther to my answer below, how are you using the echo'd output from php? Obviously in a web page the <br/> tag defines a line break so i assume this is being used differently?http://stackoverflow.com/questions/242307/root-element-missing-error/242359#242359Comment by Jarod Elliott on root element missing errorJarod Elliott2008-10-28T06:06:32Z2008-10-28T06:06:32Zjust 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-existsComment by Jarod Elliott on Is it safe to assume that the path C:\WINDOWS\system32 always exists? Jarod Elliott2008-10-27T06:39:45Z2008-10-27T06:39:45Zthis question has been posted twice ... i already answered the other copy of this questionhttp://stackoverflow.com/questions/181951/question-regarding-iframe-and-redirection/181958#181958Comment by Jarod Elliott on Question regarding iframe and redirectionJarod Elliott2008-10-08T09:50:15Z2008-10-08T09:50:15Zafter 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#181958Comment by Jarod Elliott on Question regarding iframe and redirectionJarod Elliott2008-10-08T09:46:54Z2008-10-08T09:46:54Zahh ok. I'm not really familiar asp so i'm not aware of the options using response.redirecthttp://stackoverflow.com/questions/181272/what-does-select-count1-from-tablename-on-any-database-tables-mean/181277#181277Comment by Jarod Elliott on what does "select count(1) from table_name" on any database tables meanJarod Elliott2008-10-08T03:58:22Z2008-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