Click here to Skip to main content
15,920,704 members
Home / Discussions / Database
   

Database

 
QuestionDTS Package..?? Pin
Xandip3-Jun-07 17:23
Xandip3-Jun-07 17:23 
QuestionBasic SQL question Pin
eggie53-Jun-07 14:42
eggie53-Jun-07 14:42 
AnswerRe: Basic SQL question Pin
Arun.Immanuel3-Jun-07 14:51
Arun.Immanuel3-Jun-07 14:51 
AnswerRe: Basic SQL question Pin
Christian Graus3-Jun-07 14:53
protectorChristian Graus3-Jun-07 14:53 
GeneralRe: Basic SQL question Pin
eggie53-Jun-07 15:00
eggie53-Jun-07 15:00 
GeneralRe: Basic SQL question Pin
Pete O'Hanlon3-Jun-07 23:46
mvePete O'Hanlon3-Jun-07 23:46 
QuestionMofify a colunm from Nvarchar(50) to DateTime Pin
steve_rm3-Jun-07 9:27
steve_rm3-Jun-07 9:27 
AnswerRe: Mofify a colunm from Nvarchar(50) to DateTime Pin
Mike Dimmick3-Jun-07 12:00
Mike Dimmick3-Jun-07 12:00 
It's most likely that the data is being interpreted in US English (MM/dd/yyyy) format.

You could try using a query window (right-click the database and select New Query) and using the following
SET LANGUAGE British
 
ALTER TABLE table
  ALTER COLUMN column datetime
where table is the name of the table and column the name of the column to alter.

If that doesn't work, try adding a new column of type datetime and then using an UPDATE statement with SET newcolumn = CONVERT( datetime, oldcolumn, 103 ) to do the conversion, then drop the old column.

Stability. What an interesting concept. -- Chris Maunder

QuestionAccess of Office 2007 as a DB in .NET Pin
Tzumer Edo3-Jun-07 4:27
Tzumer Edo3-Jun-07 4:27 
AnswerRe: Access of Office 2007 as a DB in .NET Pin
originSH3-Jun-07 23:30
originSH3-Jun-07 23:30 
QuestionAdding a new column is DBNULL Pin
steve_rm2-Jun-07 4:06
steve_rm2-Jun-07 4:06 
AnswerRe: Adding a new column is DBNULL Pin
Rob Graham2-Jun-07 5:53
Rob Graham2-Jun-07 5:53 
AnswerRe: mysql vs sqlserver Pin
Rob Graham2-Jun-07 4:55
Rob Graham2-Jun-07 4:55 
QuestionSQL variable in MS Access Pin
Blue_Boy2-Jun-07 2:25
Blue_Boy2-Jun-07 2:25 
AnswerRe: SQL variable in MS Access Pin
Krish - KP2-Jun-07 2:30
Krish - KP2-Jun-07 2:30 
GeneralRe: SQL variable in MS Access Pin
Blue_Boy2-Jun-07 2:50
Blue_Boy2-Jun-07 2:50 
AnswerRe: SQL variable in MS Access Pin
Dave Kreskowiak2-Jun-07 9:28
mveDave Kreskowiak2-Jun-07 9:28 
GeneralRe: SQL variable in MS Access Pin
Ilya Verbitskiy5-Jun-07 4:49
Ilya Verbitskiy5-Jun-07 4:49 
QuestionSelect statement......, Pin
HemMagesh1-Jun-07 20:11
HemMagesh1-Jun-07 20:11 
AnswerRe: Select statement......, Pin
Krish - KP2-Jun-07 2:28
Krish - KP2-Jun-07 2:28 
QuestionStored procedure with a variable number of parameters Pin
Vadim Tabakman1-Jun-07 18:32
Vadim Tabakman1-Jun-07 18:32 
AnswerRe: Stored procedure with a variable number of parameters Pin
Arun.Immanuel2-Jun-07 7:56
Arun.Immanuel2-Jun-07 7:56 
GeneralRe: Stored procedure with a variable number of parameters [modified] Pin
Vadim Tabakman2-Jun-07 13:27
Vadim Tabakman2-Jun-07 13:27 
QuestionUsing Strongly typed Datasets and a Data Access Layer Pin
Drathmar1-Jun-07 7:29
Drathmar1-Jun-07 7:29 
AnswerRe: Using Strongly typed Datasets and a Data Access Layer Pin
Colin Angus Mackay1-Jun-07 9:59
Colin Angus Mackay1-Jun-07 9:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.