解决Navicat:Access violation at address xxxxxxxxx in module ‘navicat.exe‘.Read of address xxxxxx

刚刚用存储过程搞了个上千万条记录的表,玩着玩着就报错如下:

 原因:

可能是内存越界,需要重新注册windows的动态链接库。

解决:

首先,打开cmd,运行命令:

for %1 in (%windir%\system32\*.dll)do regsvr32.exe /s %1

 然后,重新在navicat连接数据库,这样就可以了。

猜你喜欢

转载自blog.csdn.net/lezeqe/article/details/120714256