Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

In SAP system with database Sybase ASE some times shows the following errors,

* Dispatcher stop in SAP MMC

* when login using GUI shows, No connection to database, session terminated

* Cannot login through SAP GUI

dev_0 log shows ------> ***LOG BY0=> [ASE Error SQL1105][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Can't allocate space for object 'syslogs' in database 'SID' because 'logsegment' segment is full/has no free extents. If you ran out of space in syslogs, dump the transaction log. Otherwise, use ALTER DATABASE to increase the size of the segment.

This is because of "Syabase Logsegment, syslog full, we should clear logsegment to resolve this issue"

Login to server with "SYBSID" user,

Goto command prompt

Use the following commands for login to Sybase Databse,

> isql -Usapsa -Ppassword -SSID -X

- Usapsa         - user sapsa

- Ppassword    - Password of the sapsa user

- SSID            - Your system SID

To clear logsegment use the following commands,

1> use master

2> go


1> dump transaction tempdb with no_log

2> go

1> dump transaction sybsystemdb with no_log

2> go

1> dump transaction sybsystemprocs with no_log

2> go

1> dump transaction sybmgmtdb with no_log

2> go

1> dump transaction saptools with no_log

2> go

1> dump transaction saptempdb with no_log

2> go

1> dump transaction model with no_log

2> go

1> dump transaction SID with no_log

2> go

> exit

Restart your SAP system,

Hope it helps you....

4 Comments
Labels in this area