Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

SSMA for Oracle 5.3 dbo.xp_ora2ms_exec2_ex

$
0
0
I'm getting a failure with the use of dbo.xp_ora2ms_exec2_ex in SSMA 5.3 on a SQL 2014 installMsg 17750, Level 16, State 0, Procedure xp_ora2ms_exec2_ex, Line 1Could not load the DLL %SSMA_O2SS_EP_BIN_PATH%\bin\ext\x64\SSMA4OracleSQLServerExtensions.dll, or one of the DLLs it references. Reason: 126(The specified module could not be found.).This does not happen my SSMA 5.2 SQL 2012 install.Both machine have the dll installed on the same path. Both had their SSMA for Oracle ExtPacts run as administrator. Directory of C:\Microsoft SQL Server Migration Assistant for Oracle Extension Pack\bin\ext\x64SSMA 5.3C:\Microsoft SQL Server Migration Assistant for Oracle Extension Pack\bin\ext\x64>01/05/2014 22:39 352,016 SSMA4OracleSQLServerExtensions.dllSSMA 5.2C:\Microsoft SQL Server Migration Assistant for Oracle Extension Pack\bin\ext\x64>12/01/2012 20:30 284,040 SSMA4OracleSQLServerExtensions.dllInterestingly the dll has been updated in SSMA5.3Its a bit of a noddy test but the script below will give a Msg 17750 Could not load the DLL on SSMA 5.3 but will correctly return a Msg 20001 for SSMA 5.2 DECLARE @active_spid INT, @login_time DATETIME SET @active_spid = sysdb.ssma_oracle.GET_ACTIVE_SPID() SET @login_time = sysdb.ssma_oracle.GET_ACTIVE_LOGIN_TIME() DECLARE @return_value_argument varchar(8000) EXECUTE master.dbo.xp_ora2ms_exec2_ex @active_spid, @login_timeAnyone got anything thoughts other than seeing I can do without the call to dbo.xp_ora2ms_exec2_ex ?

Viewing all articles
Browse latest Browse all 3145

Trending Articles