Tagged Questions

Error 1025 - Error on rename of '%s' to '%s' (errno: %d)

learn more… | top users | synonyms

15
votes
7answers
16k views

What does mysql error 1025 (HY000): Error on rename of './foo' (errorno: 150) mean?

I tried this in mysql: mysql> alter table region drop column country_id; And got this: ERROR 1025 (HY000): Error on rename of './product/#sql-14ae_81' to './product/region' (errno: 150) Any ...
9
votes
1answer
2k views

Renaming foreign-key columns in MySQL

We're trying to rename a column in MySQL (5.1.31, InnoDB) that is a foreign key to another table. At first, we tried to use Django-South, but came up against a known issue: ...
5
votes
1answer
116 views

Dropping a column with a foreign key

On my mysql DB with inno_db engine, I have a table with a foreign key. I want to drop the column (along with the foreign key and the associated index of course - i don't need the whole column!) ...
4
votes
4answers
664 views

How do I delete a foreign key in SQLAlchemy?

I'm using SQLAlchemy Migrate to keep track of database changes and I'm running into an issue with removing a foreign key. I have two tables, t_new is a new table, and t_exists is an existing table. ...
3
votes
2answers
4k views

Changing MySQL primary key when foreign key contraints exist

I have two already-existing tables which look (in part) roughly like this: CREATE TABLE parent ( old_pk CHAR(8) NOT NULL PRIMARY KEY ) ENGINE=InnoDB; CREATE TABLE child ( parent_key CHAR(8), ...
3
votes
4answers
5k views

MySQL (InnoDB): need to delete column, and accompanying foreign key constraint and index

Here's my table: CREATE TABLE `alums_alumphoto` ( `id` int(11) NOT NULL auto_increment, `alum_id` int(11) NOT NULL, `photo_id` int(11) default NULL, `media_id` int(11) default NULL, ...
2
votes
2answers
1k views

MySQL Error when dropping index (errno 150)

I've got problem with dropping foreign key index, I always get the same error ALTER TABLE `comments` DROP INDEX `id_user` which outputs 1025 - Error on rename of './postuj_cz1/#sql-d834_a0c704' ...
1
vote
1answer
72 views

Forcing MySql ENUM type to use 2 bytes from the start

I am using Enum data type as a primary key referenced as a Foreign key in another table. If i have to add an extra element to this enum value, I use ALTER TABLE <table> MODIFY <colName> ...
1
vote
1answer
1k views

#1025 - Error on rename of './database/#sql-2e0f_1254ba7' to './database/table' (errno: 150)

So I am trying to add a primary key to one of the tables in my database. Right now it has a primary key like this: PRIMARY KEY (user_id, round_number) Where user_id is a foreign key. I am trying ...
1
vote
2answers
389 views

mysql rename table column name

How to rename the table field in table xyz, Fields are manufacurerid,name,status AI,PK,int Want to rename to manufacturerid , I tried using phpmyadmin panel , its not working, show error, MySQL ...
1
vote
3answers
828 views

MySQL Removing Some Foreign keys

I have a table whose primary key is used in several other tables and has several foreign keys to other tables. CREATE TABLE location ( locationID INT NOT NULL AUTO_INCREMENT PRIMARY KEY ... ) ...
1
vote
2answers
204 views

Can anyone explain this MySQL error?

ERROR 1025 (HY000): Error on rename of '.\forumf\#sql-1718_20' to '.\forumf\posts' (errno: 150) Is the error number 1025 or 150? I was deleting a primary key (which I had set by mistake) which was ...
0
votes
6answers
1k views

Problem adding Foreign Key using Alter Table with existing MYSQL Database - can't add it! Help!

I have a production database where I have renamed several column's that are foreign keys. Obviously mysql makes this a real pain to do in my experience. My solution was to drop all the indexes and ...
0
votes
1answer
141 views

MySQL #1025 Error

I get a #1025 error when this query is run. SQL query: ALTER TABLE `routes` CHANGE `end_loc` `end_loc` VARCHAR( 500 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL MySQL said: #1025 - Error ...
0
votes
0answers
213 views

Renaming Foreign Key causes MySQL 1025 Error using Django South

I'm trying to rename a class throughout the system and am getting stuck where I call db.alter_column to change foreign key references to the class. There's a ticket open for the project here: ...
0
votes
1answer
248 views

Why I got this error: “SQL Error 1025: Error on rename of '…' to '…' (errno: 150)”?

I want to rename a field of a table in MySQL ver 5.2.25, from "alter table", but I got this error: SQL Error 1025: Error on rename of '.\Packers\#sql-804_3' to '.\Packers\pattern' (errno: 150) but ...
0
votes
2answers
1k views

Can't remove indexed column, ERROR 1025 (HY000): Error on rename of .. to .. (errno: 150)

I am having trouble removing a column which is indexed. I dont really understand what is happening as I usually have no problem deleting indexes. When I try to delete the column or index I get the ...
0
votes
1answer
187 views

Trying to generate tables from Doctrine models and getting MySQL errors

Doctrine_Core::createTablesFromModels() is failing with the following error: Fatal error: Uncaught exception 'Doctrine_Connection_Mysql_Exception' with message 'SQLSTATE[42S02]: Base table or view ...
0
votes
3answers
129 views

ALTER TABLE error

Can someone explain to me why I am receiving the following error? I want to rename the column "exerciseID" to "ID" in a mysql table using the following syntax. ALTER TABLE `exercises` CHANGE ...
0
votes
2answers
111 views

Changing a column collation

Hey there, I have a database already set up. I am trying to change the collation to case sensitive on my username column so it restricts login parameters to what they signed up with. However I keep ...
0
votes
1answer
49 views

How can I add a column to the primary key of a MySQL InnoDB table?

I have tables foo and bar: create table foo(a int, b varchar(10), primary key (a)); create table bar(a int, c int, d int, primary key (a,c), ...
0
votes
1answer
100 views

Weird mysql error

Hello I have a mysql database with in it an addresses table. This is the way it's created: CREATE TABLE IF NOT EXISTS `addresses` ( `adr_id` int(11) NOT NULL AUTO_INCREMENT, `per_id` int(11) NOT ...
0
votes
1answer
65 views

MySQL - Unable to create column

I am using MySQL 5.1. When i am trying to add new field, it throws error like this, Database name is "ebill". Error Code : 1025 Error on rename of '.\ebill\#sql-98_477' to '.\ebill\user' (errno: ...
0
votes
1answer
30 views

mysql - error on running the application

mysql diplay an error OperationalError: (1025, "Error on rename of './CMMS/#sql-c40_20a' to './CMMS/member' (errno: 150)") How to solve it?? Thanks in Advance
0
votes
1answer
433 views

Resolve MySQL error when changing engine from MyISAM to InnoDB

My database experienced some corruption last week, and the technicians from the web hosting company changed all my tables to MyISAM and performed repair on those tables. However, my application ...