View Full Version : UPDATE query for entire table


Nick Bardury
12-16-2005, 12:28 AM
Is it possible to change the case of an entire table, as opposed to just a column at a time?

I am currently using

UPDATE TableName SET FieldName = UPPER(FieldName)

But I have a huge amount of data to convert. Any help greatly appreciated.

FoFa
12-16-2005, 05:48 AM
Wouldn't be easier to create views against your tables and just UPPER case the data in the views?

SQL_Hell
12-16-2005, 07:14 AM
Wouldn't be easier to create views against your tables and just UPPER case the data in the views?

seconded!

or even in the front end

Nick Bardury
12-19-2005, 07:59 AM
I would if it was my own database, but the data is in one of our company MIS Systems. I think I'm just going to have to do it column by column. Thanks for taking the time to reply.

SQL_Hell
12-19-2005, 08:07 AM
So they let you directly edit data but not change views/ stored procs?

a very strange attitude to data integrety your company has :confused:

Kodo
12-19-2005, 08:52 AM
then why not use the second suggestion which is to UPPERCASE them in the front end code ?

FoFa
12-19-2005, 09:01 AM
you are way better off typically to leave the underlying data unchange in these types of circumstance, specially if a view or easy app. change is all that is needed. Any reason you need to upper case everything all of a sudden?