Trying to import and make data available in SQL Server, I studied steps for Postgres and MySQL. Notice total imported records combining ipv4
and ipv6
between them are different:
5,018,861 = Postgres
12,575,441 = MySQL (ipv4=11,334,870 ipv6=1,240,571)
Since SQL Server like MySQL requires a convert for no cidr
datatype support, I did the same steps of importing converted (hex) to SQL Server, surprisingly SQL Server has the same count as Postgres.
Wondering what the reason behind this is.