Since it's actually an OS issue more than a DB issue, this solution works for more than just MySQL which is mentioned in the article linked below. This fix is the only one that worked for me using SQL SERVER after trying everything else.
So I figured I'd put this out there for others to find: "How to Fix MySQL Error 10055" http://blog.whitesites.com/How-to-Fix-MySQL-Error-10055__635140180116307813_blog.htm
Short version:
On Windows Server 2008 R2 Open command Prompt
Type the following
netsh int ipv4 set dynamicport tcp start=10000 num=50000Press Enter
Type the following
netsh int ipv4 set dynamicport udp start=10000 num=50000Press Enter
Type the following
netsh int ipv6 set dynamicport tcp start=10000 num=50000Press Enter
Type the following
netsh int ipv6 set dynamicport udp start=10000 num=50000Press Enter
Worked for me.