Updating partitioned table oracle
问题 Hi I have a partitioned table and when I am trying to update taking few selected partition in a loop with passing partition name dynamically, it s not working. for i in 1..partition_tbl.count Loop UPDATE cdr_data PARTITION(partition_tbl(i)) cdt SET A='B' WHERE cdt.ab='c' End Loop; The partition_tbl object has all the partition in which I want to perform this update. Please suggest me how to proceed here. Thanks in advance 回答1: What is the problem that you are trying to solve? It doesn't make