vote up 0 vote down star

How do I update different columns and rows across a table? I want to do something similiar to replace a string in SQL server

I want to do this but the value exists in multiple columns of the same type. The values are foreign keys varchars to an employee table. Each column represents a task, so the same employee may be assigned to several tasks in a record and those tasks will vary between records. How can I do this effectively? Basically something of a replace all accross varying columns throughout a table.

Thanks for any help or advice.

Cheers, ~ck in San Diego

flag

41% accept rate
This would be an indication that your DB is not noramlised? (i.e. in 3NF) – Mitch Wheat Jul 23 at 1:11
I am more of a c# dev so I don't know the inner workings of the database. I am curious tho about how you would represent that relationship correctly? If each record in a table represented a project, and each column represents a task, and an employee can be assigned to one or more tasks. Where is the duplication? How can I remedy this? Please advise. – Kettenbach Jul 23 at 1:16
1  
I think you should give an example of what you have and what you want to change. It's difficult to formulate a SQL query without having a good idea of what the data looks like. – Tim Sylvester Jul 23 at 1:19
1  
Typically your foreign keys are int and not varchars. This way you do not have this type of an issue. This way a single employee record can be linked to multiple tasks and you just use the ID of the employee. You could also have a cross reference table that links employees to tasks as well. This means 3 tables and not just 2, but it is a common thing. – SteveM Jul 23 at 1:25
tEmpNum jEmpNum yEmpNum xEmpNum 0 15059 0 15059 13456 13456 13456 13456 15059 15059 15059 15059 15059 15059 15059 15059 15059 15059 15059 15059 -- Say I wanted to update every occurrence of 15059 to 13673? Although these are numeric, many of the values contain text like RH6754 and what not. Thanks. :) – Kettenbach Jul 23 at 1:30
show 1 more comment

3 Answers

vote up 0 vote down check

This should do the trick:

UPDATE table1
SET field1 = replace(field1, 'oldstring', 'newstring'),
    field2 = replace(field2, 'oldstring2', 'newstring2')

etc...

link|flag
and its ok if the string doesn't exist in the column? ok this sounds cool. I would just apply it accross all possible columns??? Thanks for the tip. i will try this. Sweet! – Kettenbach Jul 23 at 1:24
Please don't try it right out on the production system (or at least do a backup first). – Lance Roberts Jul 23 at 1:30
Also, you can use a where clause to narrow things down a lot (probably). – Lance Roberts Jul 23 at 1:31
no lance, this is definitely a dev database. lol – Kettenbach Jul 23 at 1:38
Just to update any interested parties; I ran into a bit of an issue with this. The datatype is varchar(7), if 'newstring' is same length or shorter as 'oldstring' all is well, but when I was trying to go the other direction, data will be truncated errors reared their ugly head. A less effecient way came to mind and that was to run an update on each column in the stored proc like Begin Update table1 SET field1='newstring' WHERE field1='oldstring' END, then do the same query for field2, field3, filedn. I am sure it is not effecient, but the result is what I was seeking. Thanks all! – Kettenbach Jul 23 at 15:45
vote up 0 vote down

For SQL Server 2005 this should do the trick:

http://www.mssqltips.com/tip.asp?tip=1555

Allows searching and replacing across all columns across all tables. Make sure you read the article though.

link|flag
vote up 0 vote down

In answer to the poster's supplementary question about how to normalize this data structure. Here's how you'd do it:

Project
-------
ProjectID
ProjectName
etc...

Employee
--------
EmployeeID
EmployeeName
etc...

Task
----
TaskID
ProjectID
EmployeeID
TaskDescription
etc...

Your current structure, where you have a bunch of Task1, Task2, etc... columns in the Project table, was clearly not designed by somebody that understands relational databases.

During the process of firing that individual, you might explain that his design violates the First Normal Form, while directing him to the "Repeating groups across columns" section of that linked article.

link|flag
lol ridiculous. No one should be fired because they design a database a little differently or slightly denormalized. Learning from someone more experienced is helpful. Besides she, not he. is a superhottie pinay. :) – Kettenbach Jul 23 at 12:59
Ah, then all bets are off :) For what it's worth though, this is a much bigger deal than "a little denormalized". It's the First Normal Form that's being violated, not the 3rd. There are circumstances that call for flattening tables in a way that duplicates data, but that's not what's happening here. This is just pain generation for no benefit. – Jason Kester Jul 23 at 15:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.