Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it true that loading the data and process them programmatically is faster than SQL queries ? I am supposed to optimized the legacy applications which are running slow because of the growing size of data. Any kind help is appreciated.

share|improve this question
2  
yes that is true. Or maybe its not. Or maybe it depends on the data/queries/structure/etc – Sam Holder Jul 5 '11 at 15:44
1  
This is an almost meaningless question. As @Sam pointed out, the answer will depend completely on how the queries are written, the table structure, the presence of indexes, the database optimizer, the type of DB (Oracle, MSSQL, MySQL, etc), the configuration of the hardware, the speed of the hardware... I suggest you pick a single specific query that is slow, provide sufficient information, and ask a specific question. – Jim Garrison Jul 5 '11 at 15:47

closed as not a real question by Sam Holder, Jim Garrison, a_horse_with_no_name, Antony Vennard, Toon Krijthe Nov 11 '11 at 9:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 4 down vote accepted

This might be true in certain cases, but generally you would be able to resolve slow queries by tweaking the queries or adding indexes in the database so that they run more efficiently. There will be tools for your database which will help you to understand how your queries are executed in the database, and this will help you to optimize them. Like Oracle's Explain Plan.

share|improve this answer

As Sam suggests, a lot depends on what you are trying to do. A simple custom solution can be much faster than general purpose database. However, a database can out perform a poorly tuned solution. (And do much much more besides)

share|improve this answer

Most of the overhead involved in querying the database is involved in setting up the connection, preparing the statements, etc. Actually processing your result set once it's been returned doesn't take long at all. The fewer times you're performing those expensive actions, the faster your code is going to run.

This is particularly noticeable where you have N + 1 queries, where you have an initial query that returns N rows, and then you execute one query for each of those N rows.

To take a simple example, say you have a table that contains Invoices, and a table that contains Items on those Invoices. You may have your initial query that simply returns the list of Invoices, and you create Invoice objects to store the data for each of the rows. Then for each of those Invoice objects, you run a query to populate the List of Item objects.

It would be more efficient to write a single query that returns all of that data in one result set, and then use Java to process it and break it out into the relevant objects.

share|improve this answer

An SQL query will be faster.

Yes, it depends. But if the data is already in the database, and the processing does not involve resources outside the database, or particularly complex algorithms (eg a shortest-path search through a graph), i would expect processing inside the database with an SQL query to be faster. Firstly, because you don't incur the overhead of moving the data out of the database and back in again, and secondly, because a properly-written query can be executed very efficiently, taking advantage of indexes, order in the data, etc.

Note that i am specifically talking about doing the processing with a query, not a stored procedure. Stored procedures are not very good at taking advantage of indexes and so on, and so are typically slower than an equivalent query. They're still useful, because there are lots of things you can't express in a query, but where the two go head to head, queries usually win.

share|improve this answer

The answer to your question is... complicated, and depends on the data and a correct reading of the question. I'm assuming the correct reading of your question is:

Given data that is already in a database, is it faster to load the data from the database and process it in code OR to have the SQL query do the processing and return results.

Given the above, the answer still depends on the data and the queries you are trying to run. It's worth noting that most databases are highly optimized code and, for things they can do fast, it's generally a better idea to let them do that work. For example, it's almost certainly faster to ask the database What rows have a value of 1 for the field X than to pull down all the rows and find the ones that meet that criteria. Obviously, that's a very simple example.

The database can do some very complex things very efficiently. That being said, there are some things you can do to help it perform well:

  • Use appropriate indexes where you can
  • When doing joins across multiple tables, make sure you're doing them correctly (ex, a cross join/cartesian product and a distinct modifier is probably not what you want)
  • Using the LIKE operator can make taking advantage of indexes problematic, resulting in full table scans. Be careful with them.

There's obviously a lot more things to know about efficient database queries. However, the main thing to keep in mind is that the database code is probably better than you would write on your own. Figure out how to take advantage of it's wonderfulness, if you can.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.