When I try to do an invoke-sql
command from Powershell X86 I get an error
invoke-sqlcmd -Query "SELECT 'HELLO!'" -ServerInstance Server -Database DB
invoke-sqlcmd : Could not load file or assembly 'Microsoft.SqlServer.BatchParser, Version=15.100.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
If I run the exact same command from regular x64 Powershell prompt I do not get the error
invoke-sqlcmd -Query "SELECT 'HELLO!'" -ServerInstance Server -Database DB
Column1
-------
HELLO!
This is on a newly built windows 2016 x64 bit server:
OS Name Microsoft Windows Server 2016 Datacenter Version 10.0.14393 Build 14393
I need x86 powershell to run a script that uses a legacy 32 bit ODBC driver, it also uses invoke-sql
commands as well.