Hi Experts ,
we are working on EHP 7 with syabse databse version 15.7.0.101 on windows platform
Suddenly server shut down because of power failure so after restart server but not starting...
sap dispatcher is not starting after verify issue it is found that transaction log is full
when we try to dump database we are getting below error
Msg 926, Level 14, State 1:
Server 'TST', Line 1:
Database 'TST' cannot be opened. An earlier attempt at recovery marked it
'suspect'. Check the ASE errorlog for information as to the cause.
we try for below possibilities to reset the suspect status
sp_configure "allow updates", 1
go
use master
go
begin transaction
go
update sysdatabases
set status = status & ~256
where name="database_name"
go
commit transaction
go
sp_configure "allow updates", 0
go
checkpoint
go
shutdown
go
but still issue not resolve
sp_resetstatus store procedure giving error as not found
we resize tha data file and log file but it not allowed to alter database as its giving same error (suspect error)
Regards
Thanks in advance