I have a datafile users.dbf . Its size has incresed to 61GB and is an issue. There is not much data in it , it has different user created in it.
Please help me shrinking the users data file.
Thanks,
Nitesh Kumar
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UPDATES to the partitioning column are logically equivalent to a DELETE followed by an INSERT. So yes, if you update the status column the row will be moved to the correct partition. The impact on performance is the same as a DELETE followed by an INSERT.
However, partitioning is for ease of management (move historical data to slow disks, splitting index rebuilds into smaller chunks, doing large data loads, etc ) not for performance.
If you are doing this for performance, I’d recommend filtered indexes instead of partitioning.
For example, if you have a select like this:
A filtered index is a much better solution than partitioning.