1

I recently upgraded my system to Windows 7 64 bit from Windows XP. I had a C# application which loads and runs a stored procedure on one of my database server. This was successfully running on Windows XP with VS.NET 2005 32 bit, SQL Server 2005 Client SDK and server running on SQL Server 2005.

After upgrading, the program is failing at the ExecuteNonQuery method below:

    Server server = new Server(new ServerConnection(conn));
    server.ConnectionContext.ExecuteNonQuery(script);

The following exception has been logged:

LOG: This bind starts in default load context.
LOG: No application configuration file found.
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config.
LOG: Post-policy reference: Microsoft.SqlServer.BatchParser, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91
LOG: Attempting download of new URL file:///C:/../Microsoft.SqlServer.BatchParser.DLL.
LOG: Attempting download of new URL file:///C:/../Debug/Microsoft.SqlServer.BatchParser/Microsoft.SqlServer.BatchParser.DLL.
LOG: Attempting download of new URL file:///C:/../Microsoft.SqlServer.BatchParser.EXE.
LOG: Attempting download of new URL file:///C:/../Microsoft.SqlServer.BatchParser/Microsoft.SqlServer.BatchParser.EXE.

I did some research and found these links, which don't seem to quite answer my problem:

  1. http://social.msdn.microsoft.com/Forums/en/sqlsmoanddmo/thread/4b3bfde7-9ef5-42f5-8aa4-0e4612fc4901

  2. Can't find microsoft.sqlserver.batchparser.dll

Have any of you encountered similar issue before?

0

Browse other questions tagged or ask your own question.