5
votes
3answers
817 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, …
5
votes
5answers
1k 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 …
3
votes
8answers
1k views
Adding an identity to an existing column [SQL Server]
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 sequenti …
3
votes
5answers
1k 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 …
3
votes
5answers
330 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 …
2
votes
2answers
65 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 a …
2
votes
1answer
215 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
ALT …
2
votes
5answers
186 views
notification when alter occurs on oracle database
We have a database that many persons have to have access to. I am looking for a way that will allow us to get notification whenever "alter" occurs on this database, so other partie …
1
vote
3answers
46 views
How to change MySQL column definition?
create table test(
locationExpect varchar(120) NOT NULL;
);
I want to change it to :
create table test(
locationExpect varchar(120);
);
1
vote
3answers
178 views
What’s wrong with adding LOBs to an Oracle table?
I'm trying to ALTER a table by adding a new CLOB column (on Oracle 10), but it's failing.
Giving me an ORA-01735 error. Problem is I can't find out what in particular is wrong with …
1
vote
4answers
204 views
Best way to add a new column with an initial (but not default) value?
I need to add a new column to a MS SQL 2005 database with an initial value. However, I do NOT want to automatically create a default constraint on this column. At the point in ti …
1
vote
4answers
111 views
Error handling and data integrity when changing table schema
We have a few customers with large data sets and during our upgrade procedure we need to modify the schema of various tables (adding some columns, renaming others, occasionally cha …
1
vote
4answers
126 views
how to change a column’s attribute without affecting the values already present?
Hi,
To put it in a nutshell - In an oracle db, I want to make a column varchar2(16) which is now varchar2(8), without affecting the values presnet. I have already tried this and i …
1
vote
2answers
743 views
ALTER TABLE with programmatically determined constant DEFAULT value
I am trying to add a column (MSSQL 2005) to a table (Employee) with a default constraint of a primary key of another table (Department). Then I am going to make this column a FK t …
1
vote
3answers
3k views
check if temp table exist and delete if it exists before creating a temp table
Hi,
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 …
