My company recently moved our SQL Server from one location to another and also updated it from V11 to V13. I have a .NET app that takes data from the SQL Server table and converts it to a point FeatureClass in a local FileGeoDB. The process has worked great up until the server move.
I've setup a connection to the new SQL Server and that works. I can enumerate the tables on the source database. So am confident the connection to the new SQL Server is solid.
Dim pWkspSource As IWorkspace = OpenSqlDbWorkspace(ci)
I setup up my target workspace, dataset, and feature class and then I attempt to convert via
Dim pFeatDataConverter As IFeatureDataConverter = New FeatureDataConverter
Dim pEnumInvldObj As IEnumInvalidObject = pFeatDataConverter.ConvertFeatureClass(fcSourceName, pQryFltr, fdTargetName, fcTargetName, Nothing, Nothing, "", 1000, 0)
At this point the process just hangs at ConvertFeatureClass with no errors or exceptions.
What could be the issue and/or what can I try to troubleshoot the issue?