Hi Guys
Im getting an error when scheduling an Backup via DB13
Stored procedure 'saptools.dbo.SP_ADM_DUMPDB' not found. Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).
This is only occurring on a system which was updated to ASE 15.7.133. On other systems which version is 15.7.122 is working fine
I have performed all activities detailed in Note 1607816 and also imported note 1882376 - SYB: DBA Cockpit Correction Collection SAP Basis 7.40 which has several correction
Tried to find this stored procedure on both systems, in DB not updated Stored Procedure is found, on the other is not present
15.7.122
1> use saptools
2> select db_name()
3> go
------------------------------
saptools
(1 row affected)
1> SP_ADM_DUMPDB
2> go
Msg 201, Level 16, State 2:
Server 'AED', Procedure 'SP_ADM_DUMPDB':
Procedure SP_ADM_DUMPDB expects parameter @jobname, which was not supplied.
(return status = -6)
15.7.133
1> use saptools
2> select db_name()
3> go
------------------------------
saptools
(1 row affected)
1> SP_ADM_DUMPDB
2> go
Msg 2812, Level 16, State 5:
Server 'AEP', Line 1:
Stored procedure 'SP_ADM_DUMPDB' not found. Specify owner.objectname or use
sp_help to check whether the object exists (sp_help may produce lots of
output).
1>
Anyone experienced the same problem? Any idea how to re-implement those missing stored procedure?
Best
Martin