vote up 0 vote down star

I am working on a project currently where there are SQL strings in the code that are around 3000 lines.

The project is a java project, but this question could probably apply for any language.

Anyway, this is the first time I have ever seen something this bad. The code base is legacy, so we can suddenly migrate to Hibernate or something like that.

How do you handle very large SQL strings like that?

I know its bad, but I don't know exactly what is the best thing to suggest for a solution.

flag

73% accept rate

11 Answers

vote up 9 vote down check

It seems to me that making those hard-coded values into stored procedures and referencing the sprocs from code instead might be high yield and low effort.

link|flag
I can't see any reason NOT to make them stored procedures. High yield and low effort is right! – AJ Dec 19 '08 at 22:15
You sound pretty positive for not having seen the query. :) Precisely what hard-coded values are you referring to? – le dorfier Dec 19 '08 at 22:52
vote up 4 vote down

I guess the first question is, what are you supposed to do with it? If it's not broken, quietly close it up and pretend you've never seen it. Otherwise, refactor like mad - hopefully there's some exit condition somewhere that looks something like a contract.

link|flag
+1 close the door, walk away, nothing to see here folks! – Steven A. Lowe Dec 19 '08 at 22:15
Unfortunately it is broken. Or rather it was changed and now doesn't meet code quality standards. – John Sonmez Dec 19 '08 at 22:15
What code quality standards doesn't it meet? I hope there are separate best practices for procedural code and declarative code. Otherwise you're in deep shit. – le dorfier Dec 19 '08 at 22:21
If its in the Java, is now Java code. – John Sonmez Dec 19 '08 at 22:23
Then take it out of java and put it into one SP. That's not decomposing it, it's moving it from an inappropriate place to an appropriate place, as is, It won't fix what's broken, but may change the code standards rules. (It should be moved in any case.) – le dorfier Dec 19 '08 at 22:31
show 1 more comment
vote up 4 vote down

Does the SQL has a lot of string concatenations for the variables?

If it doesn't you can extract them a put them in resources files. But you'll have to remove the string conatentation in the line breaks.

The stored procedure approach you used is very good, but sometimes when there's need to understand what the SQL is doing, you have to switch from workspace to your favorite SQL IDE. That's the only bad thing.

For my suggestion it would be like this:

String query = "select ......."+
3000 lines.

To

ResourceBundle bundle = ResourceBundle.getBundle("queries");
String query = bundle.getString( "customerQuery" );

Well that's the idea.

link|flag
vote up 2 vote down

The best thing I could come up with so far is to put the query into several stored procedures, the same way I would handle a method thats too long in Java.

link|flag
Several stored procedures? Is this one big query or what is this exactly? – BobbyShaftoe Dec 19 '08 at 22:09
Most definitely there is. The biggest problem being its difficult to understand. – John Sonmez Dec 19 '08 at 22:15
There's nothing inherently evil about big long sql statements. Understanding them isn't easier if you decompose them, and take the sum of the parts. And it's probably more efficient this way. Any way to know if it was profiled/optimized? – le dorfier Dec 19 '08 at 22:15
Decompositon is a non-transferable concept from procedural code (where it's almost always a win) to declarative code (where it's almost always a lose). That's why temp tables are an SQL antipattern. – le dorfier Dec 19 '08 at 22:20
Decomposition absolutely works in SQL. You can take apart a complicated query that has multiple joins and make it simple to understand using views or stored procedures. – John Sonmez Dec 19 '08 at 22:23
show 4 more comments
vote up 2 vote down

I'm in the same spot you are... My plan was to pull the SQL into separate.sql files within the project and create a utility method to read the file in when I need the query.

string sql = "select asd,asdf,ads,asdf,asdf," 
           + "from asdfj asfj as fasdkfjl asf"
           + "..........................."
           + "where user = @user and ........";

The query gets dumped into a file called usageReportByUser.sql
and the becomes something like this.

string sql = util.queries("usageReportByUser");

Make sure it's done in a way that the files are not publicly accessible.

link|flag
You can use the ResourceBundle to loead the sql very easily. It's pretty straight forward. And then have the variables replaced using something like Velocity. – Oscar Reyes Dec 19 '08 at 23:08
Excellent. Thanks. – jms Dec 19 '08 at 23:50
vote up 1 vote down

What I do in php is this:

$query = "SELECT * FROM table WHERE "; $query .= "condition<5 AND "; $query .= "condition2>10 AND ";

. . .

and then, once you've finished layering on $query:

mysql_query($query);

link|flag
vote up 1 vote down

Use the framework iBatis

link|flag
vote up 1 vote down

I wrote a toolkit for this a while back and have used it in several projects. It allows you to put queries in mostly text files and generate bindings and documentation for them.

Check out this example and an example use (it's pretty much just a prepared statement compiled to a java class with early bound/typesafe query bindings).

It generates some nice javadocs, too, but I don't have any of those online at the moment.

link|flag
vote up 1 vote down

I second the iBatis recommendation. At the least, you can pull the SQL out from Java code that most likely uses StringBuffer and appending or String concat into XML where it is just easier to maintain.

I did this for a legacy web app and I turned on debugging and ran unit tests for the DAOs and just copied the generated sql for each statement into the iBatis xml. Worked pretty smooth.

link|flag
vote up 0 vote down

One easy way would be to break them out into some kind of constants. That would at least make the code more readable.

link|flag
vote up 0 vote down

I store them in files (or resources), and then read and cache them on app start (or on change if it's a service or something).

Or, just put them into a big old SqlQueries class as consts or readonlys.

link|flag

Your Answer

Get an OpenID
or

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