Tagged Questions
'alter' is a SQL keyword used to change or modify the table structure or the records in a table.
8
votes
4answers
40 views
alter table mysql offline or not?
I need to add a column to my current table.
This table is used a lot during the day and night. i found out i need to alter using the alter command found here
...
6
votes
4answers
622 views
optimize mySql for faster alter table add column
I have a table that has 170,002,225 rows with about 35 columns and two indexes. I want to add a column. The alter table command took about 10 hours. Neither the processor seemed busy during that ...
5
votes
1answer
1k views
sqlite alter table add MULTIPLE columns in a single statement
is it possible to alter table add MULTIPLE columns in a single statement in sqlite?
the following would not work.
alter table test add column mycolumn1 text, add column mycolumn2 text;
5
votes
3answers
3k views
Can I use ALTER DATABASE to rename a mysql database?
I am using PDO with PHP to create a new database and then a new user with privileges on that database. In case one of them fails, I want to rename the database and user so that they can be deleted ...
5
votes
3answers
3k views
How do I alter a mysql table column defaults?
I have a table with a column of type timestamp which defaults current_timestamp and updates to current_timestamp on every update.
I want to remove the "on update" feature on this column. How do I ...
5
votes
5answers
2k views
MySQL ALTER TABLE on very large table - is it safe to run it?
I have a MySQL database with one particular MyISAM table of above 4 million rows. I update this table about once a week with about 2000 new rows. After updating, I then perform the following ...
4
votes
3answers
495 views
Add Primary Key to a table with existing clustered index
I have to work with a database to do reporting
The DB is quite big : 416 055 104 rows
Each row is very light though, just booleans and int ids.
Each row is identify by 3 columns, but at my surprise, ...
4
votes
1answer
605 views
What happens if you kill a long-running alter query?
What happens if you kill a long-running alter query? Will the alter query simply revert? How long could that take (as a proportion of the time it has already been running)?
What if that query is ...
3
votes
2answers
125 views
Altering .htaccess with PHP - removing a rewrite rule
Hey guys, a small question.
I'm using PHP to remove/add static pages once a page has been deleted, I want to be able to remove it from the .htaccess, however I've tried this, but it throws an error:
...
3
votes
1answer
197 views
How to loop through diferent schemas and execute some sql on each?
I have a case where I have 70 oracle schemas and I have to execute the same script on each
which would be the best way to achieve this.
Is it possible with a CURSOR?
For now I'm doing it with
...
3
votes
2answers
3k views
Drupal - Set default value in hook_form_alter?
Trying to prepopulate some of my form fields, and am using hook_form_alter(). I've tried a couple of different ways, but in both cases, the fields still come up empty. I'm assuming that I need to ...
3
votes
3answers
2k views
How do you assign a column default in MySQL to another column's value?
I want to add a new column to a table in MySQL database that should get the value of another column in the same table. Is this possible? If so, how do you do it?
Thanks!
2
votes
2answers
34 views
Error message when dropping constrain
Every time I want to drop a constraint from a column I get an error. I can't see the problem. I am using postgres.
So I have created a table with two columns:
CREATE TABLE TableA(
person_id INT ...
2
votes
3answers
75 views
MySql - Change column name without recreating the table
is there a way to rename a column on an innoDB table without a major alter?
the table is pretty big and i want to avoid major downtime
thanks
2
votes
1answer
54 views
MySQL Alter Table Memory Increase
I'm trying to alter 2000 tables by adding a column to each. I achieve this by using a for loop in C# and executing a query on each table name for a list of strings I have. It starts out fast but then ...
2
votes
2answers
53 views
SQL Server: alter table, how to add SPARSE definition
I would like alter my table and add SPARSE option to all fields that contain a lot of NULL values. What is the right syntax for this ALTER TABLE command?
2
votes
2answers
219 views
How to undo ALTER TABLE using sqlplus (Oracle 10g Express)?
rollback;
doesn't seem to undo alter table changes.
Background:
I'm generating some .sql scripts (based on parsed Hibernate scripts) which are trashing my tables. Importing the full database for ...
2
votes
1answer
315 views
Alter Table - add Default value for a COLUMN type BLOB
Executing the below SQL is giving this error .
alter table TABLE_NAME ADD FILE_DATA BLOB NULL default 'EMPTY_BLOB()'
Error starting at line 37 in command: alter table TABLE_NAME ADD
FILE_DATA ...
2
votes
2answers
93 views
Is it possible to alter a CSS stylesheet using JavaScript? (NOT the style of an object, but the stylesheet itself)
Is it possible to alter a CSS stylesheet using JavaScript?
I am NOT talking about:
document.getElementById('id').style._____='.....';
I AM talking about altering:
#id {
param: value;
}
...
2
votes
1answer
210 views
SQL Server multiple schema object issues
I have database that has multiple schemas and objects under them. I want to consolidate the objects into one schema.
I tried
ALTER SCHEMA dbo TRANSFER <custom_schema>.<table_name>
I ...
2
votes
4answers
396 views
SQL Server, How to DROP COLUMN if condition is satisfied?
I have been trawling google for answers to this but no luck. Any help would be great!
I have a SQL table: tblFeedback. It stores answers to feedback questions. The Questions are held in a different ...
2
votes
1answer
1k views
drupal hook_menu_alter() for adding tabs
I want to add some tabs in the "node/%/edit" page from my module called "cssswitch".
When I click "Rebuild Menus", the two new tabs are displayed, but they are displayed for ALL nodes when editing ...
2
votes
2answers
3k views
ALTER TABLE Sqlite: how to check if a column exists before alter the table?
I need to execute in python a SQL query that adds a new column, in sqlite3.
The problem is that sometimes it already exists. So previous to executing the query I need to check if the column already ...
2
votes
2answers
109 views
any way to view ALTER TABLE after its been executed? -MySQL
In the same way SHOW CREATE TABLE tblname; brings back what was previously executed, is there anyway to view the SQL of an ALTER TABLE query?
please help?
2
votes
1answer
870 views
Postgresql - Using subqueries with alter sequence expressions
My question is kind of simple.
Is it possible to use subqueries within alter expressions in PostgreSQL?
I want to alter a sequence value based on a primary key column value.
I tried using the ...
2
votes
4answers
5k views
Insert default values in a column (access db)
How can I do for inserting a Default Value into a column of a table in Access?
I use this instruction:
ALTER TABLE Tabella ADD Campo Double DEFAULT 0
ALTER TABLE Tabella ADD Campo Double DEFAULT (0)
...
1
vote
2answers
47 views
mysql alter int column to bigint with foreign keys
I want to change the datatype of some primary-key colymns in my database from INT to BIGINT. The following definition is a toy-example to illustrate the problem.
CREATE TABLE IF NOT EXISTS `owner` (
...
1
vote
2answers
44 views
How can I alter multiple tables at once in mysql?
I am trying to alter multiple tables and change the VARCHAR to 999 because the previous number was too small and now things are screwed up. How can I do this?
I have tried the following and it worked ...
1
vote
2answers
21 views
How can I unset the MAX_ROWS table option on a MyISAM table?
I have a table defined as such:
CREATE TABLE `_debug_log` (
...
) ENGINE=MyISAM AUTO_INCREMENT=896692 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci MAX_ROWS=100000 ROW_FORMAT=COMPRESSED;
I'd like ...
1
vote
1answer
62 views
Changing bigint column to timestamp without loss of data
I'm working on a legacy application which uses bigint where timestamp s'd have been used.
For some reason I need to modify that column to timestamp. But when I run the alter table command...all the ...
1
vote
2answers
31 views
How can I change the format of the dates produced when using ALTER COLUMN to convert a datetime column to varchar?
I have a datetime column that I need to alter to be a varchar column.
Using the statement below, the strings produced have this format: "Jan 18 2010 5:28PM"
ALTER TABLE Thinger
ALTER COLUMN ...
1
vote
2answers
329 views
Make a column nullable DB2
I'm using db2 version 9.7* and it seems impossible to make a NOT NULL column nullable in any straightforward way.
Unfortunately the solution of using a more developer friendly database is not ...
1
vote
1answer
83 views
How to move columns in a MySQL table?
Currently I am having the following MySQL table: Employees (empID, empName, department);
I want to change the table to the following: Employees (empID, department, empName);
How can this be done ...
1
vote
1answer
51 views
PHP script to check for alter mysql database
I am trying to install a Photo App (ZenPhoto) on my webserver and the installer complains:
Warning!
Your Database user must have Alter, Create, Delete, Drop, Index, Insert, Select and Update rights.
...
1
vote
3answers
38 views
Is RENAME DATABASE no longer available in MySQL?
If so, what is the workaround? I have a genuine need for this.
Thanks.
1
vote
1answer
136 views
Dynamically ALTERing MySQL tables to add missing fields on INSERT
I'm attempting to merge data from one MySQL database into another. The problem is, some of the tables in Source_DB have fields that the matching table in Target_DB does not have.
Is there a way to ...
1
vote
1answer
197 views
Alternative to .readLine() / readLine only returns lists
I'm using read line to get some text from wikipedia. But read line only returns lists, not the text that I want. Is there any way to use an alternative or to solve my problem?
public class mediawiki ...
1
vote
4answers
127 views
Removing NOT NULL restriction from column in MySQL
How can I alter a column whose restricted to NOT NULL to accept NULL values?
1
vote
2answers
308 views
How to alter MySQL table without losing data?
In my application, I make some changes and upload them to a testing server. Because I have no access to the server database I run ALTER commands to make changes on it.
Using a method I ran the ...
1
vote
1answer
71 views
MySQL: how not to repeat the column_definition for each column when adding multiple columns
Running mysql 5.0, how to modify this command line (as reality shows dozen of added fields) in order to avoid repeating the column_definition (TEXT NOT NULL in this case) and factorize it for all ...
1
vote
2answers
238 views
Drupal hook_form_alter anonymous user can't see the fields
I created a small module for altering forms called "form_mods". The form I'm altering is the "user_profile_form". I added a category for extra fields called "Profile".
I created a select field in the ...
1
vote
2answers
218 views
How to update Drupal Views 2 query with OR expression?
I'd like to add an OR expression to Drupal 6.x Views 2 query in the following way:
Existing query:
SELECT node.nid AS nid FROM node node WHERE (expr1) AND (expr2)
New query - this is what I want ...
1
vote
1answer
93 views
how to effectively modify index
Hej everyone,
problem : I am looking for right way to convert an index from clustered to non-clustered
Description : I have a table as below in sybase db:
dbo.UserLog
------------------------
Id | ...
1
vote
2answers
57 views
Drupal questions - customizing form_altered modules
This week I have figured out how to modify form elements in the location module
using form_alter and the custom element hook_elements() : need some tips on Drupal $form value
I was able to to hide ...
1
vote
2answers
704 views
How can I alter a smalldatetime column with a default to be datetime?
I have a number of columns in my database that were originally created as smalldatetime and that really need to be datetime. Many of these columns were created with the DDL:
[columnname] ...
1
vote
2answers
73 views
How can I have a column in a MySQL database be a function of other columns?
I'm working with a database that keeps track of where a reader is in a book. I do this by having a page count column and a current page column.
Is there a way to add a 'progress' column that would be ...
1
vote
2answers
3k views
What is the equivalent of 'CREATE TABLE … LIKE …" in MSSQL
I am working with MSSQL (I am a MSSQL noob) and trying to alter a table. I want to CREATE TABLE LIKE to safely store data while I drop keys and constraints and all the other rigamorole that MSSQL ...
1
vote
2answers
2k views
Add a field in ACCESS with a default value
I'd like to insert a new field with a Default value using Visual C++ Code.
I have wrote this:
CADODatabase pDB;
String strConnessione = _T("Provider=Microsoft.Jet.OLEDB.4.0;""Data Source=");
...
0
votes
1answer
45 views
HibernateJpaVendorAdapter's generateDdl doesn't alter tables
I am developing a website using Spring+JPA+Hibernate. In the persistence configuration (JPA+Hibernate) I'm setting the HibernateJpaVendorAdapter's generateDdl attribute to true and in fact new ...
0
votes
1answer
33 views
MySQL alter table - changing a TINYINT to a SMALLINT
I have the following database with two tables (excuse my ugly format):
TABLE_A : Id TINYINT, PRIMARY KEY (Id)
TABLE_B : Id TINYINT, FOREIGN KEY (Id) REFERENCES TABLE_A (Id)
I would like to modify ...