which is more expensive hash or modulus partitioning? when do
you use modulus partitioning?
Answers were Sorted based on User's Feedback
Answer / ankit gosain
Hi All,
Hash partitioning is more expensive than modulus but it'll
give better performance as well.
The basic difference is, you can apply Modulus partitioning
for the number fields only while you can apply Hash
partitioning for Varchar and any type of field.
If you have more queries, you can mail me on
ankitgosain@gmail.com
Cheers,
Ankit :)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / nish
has partitioning when distinct key fields are less.
Modulus when the key field are very few and numeric.
Modulus = x%y so the field ought to be numeric
| Is This Answer Correct ? | 0 Yes | 0 No |
I am defining one varaible parameter date in job parameters.I want use this variable date in where clause in source query.
How many Key we can define in remove duplicate stage?
i have source like deptno,sal 1,2000 2,3000 3,4000 1,2300 4,5000 5,1100 i want target like target1 deptno,sal 1,2000 3,4000 4,5000 target2 2,3000 1,2300 5,1100 with out using transformerstage
how can you generate sequence number using only the sequential file stage?
How to remove duplicates in transformer stage? in parallel mode
How to create environments and call them? What is the use defined variables?
What is difference between symmetric multiprocessing and massive parallel processing?
What are the prerequisites for join stage
How did you reconcile source with target?
What is the difference between operational data stage (ods) and data warehouse?
Hi friends,Two input files, wants to validate only if the reference data has '0' otherwise no validation should be done..how to do this??
How to reverse the string using SQL?