Can anybody explain about the SQL Range and List partitions with an example? i have very much confused about it by studying whitepapers?
Share
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.
List partition is used when you have a finite list of constants: 1,2,3,4,5,6,7,8,9,10. And you want to divide them to 3 partitions: {1,2,3}, {4,5,6}, {7,8,9,10}.
Range is used for infinite lists: { all_values < 10}, { all_values < 20}, { all_values < 100}, { all_values < MaxValue}. If all_values in (1…~)