can anyone help, we have a sql server 2005 database installed (actually its an sql server 2000 attached to an sql server 2005 server) with the default server language language USA with dateformat like mm/dd/yy and we really need to keep it this way but currently just uploaded a new database to the server and this needs to have the dateformat for dd/mm/yyyy.
Can i force a change just on a database and not the whole server? If i force the change on the whole server it will make all my other apps fail
For example currently we have this sql statement which fails..
SELECT * FROM sesiones WHERE ultimo_acceso < '16/04/2009 13:36:17'
but of course we can add this which now works
SELECT * FROM sesiones WHERE ultimo_acceso < Convert(datetime, '16/04/2009 13:36:17', 103)
but the problem being is that there are a large number of sql statements within the application. The truth being is that the application is fairly old and we don't really want to make any changes to the source code..
SO hence if we could force a a change just on the Database / the tables of specific database then this would suffice
Any help really appreciated
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…