Hi there,
I have a table of 8000+ records but when I try and do a simple update such as,
update bpd
set title = upper(title)
it takes a very long time.. in fact it took 1 minute to update 4 records, so at that pace it would take over 30 hours for the whole set of records.
I tried creating an index on the member_key field but it says that there is already an index on that field.
My question is this, is it possible for indexes to get damaged and if so, how do I drop them if I don't even know the name of the index?
Please help because this is urgent.
Thanks.
I have a table of 8000+ records but when I try and do a simple update such as,
update bpd
set title = upper(title)
it takes a very long time.. in fact it took 1 minute to update 4 records, so at that pace it would take over 30 hours for the whole set of records.
I tried creating an index on the member_key field but it says that there is already an index on that field.
My question is this, is it possible for indexes to get damaged and if so, how do I drop them if I don't even know the name of the index?
Please help because this is urgent.
Thanks.