Is there a way to perform updates on a PIVOTed table in SQL Server 2008 where the changes propagate back to the source table, assuming there is no aggregation?
|
1
|
|
|
|
|
|
This will only really work if the pivoted columns form a unique identifier. So let's take Buggy's example; here is the original table:
and we want to pivot it into a table that looks like this:
In order to create the pivot, you would do something like this:
So then you have your pivoted table in
Now
You'll notice that I modified Buggy's example to remove aggregation by day-of-week. That's because there's no going back and updating if you perform any sort of aggregation. If I update the SUNHours field, how do I know which Sunday's hours I'm updating? This will only work if there is no aggregation. I hope this helps! |
||
|
|
|
|
I have similar problem. There is a timesheet table like this: TaskID Date Hours Since I want always to have this data filtered for one week, I would like to have table pivoted about date in the week: TaskID MONHours TUEHours WEDHours ... SUNHours This pivoted table should be presented to end user, where he could add,delete and modify hours, and also add new Tasks into that pivoted table. After he submit that data, data should be processed to original table. Any ideas will be really appreciated !! |
||
|
|
|
|
Thus there is always aggregation. So, no, it cannot be updatable. You CAN put an Example here |
||||
|
|
|
I don't believe that it is possible, but if you post specifics about the actual problem that you're trying to solve someone might be able to give you some advice on a different approach to handling it. |
||
|
|
|
|
this is just a guess, but can you make the query into a view and then update it? |
||
|
|
