select COUNT(*) from T1,T2
In the above query I just try to get the number of possible permutation combination can be made.
Both are very huge table which have 27182708 rows.
When I try to execute above query it throws Arithmetic overflow error.
I have tried bigint conversion also but same response.
Any suggestions ?