i migrated an entire oracle Database to SQL Server 2014 Database using SSMA. (SQL Server Migration assistant)
The migration resulted in introduction of multiple Execution calls in my stored procedures (like below):
The module 'INFRA_IP_WEBLOGGER$spCheckIPStatus' depends on the missing object 'sysdb.ssma_oracle.db_check_init_package'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'INFRA_IP_WEBLOGGER$spCheckIPStatus' depends on the missing object 'sysdb.ssma_oracle.db_error_exact_one_row_check'. The module will still be created; however, it cannot run successfully until the object exists.
where INFRA_IP_WEBLOGGER$spCheckIPStatus is one of the Procedure name.
Do i have to install some seperate component so that SQL Server 2014 detects call to sysdb.ssma_oracle
What can i do to fix these errors?