Tagged Questions
The alter-table tag has no wiki summary.
49
votes
5answers
37k views
Altering a column: null to not null
I have a table that has several nullable integer columns. This is undesirable for several reasons, so I am looking to update all nulls to 0 and then set these columns to "NOT NULL." Aside from ...
33
votes
9answers
31k views
Adding an identity to an existing column
I need to change the primary key of a table to an identity column, and there's already a number of rows in table.
I've got a script to clean up the IDs to ensure they're sequential starting at 1, ...
31
votes
5answers
13k views
How do I rename a column in a SQLite database table?
I would need to rename a few columns in some tables in a SQLite database.
I know that a similar question has been asked on stackoverflow previously, but it was for SQL in general, and the case of ...
15
votes
5answers
8k views
Optimizing MySQL for ALTER TABLE of InnoDB
Sometime soon we will need to make schema changes to our production database. We need to minimize downtime for this effort, however, the ALTER TABLE statements are going to run for quite a while. Our ...
13
votes
5answers
37k views
check if temp table exist and delete if it exists before creating a temp table
I am using the following code to check if the temp table exists and drop the table if it exists before creating again. It works fine as long as I don't change the columns. If I add a column later, it ...
12
votes
14answers
9k views
ALTER TABLE without locking the table?
When doing an ALTER TABLE statement in MySQL, the whole table is read-locked for the duration of the statement. If it's a big table, that means insert or update statements could be locked for a ...
11
votes
3answers
16k views
Sql Server add auto increment primary key to existing table
As the title, I have an existing table which is already populated with 150000 records. I have added an Id column (which is currently null).
I'm assuming I can run a query to fill this column with ...
9
votes
3answers
478 views
Can you index tables differently on Master and Slave (MySQL)
Is it possible to set up different indexing on a read only slave, from on the master? Basically, this seems like it makes sense given the different requirements of the two systems, but I want to make ...
7
votes
3answers
316 views
Can I create a named default constraint in an add column statement in SQL Server?
In SQL Server, I have a new column on a table:
ALTER TABLE t_tableName
ADD newColumn NOT NULL
This fails because I specify NOT NULL without specifying a default constraint. The table should ...
6
votes
1answer
123 views
Altering MySQL InnoDB table with minimal downtime
I've got a huge InnoDB table(>500 millions rows) which I'd like to partition by hash in order to decrease the index size. I'd like to achieve this with a minimal downtime(e.g 10 minutes is ...
6
votes
5answers
391 views
How insert a NOT NULL column to an existing table
How to add a column with NOT NULL to an existing table?
I have tried like: ALTER TABLE MY_TABLE
ADD STAGE INT NOT NULL;
But it gives the error message like: "ALTER TABLE only ...
6
votes
3answers
469 views
How do I drop 'NOT NULL' from a column in MySQL?
A show create table command shows the following:
'columnA' varchar(6) NOT NULL DEFAULT '';
How do I modify that column so that the not null is removed?
I need it to be:
'columnA' varchar(6) ...
6
votes
1answer
333 views
MySql ALTER TABLE on Production Databases - Any Issues?
I have about 100 databases (all the same structure, just on different servers) with approx a dozen tables each. Most tables are small (lets say 100MB or less). There are occasional edge-cases where a ...
6
votes
2answers
6k views
How do I add more members to my ENUM-type column in MySQL?
The MySQL reference manual does not provide a clearcut example on how to do this.
I have an ENUM-type column of country names that I need to add more countries to. What is the correct MySQL syntax to ...
5
votes
2answers
104 views
Why does SQL Server force me to drop the table to be able to alter a field from DateTime to DateTime2(3)?
I am trying to alter a table field - with some rows in it - from DateTime to DateTime2(3).
But the SQL Server Management Studio complains that I have drop and re-create the table.
But why?
Isn't ...
5
votes
3answers
170 views
MySQL DDL Trigger, Diff table schema for column rename
I am creating a PHP script to compare schema of two databases.
I have managed to check for schema changes with regard to dropped/added tables, columns, indexes, references but when it comes to ...
5
votes
4answers
2k views
SQL Server - Change a Nullable column to NOT NULL with Default Value
I came across an old table today with a datetime column called 'Created' which allows nulls. Now, I'd want to change this so that it is NOT NULL, and also include a constraint to add in a default ...
5
votes
1answer
5k views
Modify a Column's Type in sqlite3
Hey guys, I'm pretty new to sqlite 3 and just now I had to add a column to an existing table I had. I went about doing that by doing: ALTER TABLE thetable ADD COLUMN category;.
Of course, I forgot to ...
5
votes
6answers
5k views
How can I add a column to a Postgresql database that doesn't allow nulls?
I'm adding a new, "NOT NULL" column to my Postgresql database using the following query (sanitized for the Internet):
ALTER TABLE mytable ADD COLUMN mycolumn character varying(50) NOT NULL;
Each ...
4
votes
1answer
54 views
What does a simple MODIFY with no parameters change in ALTER TABLE (SQL)?
alter table emp
modify mgr;
Are previous constraints dropped/retained?
What is the use of this?
4
votes
2answers
56 views
shrinking a column in oracle
Lets say i have a table with the following definition
create table dummy (col1 number(9) not null)
All the values in this dummy.col1 are 7 digit long. Now i want to reduce the length of this column ...
4
votes
4answers
112 views
Eqivalent of C# 'readonly' for an MS SQL column?
Imagine there is a Price column in Products table, and the price may change.
I'm fine with it changing but I want to store the original Price value in another column.
Is there any automatic way MS ...
4
votes
4answers
73 views
Column creation and use
I am fairly new to SQL, so not sure if this is just a SQL compiler thing or not. When I have used SQL before it's been through JAVA or PHP, never just straight SQL. I am using SQL Server 2005 and ...
4
votes
2answers
748 views
Is it possible to use Linq to ALTER a database table?
I am trying to programmatically drop a column in a table inside of an access database and found myself unable to do so! Is it at all possible? it makes me think that i don't have any clear idea of ...
3
votes
2answers
66 views
ALTER TABLE FOREIGN KEY from java to mysql
Well, I want to make a modification in my database, so I need to use alter table but java seems to have problems making that.
This is the sentence
ALTER TABLE loans ADD FOREIGN KEY (id_reader) ...
3
votes
2answers
627 views
SQL Server alter rename table
I'm trying to rename a table in SQL Server. The SQL query that I have used is :-
ALTER TABLE oldtable RENAME TO newtable;
but it gives me an error.
Server: Msg 156, Level 15, State 1, Line 1
...
3
votes
2answers
209 views
Adding column to Oracle OLTP table
I'm attempting to add a nullable column to a frequently used table in an Oracle 10 OLTP database while the application is running and busy. Adding a nullable column is only a data dictionary change ...
3
votes
2answers
377 views
Using MYSQL replication to speed up Schema changes and table optermise
I hear that many people use master - slave arrangements help to improve time taken when changing schemas by using replication to setup a new temporary master, then stopping relocation and then ...
3
votes
4answers
225 views
MySQL rename column from within PHP
I need to rename columns in my MySQL table using PHP.
This is made difficult because the syntax is ALTER TABLE [table] CHANGE COLUMN [oldname] [newname] [definition]. The definition is a required ...
3
votes
1answer
1k views
alter table add … before `code`?
ALTER TABLE `tada_prod`.`action_6_weekly` ADD COLUMN `id` INT NULL AUTO_INCREMENT UNIQUE AFTER `member_id`;
works,
so i thought, to add the column as the first column i could do
ALTER TABLE ...
3
votes
2answers
285 views
Add a column and update it in same stored procedure in SQL Server 2008
if I have a stored procedure say
CREATE PROCURE w AS
ALTER TABLE t ADD x char(1)
UPDATE t set x =1
Even when it lets me create that stored procedure (if I create it when x exists), when it runs, ...
3
votes
1answer
604 views
How to change a primary key in SQL to auto_increment?
I have a table in MySQL that has a primary key:
mysql> desc gifts;
+---------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
...
3
votes
1answer
2k views
query “ ALTER TABLE test_posts ADD sticky boolean NOT NULL default = false” = error
Whats wrong with my query?
ALTER TABLE test_posts ADD sticky boolean NOT NULL default = false
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ...
3
votes
1answer
594 views
SQL Alter Table then Modify Values
I have a SQL script that I am working on and I run into an issue when I'm creating (or editing) a column and then attempting to modify that new column.
For example:
BEGIN
ALTER TABLE SampleTable ...
3
votes
3answers
3k views
How do you change the datatype of a column in MS SQL?
I am trying to change a column from a varchar(50) to a nvarchar(200). What is the SQL command to alter this table?
3
votes
5answers
788 views
How do I create a table constraint to prevent duplicate values across two columns?
I have the following table:
CREATE TABLE [dbo].[EntityAttributeRelship](
[IdNmb] [int] IDENTITY(1,1) NOT NULL,
[EntityIdNmb] [int] NOT NULL,
[AttributeIdNmb] [int] NOT NULL,
...
3
votes
5answers
5k views
How do I ALTER the POSITION of a COLUMN in a Postgresql database?
How do I ALTER the POSITION of a COLUMN in a Postgresql database? I've tried the following, but I was unsuccessful:
ALTER TABLE person ALTER COLUMN dob POSITION 37;
3
votes
6answers
8k views
SQL Server - script to update database columns from varchar to nvarchar if not already nvarchar
I am in a situation where I must update an existing database structure from varchar to nvarchar using a script. Since this script is run everytime a configuration application is run, I would rather ...
3
votes
3answers
5k views
SQL Server Alter Computed Column
Does anyone know of a way to alter a computed column without dropping the column in SQL Server. I want to stop using the column as a computed column and start storing data directly in the column, but ...
2
votes
1answer
30 views
Mysql: reasonably predict duration of adding a column or index
I understand that this question isn't one in that I'm going to get a precise answer. I'm going for ball park figures.
I basically need a way to answer this question: When I add this column or index, ...
2
votes
2answers
21 views
Test before changing MySQL column type
I have a table with a column of type INT(7) and I want to make this a foreign key constraint on the primary key of another table. However, the primary key is type INT(11) UNSIGNED, so I need to change ...
2
votes
3answers
67 views
Alter table after keyword in Oracle
ALTER TABLE testTable ADD column1 NUMBER(1) DEFAULT 0 NOT NULL AFTER column2;
Why can't I use mySql syntax in Oracle too? The above command works in MySql. Can you give me an equivalent that works?
...
2
votes
1answer
55 views
SQL Column Not Found: Added earlier in program
I'm using SQL Server 2008. I have a stored procedure with code that looks like this:
if not exists (select column_name from INFORMATION_SCHEMA.columns
where table_name = 'sample_table' and ...
2
votes
1answer
30 views
Alter the type of an existing column with TSQL - what about the constraint?
I want to alter the type of a column from bit to tinyint. This is my SQL:
ALTER TABLE table ALTER COLUMN column TINYINT NOT NULL
This tells me that there is a constraint for column. I dropped the ...
2
votes
1answer
152 views
Postgresql - change the size of a varchar column
I have a question about the ALTER TABLE command on a really large table (almost 30 millions rows).
One of its columns is a varchar(255) and I would like to resize it to a varchar(40).
Basically, I ...
2
votes
2answers
87 views
How to change the default value of a large Postgres table without taking forever?
On a Postgres backed Rails application running on Heroku I am trying to add a boolean column with default set to false and null set to false (NOT NULL).
The migration takes hours upon hours to run ...
2
votes
4answers
175 views
ALTER table - adding AUTOINCREMENT in MySQL
I created a table in MySQL with on column itemID. After creating the table, now I want to change this column to AUTOINCREMENT. How can this be done using ALTER statements?
Table definition:
...
2
votes
2answers
389 views
mysql : Data too long for column on alter table modify column
I am changing a column from text to varchar column.
+------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
...
2
votes
1answer
68 views
Difference between 'character set' and 'default character set'
Is there any difference between statements
ALTER TABLE xxx DEFAULT CHARACTER SET utf8
and
ALTER TABLE xxx CHARACTER SET utf8 ?
MySQL documentation keeps silence about functionality of DEFAULT ...
2
votes
1answer
164 views
MYSQL: Want to make a date column NULL
I have some changes to a Django app using a mysql database backend. I have been receiving this error.
(1048, "Column 'current_item_status_date' cannot be null")
I have tried to make it NULL by using ...