1
vote
2answers
35 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
4answers
92 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 …
2
votes
2answers
151 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 …
0
votes
6answers
359 views
SQL Server script: ALTER PROCEDURE - Executing multiple ALTER PROCEDURE into one script without having to select each of the ALTER one after another
I know this is not a big issue, but it tickles me anyway.
I have a SQL Server 2005 script to create new data tables, constraints, altering some tables to add columns, altering procedures to take the …
3
votes
5answers
275 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 …
0
votes
1answer
119 views
How to write sql to set alter a column’s default value in sql server 2005?
I have a table [Product] with a column [CreateTime] datetime null, and is has some data already.
How can I set the column [CreateTime] 's default value to getdate(), and make the new added data to …
0
votes
0answers
21 views
Alter developer username iSQL plus.
How would you go about altering the developer username in iSQL plus.
For example I have the current username: developer and want to change it to ccc123_developer
1
vote
2answers
51 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
1answer
376 views
SQL Server ALTER field NOT NULL takes forever
I want to alter a field from a table which has about 4 million records. I ensured that all of this fields values are NOT NULL and want to ALTER this field to NOT NULL
ALTER TABLE dbo.MyTable
ALTER …
0
votes
1answer
118 views
How do I disable a full-Text Search on a column in sql server?
I'm trying to convert a column from ntext to nvarchar(MAX), but it seems there is a Full-Text search enabled on it.
Alter table <table> alter column <column> nvarchar
Then i'm going to …
1
vote
2answers
399 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
1answer
361 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!
0
votes
3answers
805 views
SQL - Informix - Changing the datatype of a column from numeric to character.
I have a temp table that has numeric integer values in one column. I want to either replace the integer values with character values based on some criteria or I want to add another column of …
0
votes
1answer
657 views
Altering a trigger in Sql Server 2005
I need to alter a trigger in sql server 2005 and I want to do it using a table adapter and a sql statement, not a stored proc. I know I could run this in the query browser and execute it but I need to …
0
votes
5answers
726 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=");
…
