'alter' is a SQL keyword used to change or modify the table structure or the records in a table.

learn more… | top users | synonyms

0
votes
1answer
20 views

MySQL set a default value YEAR type

The code below doesn't seem to work. I'm trying to set a default value and a time in the future (taking current year + 6 years). any idea? ALTER TABLE users CHANGE COLUMN dpicture dpicture YEAR NULL ...
0
votes
1answer
31 views

EF: Getting “The model backing …has changed” error, though I've altered well the schema

I am not worried about rollbacks (ie: Down() method), and would like to work always on the latest code modification, so I'm not using Code Migrations. I changed this: int SomeProperty {get; set;} ...
0
votes
1answer
8 views

MYSQL ALTER Can't assign foreign key (errno: 150)

I'm trying to assign a foreign key. I have a 'users' table: user_id mediumint(8) unsigned, NotNull, Primary Key, AutoIncrement, first_name varchar(20) , NotNull last_name ...
0
votes
1answer
29 views

db2 alter column length named:“Group”

"GROUP" is used as a column name wity 'CHAR' type. I have to increase the column length, but I get this following error message. ALTER TABLE "DB2.FAQA_GROUP" specified attributes for column "GROUP" ...
0
votes
1answer
18 views

Add column and then insert value in the same script without parser complaining

What I want to do is add a value to a column. Now it might be that the column does not yet exist. So what I do is check if that column exists and if not I'm adding it and then insert the value. IF ...
0
votes
0answers
11 views

issue with sql in converting varchar to long : extra value appended in end

I have a table with varchar(20) as column 'time' and it stores epoc time. I altered the table using following command and changed the data type of column 'time' to long. but, i see all the data ...
0
votes
2answers
40 views

Altering Oracle table: invalid identifier

Using Oracle Application Express for Oracle 11g Adding a foreign key constraint to a preexisting table. Table: COMMUNICATION COMMUNICATION-ID NUMBER COMMUNICATIONTYPE_ID VARCHAR2(6) ...
0
votes
1answer
69 views

alter table add field then error whilst using it

I am trying to add a field to a table. If I create the table and then call a sp and add the field inside the sp. I cannot use the field in a where clause run part one and part two together: no ...
0
votes
1answer
63 views

Is it possible to change the Double column Decimal Size

Is it possible to change the Double column Decimal Size(Number of Decimals) in MS ACCESS using C# with the help of DAO/Query. As per the MSDN size : The field size in characters (Text and ...
0
votes
1answer
27 views

how to alter a mysql table to add a column which contains a common value for all rows by checking another columns repeating value

how to alter a mysql table to add a column which contains a common value for all rows by checking another columns repeating value. +----+----------+--------------+ | id | inode | name | ...
0
votes
4answers
142 views

How to add new column to MYSQL table

I am trying to add a new column to my MYSQL table using PHP. I am unsure how to alter my table so that the new column is created. In my assessment table I have assessmentid | q1 | q2 | q3 | q4 | q5 ...
0
votes
1answer
27 views

Altering a table with a new column that allows only 3 different values iSQLPLUS

I am trying to alter a table "tutor" with a new column "subject" that allows only 3 different values: "reading", "math", "ESL". What I have so far: ALTER table tutor add subject varchar2 (10) ...
-4
votes
1answer
40 views

Android ALTER SQL databese - unable to open/read Desktop PC

After using ALTER TABLE to add column to table I was unable to open the db under Windows using many SQLite editors or browsers. Seems the problem is with the SQLite ver. that they support. Is there ...
-2
votes
1answer
35 views

ALTER TABLE mysql error [closed]

I have create .sql file have a code like this: ALTER TABLE `tb_1` ADD `ex1` TINYINT( 1 ) NOT NULL DEFAULT '0' ALTER TABLE `tb_2` ADD `ex2` tinyint(1) NOT NULL DEFAULT '1' ALTER TABLE `tb_3` ADD `ex2` ...
-1
votes
1answer
47 views

date syntax issue in sql

I keep getting this error message when trying to change the data type of my column: alter table x modify column order_date date NOT NULL; ERROR at line 1 ORA-00905 missing keyword I not sure ...
0
votes
2answers
65 views

Input alters text box format

I am new to JavaScript and I have been doing some work creating a form in HTML and JavaScript. In this work I have been trying to validate the format of an input depending on the text entered into a ...
0
votes
2answers
31 views

Data entered alters string length

I am new to JavaScript and I have been doing some work creating a form in HTML and JavaScript. In this work I have been trying to limit the string of a field depending on the text entered into a ...
3
votes
1answer
59 views

Mysql Alter table timing depending on presence of foreign keys

We have a situation where we have a table A and B, where A has few thousand rows ( approx 50k) and B has few million rows (approx 5M). Table B has a column which points to Table A's primary key. We ...
4
votes
5answers
73 views

Can a primary key be empty? If yes why did this alter cause this result?

I have the following table: mysql> DESC my_contacts; +----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | ...
0
votes
1answer
19 views

Does modify work only if I redeclare the data type?

In order to change the order of a column the following works: ALTER TABLE contacts MODIFY COLUMN id VARCHAR(20) FIRST; The following: ALTER TABLE my_contacts MODIFY COLUMN id FIRST; ...
0
votes
2answers
192 views

SQL Server connection for ALTER LOGIN c# .net

This c# code just doesn't want to change Password on the server (UserID and PW will obviously be a strings for some purpose, but this is just to get it working): SqlConnection conn = new ...
0
votes
1answer
31 views

Adobe ExtendScript Change Brush Size

Is it possible to change the brush size in Photoshop via ExtendScript? I'm looking all through their documentation and Googling to no avail. Any help would be appreciated!
0
votes
1answer
24 views

Auto-alter data when not compatible in MYSQL

I'm trying to create a movie databse in MYSQL (I use MYSQL workbench). I use TxtToMy (link) to import the ratings.csv-file generated by imdb.com into MYSQL. Now the problem is that 16 movies (out of ...
2
votes
1answer
61 views

path not registering via hook_menu_alter in drupal 6

I am adding a new path by hook_menu_alter but when I access this path, proper page callback is not triggered. when I inspected what router_item is picked by menu_execute_active_handler function in ...
-2
votes
1answer
100 views

Mysql add default value for all date field

I must to change default value for all date field in my database. Do you know how to do that fast. Thanks
0
votes
0answers
92 views

After doing an ALTER TABLE, inserts not working

I upgraded my SQL Server from 2008 to 2012, and everything worked o.k. I then wanted to add three columns to some tables. I used the following script to alter the tables: private int ...
1
vote
2answers
47 views

Keeping Archive table structure (columns, etc.) in sync with Live table

I have a table (TMain) with large amount of data, which is archived to an archive table (TArchive) - where records are more than 3 months old. Since TMain is a volatile table and columns on it are ...
0
votes
1answer
79 views

Running common “alter table” command on mysql returns “no database selected” error

I'm trying to fix some Wordpress character encoding problems by going through and altering all tables to use utf8. But the command I'm using doesn't work. The command: ALTER TABLE tbl_name CONVERT ...
0
votes
2answers
48 views

MySQL change a row to unique

I have a database table that saved users profile information. Sometimes when users register, they get duplicated with an extra column with same records, sometimes not. So, I wonder if I put Unique on ...
0
votes
0answers
49 views

Rename column in mysql without data population

In mysqlWhen we use alter table syntax for rename a column, a data population will be happening for that column. For example think this case, create table table1(i int(10) primary key,k varchar(10)); ...
1
vote
0answers
66 views

AFTER ALTER ON DATABASE gives the old password value in Oracle

I am writing a trigger to fetch the 'password' value when 'sys.users$' table gets updated. CREATE OR REPLACE TRIGGER Sys_User_Nm_Trg AFTER ALTER ON DATABASE WHEN (ora_dict_obj_type = 'USER') ...
0
votes
3answers
231 views

Check if a mysql field exist and create if not

I am implementing the geonames webservice, like this: $( "#loc_from" ).autocomplete({ source: function( request, response ) { $.ajax({ url: ...
0
votes
3answers
280 views

Altering data types within a table using SQL command ALTER

I have researched how to alter table data types and I understand how to do it but I cannot get it to work. I am trying to update my table Person within APP using the following command: ALTER TABLE ...
-2
votes
1answer
132 views

on insert current_timestamp in mysql

I need to alter a column with timestamp datatype. The thing is when record is inserted the current time stamp should be inserted in that column. I know there is ON UPDATE CURRENT_TIMESTAMP but for ...
1
vote
1answer
34 views

How to change the dimension of the field in the type by DQL?

How to change the dimension of the field in the type by DQL? create type archik_type( archik_id ID, archik_number string(10) ) supertype null publish go How I can change from archik_number ...
1
vote
1answer
51 views

Altering database tables on updating website

This seems to be an issue that keeps comming back in every web application; you're improving the back-end code and need to alter a table in the database in order to do so. No problem doing manually on ...
1
vote
2answers
204 views

Add columns to mySQL table with loops

I'm fairly new to mySQL. Let's say I'm adding columns to my table like so: ALTER TABLE table ADD client_input_2.0_1 LONGTEXT; And I would like to add a number of similar sequential columns, i.e. ...
0
votes
2answers
78 views

Is SQLite support Alter with Modify command or not

I am using Sqlite as a database in my project. I am trying to using Alter with modify command but i fail every time. switch (oldVersion) { case 1: db.execSQL("ALTER TABLE " + TABLE_NAME ...
0
votes
0answers
140 views

Syntax error when trying to change schema in SQL Server database

I am trying to rename the schema for a dozen tables in an old database on SQL Server 2005. I'm using SQL Server Management Studio Express version 9.0. Based on detailed advice found here, as well as ...
0
votes
1answer
29 views

SQL Query: Modify records based on a secondary table

I was wondering if you could help me I have two tables in a PostgreSQL database The first table contains an ID and a text field with up to 200 characters and the second table contains a data ...
0
votes
0answers
205 views

ADDING FOREIGN KEY MYSQL [closed]

On executing the following query: ALTER TABLE tbl_issue ADD CONSTRAINT fk_issue_project FOREIGN KEY project_id REFERENCES tbl_project(id) ON DELETE CASCADE ON UPDATE CASCADE ON DELETE RESTRICT ON ...
1
vote
2answers
574 views

Add/remove MySQL column to existing table via PHP / PDO with user defined name and datatype

I want users of my PHP web app to be able to insert columns into some tables without requiring somebody with SQL knowledge. What is the best way to do this, obviously SQL injection and id-10-t errors ...
0
votes
3answers
42 views

How to change a piece of text in page based on validation in php script?

I have a div tag which forms an area of my site where I wish to allow users to submit their emails to be a part of a mail list. I have the php code which does this, however, there is just some ...
0
votes
1answer
42 views

How to add a column in a table and then turn it into the primary key column and add values on SQL?

I have this table right now... CREATE TABLE [dbo].[DatosLegales]( [IdCliente] [int] NOT NULL, [Nombre] [varchar](max) NULL, [RFC] [varchar](13) NULL, [CURP] [varchar](20) NULL, ...
0
votes
2answers
210 views

Alter column length in Schema builder?

I have two fields i need to increment the character limit on. I're read through the documentation and to my surprise i found no option for it. Is it possible to do? If not, how should i go about ...
3
votes
5answers
176 views

Change mysql field name in a huge table

I have a table with 21 million row.I have to change one of the row name.When I try with the query "alter table company change id new_id int(11)"; query never ends. Is there a simple way to change big ...
0
votes
2answers
211 views

Add field with random values and unique key, duplicate entries

I want to extend a mysql database users with a new unique field that gets filled with a random value on creation. Right now I have these commands, which create the field, add a random string and add ...
1
vote
1answer
359 views

Need to add constraint: date plus 10 days

I'm trying to add a constraint to a table so that it displays one of the columns as the current date plus 10 days. Here's what I've tried so far (I'm very new to SQL): ALTER TABLE orders ADD ...
0
votes
3answers
94 views

mysql alter table with value base on other field

i have dateOfbirth field in my table and i need to add new field age and it is base on dateOfBirth field w/c is i need to compute as their age? is it possible to alter the table and set the value of ...
0
votes
1answer
107 views

How do I drop a column for a MySQL view programatically?

I'd like to alter views in mysql and drop columns. I've got to do this for lots of views so I'd like to script it. If the views were tables, I could use ALTER TABLE foo DROP COLUMN blah but I don't ...

1 2 3 4 5