as i can see, data type of id column in tc_positions table is signed int and the limitation of this type is 2,147,483,647 number of records.
- if my records count go higher what should i do?
- can i change id column type to BIGINT? in this case is there any performance issue?
- what is your suggestion to handle large amount of data?
You can change the column type.
as i can see, data type of id column in tc_positions table is signed int and the limitation of this type is 2,147,483,647 number of records.