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

I'm attempting to alter a Derby database that has a table like this:

CREATE TABLE sec_merch_categories (
category_id int NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
packageName VARCHAR(100) NOT NULL,
name VARCHAR(100) NOT NULL,
primary key(category_id)
);

I'd like to change the category_id column to be:

category_id int NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),

The only place I've seen that documents this is IBM's DB2, which advises dropping the expression, changing the integrity of the table, and adding the expression back. Is there anyway of doing this in Derby?

Thanks,

Andrew

share|improve this question
1  
Why not check the Derby manual instead of the DB2 manual? db.apache.org/derby/docs/10.9/ref/… – a_horse_with_no_name Dec 14 '12 at 22:33
I appreciate the response. I did check the derby manual, didn't find a way to do it there. I was asking if there was something similar to what's in the DB2 manual. – user1904997 Dec 17 '12 at 15:10

1 Answer

up vote 0 down vote accepted

You can create a new table with the schema you want (but a different name), then use INSERT INTO ... SELECT FROM ... to copy the data from the old table to the new table (or unload the old table and reload it into the new table using the copy-data system procedures), then use RENAME TABLE to rename the old table to an alternate name and rename the new table to its desired name.

And, as @a_horse_with_no_name indicated in the above comment, all of these steps are documented in the Derby documentation on the Apache website.

share|improve this answer
I saw that in the derby manual, but I was wondering if there was an easier way to do it, guess not. Thanks, I guess that works – user1904997 Dec 17 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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