Hi Team,
I have sql server 2014 64 bit installed on ms windows 2012 r2. I have and SSIS package where i am trying to read sql trace file and getting below error.
'file:///C:\\Program Files\\Microsoft SQL Server\\120\\Tools\\Binn\\pfclnt.dll' when i checked on server file was missing there. It works fine in case of if sql server is installed for 32 bit also on another machine. But as per requirement we have to solve issue for 64 bit installation and in package setting it is also set to 64 bit. Run in 32 bit checkbox is unchecked there.
In C# code Microsoft.SqlServer.ConnectionInfoExtended is referenced and something like below code is used.
TraceFile tf = new TraceFile();
string trcFile = @"xxxx.trc";tf.InitializeAsReader(trcFile);
As per my understnding ConnectionInfoExtended.dll is only for 32bit and do not work when package is executed in 64 bit enviornment and file is also missing.
Please let me know how this can be fixed for 64 bit setup.
Thanks & Best Regards,
Pradeep Kumar