up vote 180 down vote favorite
56

I work for a school district. Every year we have to export a list of students from our student management system and send it to a company that handles our online exams.

So to do this export, we had to hire someone who knew the inner workings of our student management system. He wrote an sql (Adaptive Sybase SQL Anywhere) query to export the students to a csv file like we needed. This was before I started working for the district, so for a while I assumed this was an actually application, until it came time for me to do the export myself.

And every year he charges us $500 to update this query to export the students for the current year. So when I discovered it was only a query (.bat file and .sql file), my thought was "I can update this myself". All I have to do is change the years in the query (eg. 2009 to 2010).

The query (.sql file) itself has this comment at the top:

// This code was writtend by [the guy]
// and is the property of [his company]...Copyright 2005,2006,2008,2009
// This code MAY NOT BE USED without the expressed written consent of 
// [his company].

(Yes, it really does says "writtend".)

So now my boss is worried that we're violating the copyright. And that the guy is gonna find out that I updated the query myself because we haven't asked him to update it this year and take legal action.

So back to the subject's question: Can he really copyright this query? And if so, is modifying it ourselves a copyright violation? In my mind, a single query isn't program code. It's more a command line command. But I don't know what it's considered legally.

flag
29  
Dang, that's a rough question. I'm eager to hear other people's thoughts. However, remember that this site can't really give you legal advice, so you'll probably want to talk to a real attorney for a definitive answer. – Topher Fangio Dec 3 '09 at 15:57
18  
well the copyright is for 2009 so you should be golden after new years eve right? – Jrud Dec 3 '09 at 15:59
51  
Hire a consultant to write you a query which will accept date range as parameters and export your data. In the contract specify that school owns the code -- pay by hour of work. – Damir Sudarevic Dec 3 '09 at 16:01
39  
OMG, please post the query as a different question. I'm sure we can rewrite it from scratch and parametriced it. – Jonathan Dec 3 '09 at 17:01
69  
This made me think of the Borenstein quote: "It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would instead require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter." – JRL Dec 3 '09 at 17:32
show 34 more comments

68 Answers

1 2 3
up vote 170 down vote

If I were you, I would write a full description of what the query needs to do, including all the tables, fieldnames etc., and post that here. Someone here is bound to be able to write a new version of the query that is not copyright your developer, and you can edit it each year to your hearts content.

link|flag
23  
Best answer! [15 chars] – eyelidlessness Dec 3 '09 at 18:21
6  
Can SQL code really qualify for a copyright anyway? – David Brunelle Dec 3 '09 at 20:45
3  
Of course, thn there's the problem of the code written automatically released under CC-Wiki, unless whever waives that... – RCIX Dec 4 '09 at 7:17
4  
@David I love how you just ask the original question again but in a different way – Lumpy Dec 4 '09 at 15:34
20  
@David, see here for your answer: stackoverflow.com/questions/1840847/… – PaulG Dec 4 '09 at 16:53
show 8 more comments
up vote 118 down vote

He charges $500 to change 2009 to 2010? Oh man what a rip.

This year pay him his $500 and tell him you want the query to take the school year as a parameter. See how he reacts to knowing this will be his last time working for you.

link|flag
60  
I can save you $400 over this answer. Just tell the guy, "Look, this situation is ridiculous. I'll buy this code off you for $100. Or I can reimplement it myself in a couple hours. Your choice." – Jason Orendorff Dec 3 '09 at 16:09
5  
Ehh.. ethics, who need 'em.. – Ryan Emerle Dec 3 '09 at 16:13
4  
Unfortunately, he'll quote a different (higher) price to parameterise it. Your best bet is to get someone in to rebuild the query (and if you happen to leave his current query lying around while they do so, so what? If it's a hellishly complex query - which I doubt - it can be re-written so it does not look like the original, if it's a simple query, once the new one looks different he can't prove IP). My two cents. – Binary Worrier Dec 3 '09 at 16:13
3  
his copyright comment suggests that you cannot even run the sql without his permission... -i agree though, what a con. – Matt Joslin Dec 3 '09 at 16:16
3  
the best solution is definitely to hire an ETHICAL programmer to write it the correct way. Perhaps with a clean front end to let a person who's not a programmer input the new year and hit a button... – Paul Dec 3 '09 at 19:36
show 4 more comments
up vote 52 down vote

First, the standard disclaimer: I'm not an attorney, so don't take anything I say as legal advice.

Edit: what I'm saying below is about the law in the United States -- in other countries it is likely to vary, though thanks to the Berne Convention, copyright law is fairly uniform across many countries.

Copyright can cover creative, written works, and I'd say a SQL query can/does fall within that range.

At the same time, unless his contract with the school is written quite strangely, he wrote this for them as a work for hire. In that case, his claim of copyright is probably an outright falsehood -- when a work is written for hire, the hirer, not the author, owns the copyright.

Edit: There seems to be some controversy about what constitutes a work made for hire. According to US law (17 USC, §101):

 A “work made for hire” is—

  (1) a work prepared by an employee within the scope of his or her employment;

  or

  (2) a work specially ordered or commissioned for use as a contribution to a
  collective work, as a part of a motion picture or other audiovisual work,
  as a translation, as a supplementary work, as a compilation, as an
  instructional text, as a test, as answer material for a test, or as an
  atlas, if the parties expressly agree in a written instrument signed by
  them that the work shall be considered a work made for hire.

Since this query seems to fall within the scope of '(1)', it can qualify as a work made for hire, even without an express agreement to that effect. The possible exception would be if his contract was written so it excluded writing the query from falling within the scope of his employment.

Edit2: The only part that's really open to question is whether he qualifies as an employee or not. In the case of a consultant, that can be a difficult question to answer. Basically, if he work's completely independently, and just delivers a final result then he's probably not. If he works about like a normal employee, and they have control over things like his schedule and such, then there's a pretty good chance that he would qualify as just a temporary employee.

link|flag
8  
@Jerry It is the other way around. If nothing was specified, then it is not work-for-hire. Work for hire has to be specifically detailed to be valid. – Doug Neiner Dec 3 '09 at 16:09
4  
I'm sorry, but not all of us are in the USA, not all of us understand that mambo-jambo of law text... can you explain what were you actually saying? – elcuco Dec 3 '09 at 21:33
show 4 more comments
up vote 47 down vote

Find someone who has never seen the extorter's code to inspect the table structure and derive an equivalent query in a cleanroom fashion.

link|flag
2  
Somewhat libellous, the use of the derogative 'extorter', however apparently accurate it may be but sound :) – Lazarus Dec 3 '09 at 16:24
9  
It's not libel if it's accurate. – Breton Dec 4 '09 at 6:22
2  
@Breton: truth is usually but not always a defense against libel. – Jimmy Dec 4 '09 at 23:09
8  
"Somewhat libellous". Sorry, how does libel come into it considering the query writer is completely anonymous? I find the strong comments very interesting. Seems to have hit a raw nerve. – Ash Dec 5 '09 at 3:24
show 2 more comments
up vote 46 down vote

Yes, SQL queries CAN be protected by copyright.

The question you really need to be asking is - does he actually own the copyright, or is he just saying he does. This would depend on the terms of the contract under which the query was written.

Edit: I want to modify my answer - you can do what you wish with it (I am not a lawyer!), as long as there is no strange contract involved.

Case 1: He sold you the .sql file as a "program" - the .sql file itself is the program, and you can modify it however you want - same with if you buy any application you can open it with a hex editor and change bits around. There is no EULA prohibiting this.

Case 2: He sold you the .sql file as source code - he sold you the source meaning the source was what you bought from him and again you can modify it as you're just modifying what you bought.

People are getting too caught up in the fact that you can "view the source" of a .sql file - it's either a program or it's a source file depending on the contract, and either way you can modify it. Copyright protects people from unauthorized distribution, not modification for internal use.

link|flag
show 1 more comment
up vote 32 down vote

Per US copyright law, section 102, paragraph b:

In no case does copyright protection for an original work of authorship extend to any idea, procedure, process, system, method of operation, concept, principle, or discovery, regardless of the form in which it is described, explained, illustrated, or embodied in such work.

Here's the original.

DISCLAIMER: me != lawyer

Just a thought: you may find it cheaper to have a lawyer review this, than to pay $500/yr for updates..

link|flag
7  
That's correct, he can't claim copyright over the process itself but he can claim copyright of the specific 'code' written by him to execute that process. If you try to read that as a disabling statement for this issue then no software would be copyrightable. – Lazarus Dec 3 '09 at 16:05
1  
@Lazarus, he's claiming protection against the unauthorized execution of the the code.. Again, not a lawyer :) – Ryan Emerle Dec 3 '09 at 16:08
1  
@Ryan - I think you meant "than" not "then" in the last sentence, it makes the meaning a lot different... – NVRAM Dec 3 '09 at 17:23
show 5 more comments
up vote 22 down vote

As always, if you're truly worried about it then ask a lawyer. We're developers.

If I saw something like that and the query wasn't anything overly complicated, I'd re-write it myself (possibly using his query strictly to figure out the database schema, but that's it).

At that point, you'd be updating your work...not somebody else's.

As for his query...if there was no contract signed at the time of the work, I think it'd be a little flaky to enforce the Copyright.

link|flag
4  
Ouch, that's reverse engineering... equally dodgy. – Lazarus Dec 3 '09 at 16:01
4  
But you're not reverse engineering his query...only using it to determine the database structure (of a database that doesn't belong to him to begin with). – Justin Niessner Dec 3 '09 at 16:03
1  
Hmmm... if you were 'clean room', i.e. you'd never seen his code and you wrote your own query from scratch without any reference to his code, whether direct or through the comments of someone who had seen his code, then you are right. Unfortunately the Asker has already admitted visibility of the code – Lazarus Dec 3 '09 at 16:08
1  
@Vinko, the problem comes from trying to circumvent copyright by seeing some code you want to use but not wanting to be bound by the copyright of the author so you just rewrite it, admittedly your own way, but in essence utilising knowledge gained from looking at the copyrighted code. It's next to impossible to prove that you didn't learn something from the original code, once you've read it. The answer is to get someone else who has never see the code to rewrite it and make sure that they surrender the copyright or that you have a more permissive license as a result. – Lazarus Dec 3 '09 at 16:19
show 4 more comments
up vote 18 down vote

Find someone else to rewrite the query for you (or do it yourself) and never use his code again.

You dont have to use his code.

link|flag
1  
I agree. Don't pay this guy another penny. Period. – BBlake Dec 3 '09 at 18:11
show 1 more comment
up vote 18 down vote

Actually i am a bit surprised at some of the attitudes to this question. The programmer was initially brought in as no one else could solve the problem. The solution may or may not have been easy but no one else could do it and he could and did.

He then gets called back in every year to do maintenance. WHile the changing the year is not exactly rocket science and maybe someone else would have suggested parameters he was not asked to (i assume). Did someone for arguments sake write a specification for the programer which he didn't adhere to? Or did someone say to him just fix it. How much $500 cool, hurry up. Oh and come back next year and maintain it please.

Much the wrath here seems to be around the simplicity of the problem he solved, but surely that is not the point? He solved the actual problem, ensured it all ran each year and got an agreed recompense. My maths is awfull, but i suspect there are people who can write applications to do fast Fourier transforms without breaking into a sweat. But because they find it easy should they charge little or no money for "solving the problem".

The point about the copyright. Well many of the post here started with "I AM NOT A LAWYER" no and neither i suspect was the original programer. He (hamfistedly) tried to protect himself and i agree with others that it is either not worth the paper it is written on or that all that is needed is to rewrite without looking at or using the code or some of the other suggestions here not hammering some guy for earning living.

Ok so mark me down now for dissenting.

link|flag
6  
He may have been worth the initial payment. That's not the issue here. That he continues to collect $500 a year for changing one number suggests to me that he's not adhering to any code of ethics I'm familiar with. – David Thornley Dec 3 '09 at 21:38
3  
I don't see a problem with him charging $500, $1000 or a million dollars to change a parameter. If the school wants to pay him, then so be it, and good on him for making the cash. I do however see a problem with the copyrighting of a query. I mean wtf. – Dominic Bou-Samra Dec 5 '09 at 2:23
1  
If the developer explained that to the customer at the outset that they were effectively required to pay a yearly maintenance for him to solve their problem, then that would be different. I doubt either party agreed to residuals for the original work and thus this amounts to extortion. – Thomas Feb 20 at 8:04
show 4 more comments
up vote 15 down vote

I am not an attorney, but from what I understand:

Unless you had an express "work for hire" agreement in writing, or could prove that a mutual understanding of "work-for-hire" existed, then he would have been within his legal right to limit the use of that code.

"Work for hire" basically means anything created by an individual while under a "work-for-hire" arrangement, is immediately the property of the person hiring them. Without such an agreement, new work created is automatically copyrighted to the individual writing it. I believe any work created by an employee (not sub-contractor) is automatically considered "work for hire".

Of course you cannot copyright ideas, only a specific expression of those ideas.

link|flag
1  
@dcneiner:A contractor is normally considered a temporary employee. This SQL query does not seem to fall within any of the categories where it would need an express agreement to qualify as a work made for hire. – Jerry Coffin Dec 3 '09 at 17:13
show 3 more comments
up vote 12 down vote

I'd love to do work for your school district. Apparently your contractors can stick whatever conditions they like into their comments and your first impulse will be to honor them rather than looking up the contract and determining what the actual conditions are.

link|flag
up vote 11 down vote

Nobody seems to have picked up the fact that Copyright deals with copying. If the OP is neither copying nor distributing, Copyright really doesn't appear to apply in this instance.

i.e. the School may not publish or sell as their own work (perhaps) without permission. You'd want to consult your lawyer in those cases.

In any event, the OP has consent to run the program which runs some sql in a particular file. I assume the OP hasn't circumvented any anti-tampering controls put in place by the programmer.

The sql, which is part of the program (work for hire notwithstanding), is just text in a file. Now it may be the case that modifying any/all files related to the program without express consent of the programmer may void any warranties, but that's really about it.

And for $500, nobody's going to sue you. Do you know what lawyers cost? But don't be surprised if you void any support by the original programmer. Fair warning there.

When all is said and done, if all the guy does for $500 is take a 2 minute change that's a bit brash. But are you certain that's all he's doing? $500 for a 1/2 days work at a normal consulting charge out rate isn't unrealistic.

link|flag
4  
Copyright deals with a lot more then copying... – Goran Dec 4 '09 at 19:34
2  
@Robert: Copyright is about whatever copyright law says it is (theoretically limited by the US Constitution in the USA). The limited monopoly includes the right to create derivative works. – David Thornley Dec 7 '09 at 21:56
1  
@David, That goes without saying, it's also entirely dependent where you live and work. My point was to understand the spirit of what copyright is for, and that modifying something you own is not a copyright violation. It may be a violation of the contract, or of the warranty, but what they're proposing doesn't appear to be a violation of copyright. – Robert Paulson Dec 7 '09 at 22:48
show 2 more comments
up vote 9 down vote

Write your own version of the "application" from scratch. How hard can it be?

link|flag
up vote 8 down vote

Checkout Aharonian v. Gonzales.

Basically, you cannot copy the source code of an application, but you can create an application that is functionally similar so long as that does not infringe the copyright of the source code itself.

In essence, you can recreate the SQL queries, but you can't copy them directly.

Still, talk to a lawyer about it if you have additional concerns.

link|flag
show 1 more comment
up vote 7 down vote

The fact that it is a SQL query is a red herring. It is source code and intellectual property just like if it was compiled into an executable. As others have already said, any limitations on your use of the software depends mostly on the terms of your agreement.

I will observe that his comment says:

// This code MAY NOT BE USED without the expressed written consent of

Which says nothing of modifying it, plus if you modify it then you could also argue that you aren't using his code.

link|flag
4  
A modified version would be considered a derivative work of the original script depending on how much alteration occurs. You would have to rewrite most of it to avoid the original copyright, in which case you may as well just rewrite the whole thing and be done with it. – Adam Lassek Dec 3 '09 at 20:40
up vote 6 down vote

I think you'll need to look not at the code but at the contract under which the individual wrote the code. Normally in any kind of programming activity there is a clear indication of the ownership of the source code/object code for the project.

If that wasn't in the original contract then I'd make sure it was in this one.

link|flag
up vote 6 down vote

Define a new view using the original query as a base without specifying the date parameter e.g.

create or replace view MY_VIEW as
 select STUDENT_NAME, STUDENT_NO, CLASS_YEAR
   from STUDENT_TABLE
  where STUDENT_CLASS = 10

Write a new query to select from the view applying the date parameter e.g.

set DATE_PARM = '2009';
select STUDENT_NAME, STUDENT_NO, CLASS_YEAR
  from MY_VIEW
 where CLASS_YEAR = %DATE_PARM
link|flag
show 1 more comment
up vote 5 down vote

Spend the $500 on a solicitor's letter

My 2 pennies is at most he can ask you leave his name in if you reuse his code (which is quite common, no?

link|flag
2  
Open Source (as defined by the OSI) has to be specified by the choice of license. I didn't see a license. Therefore, anybody who has the code legitimately is legally free to use it, but not to create a derivative work. Changing the year may well constitute creating a derivative work; consult a lawyer specializing in software copyright rather than a bunch of developers. – David Thornley Dec 7 '09 at 21:54
show 1 more comment
up vote 4 down vote

My first question would be "What did the contract you had with the developer say when you paid him last year?" Or, I'd go talk to the attorney for the school system. And take the contract from last year if there is one.

link|flag
up vote 4 down vote

You never said where you were, so any advice we could give you is useless. There are different laws in different jurisdictions.

If you're in the US, call your local Bar Association, ask for a referral to somebody who works with software copyrights, and trust what that person tells you, not anything you read on SO. If you're in another country, find out the equivalent.

Speaking as a US citizen who is not a lawyer of any sort, there's a few things to consider.

You never told us how complicated the query was. It's impossible to copyright the only reasonable implementation of something. If it's straightforward, just rewrite it in a straightforward manner. If it's complicated, the query is probably not strictly functional, and there is doubtless some creativity in it. In that case, you should rewrite it in a different manner, or hire somebody.

You should be able to find somebody who'll rewrite the query cheaper than continuing to pay $500/year, and it shouldn't be hard to find somebody more ethical than the original developer.

link|flag
up vote 4 down vote

What were the terms of the contract between the school and the contractor?

(I don't hold out much hope...but I know that anything I write for my employer is contractually bound to them owning the copyright)

I hope you find it reassuring the amount of outraged posts you have had on this question about this snake oil pedlar (I know I do)

link|flag
up vote 4 down vote

First, stop this disclaimer nonsense. You're not a lawyer even when you say "I'm a lawyer, seriously" anyway. I know this because I'm son of the king of Nigeria. Anyone who takes legal advice from a forum is doomed.

1) The code is copyrighted. If there are no contracts/agreements stating the otherwise, copyright belongs to the person who produced the code.

2) Charging $500 every year for changing year variable is outrageous but not unethical. That's how capitalism works. However modifying a code till you invalidate its owner's rights is certainly unethical.

What you need to do is to hire someone (or the same guy, whoever's cheapest), to write a query that works every year. That's the RIGHT and ETHICAL way of getting away from $500 every year. Don't forget to set your terms right this time (who owns copyright etc).

link|flag
1  
@ssg - "Charging $500 every year for changing year variable is outrageous but not unethical." IMO, it is outrageous and unethical. It is just not illegal. – Stephen C Dec 6 '09 at 3:03
show 4 more comments
up vote 3 down vote

[its not a legal advice]

You pay that guy for what? To generate you a report, or to write code to generate that report? In my opinion, as I'm not a lawyer:

  • If you pay him for a computer program, that belongs to you. (as dcneiner commented, just if it was in the contract)
  • If you pay him for use his program, that belongs to him.

[/its not a legal advice]

link|flag
1  
"If you pay him for a computer program, that belongs to you." Only if it was in the contract sadly. This is poor advice in general. Don't take something for granted unless it is in a contract. – Doug Neiner Dec 3 '09 at 16:09
show 1 more comment
up vote 3 down vote

This is a board filled with Software Engineers who know a lot about coding and little about legal issues. It is better you consult a lawyer rather than risk receiving bad advice here.

link|flag
up vote 3 down vote

You pay him for service not the code. The fact that he left you with source of his code does not allow you to use it. Even if that was single char he created it, he has not sold the copyright and he has not licensed you to use it.

If you want to save money delete his query and write your own from scratch or just let him know you are going to do just that and offer to buy his query for 500$. He'll probably go for it since it's going to be his last opportunity to get some of your money.

link|flag
up vote 2 down vote

I'm not a lawyer either but...

I would guess that you've already got permission to USE the query as you paid him for the use of it.

// This code was writtend by [the guy]
// and is the property of [his company]...Copyright 2005,2006,2008,2009
// This code MAY NOT BE USED without the expressed written consent of 
// [his company].

the verbiage doesn't say anything about "altering" it though... :)

link|flag
show 4 more comments
up vote 2 down vote

One of your many options here is to create a black box replacement. This sounds like a well-understood problem for which you can write a short requirements document. I would recommend that you include the option to parameterize variable options such as the year in question (!).

More importantly, I would recommend that you make SQL Injection and similar attacks impossible in your replacement code. To my mind, if someone has created a cash cow like this, they are focused entirely on milking you for the money and not so much on producing the quality one-time solution that you really need.

Given your requirements document, your recommendation that you have a quality database management system so that you don't get 'hacked', you should be in a solid position to write a functional replacement.

link|flag
up vote 2 down vote

It depends on the contract between the school district and the person who did the work. If its a Work for Hire contract (probably the most common), then the contractee (school) owns the work.

link|flag
up vote 2 down vote

Why not just call the guy and ask him what's up? It's probably boiler-plate comments in his code and he probably doesn't give a toss. If he does care at all, it's probably more to do with releasing his code rather than using it. Also, if he's that concerned over $500, then he doesn't have enough money to hire a lawyer anyway. Lastly he would have to prove that you used his code - how's he going to do that?

@PurplePilot PurplePilot makes a good point. If I haven't heard from a client in a year, chances are it'll take me 30 minutes just to pull up my old notes, passwords, etc and refresh my memory as far as what is going on. Then, assuming the single-click button still worked, I would probably at least want to do some spot checking. Then you have to send it off to the person (who knows if it is even the same person this year - you might have to explain to them what to do with the file). Then you have to generate an invoice if you plan on getting paid.

Basically if you consult for a living you don't get paid for 8 hours a day. But when somebody calls you once a year, it takes an hour or two just for administrative stuff.

link|flag
up vote 2 down vote

I'm a DBA and work with lots of third party applications with canned SQL code, and I've never seen something like this affixed to a SQL statement. If you have direct access into the database and can query data from it, just rewrite the code and don't give the guy another second's time as $500 for a single process like this seems like a rip from the get go.

But without seeing the code there's no telling how involved it is. I've written some SQL statements that go into hundreds of lines to get data, and they can take DAYS or even WEEKS to write and debug. If this guy invested that kind of time into the process and you're paying $500 per run, it may be worth it ... but if it's just a strait forward Select statement that's no more then a dozen or so lines long, that is not worth $500 and can be written by you or someone else with a basic understanding of SQL. Even if it looks similar to his, honestly sometimes there's only so many ways to write something. "The dog is blue"... how many ways can you say it? Not many :)

Yeah, I'm no lawyer either, but when it comes to things like this my ethics are what guide me.

link|flag
1 2 3

Your Answer

get an OpenID
or
never shown

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