Unix Technical Forum

ERROR 1601 I dont understand why

This is a discussion on ERROR 1601 I dont understand why within the Sybase forums, part of the Database Server Software category; --> look at the last line in the error log: 00:2003/08/14 07:08:06.57 server Error: 1601, Severity: 21, State: 3 I ...


Go Back   Unix Technical Forum > Database Server Software > Sybase

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-08-2008, 03:53 PM
ofer
 
Posts: n/a
Default ERROR 1601 I dont understand why

look at the last line in the error log: 00:2003/08/14 07:08:06.57
server Error: 1601, Severity: 21, State: 3

I dont understand why did i get this error.



00:2003/08/14 03:53:18.42 server Error: 1105, Severity: 17, State: 4
00:2003/08/14 03:53:18.42 server Can't allocate space for object
'syslogs' in database 'netreal' because the 'logsegment' segment is
full. If you ran out of space in syslogs, dump the transaction log.
Otherwise, use ALTER DATABASE or sp_extendsegment to increase the size
of the segment.
00:2003/08/14 03:53:18.44 server Unable to write CHECKPOINT record in
database 5 because the log is out of space.
00:2003/08/14 03:53:18.44 server Automatic checkpointing is disabled
in database 'netreal' because the log is out of space. It will
continue when the DBO successfully checkpoints the database. Please
free up some space or extend the database and then run CHECKPOINT.
00:2003/08/14 03:53:27.82 server WARNING: ***************************
00:2003/08/14 03:53:27.82 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 03:56:24.32 server WARNING: ***************************
00:2003/08/14 03:56:24.32 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 03:59:24.81 server WARNING: ***************************
00:2003/08/14 03:59:24.82 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:02:26.91 server WARNING: ***************************
00:2003/08/14 04:02:26.92 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:05:26.35 server WARNING: ***************************
00:2003/08/14 04:05:26.36 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:08:34.61 server WARNING: ***************************
00:2003/08/14 04:08:34.62 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:11:29.94 server WARNING: ***************************
00:2003/08/14 04:11:29.94 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:14:32.15 server WARNING: ***************************
00:2003/08/14 04:14:32.16 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:17:32.32 server WARNING: ***************************
00:2003/08/14 04:17:32.32 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:20:27.58 server WARNING: ***************************
00:2003/08/14 04:20:27.61 server Attempt by user 3 to dump xact on db
netreal with NO_LOG
00:2003/08/14 04:22:53.24 server Attempt by user 3 to dump xact on db
netreal with NO_LOG was successful
00:2003/08/14 04:22:53.26 server WARNING: ***************************
00:2003/08/14 07:08:03.49 server Error: 1601, Severity: 21, State: 3
00:2003/08/14 07:08:03.53 server There are not enough 'user
connections' available to start a new process. Retry when there are
fewer active users, or ask your System Administrator to reconfigure
SQL Server with more user connections.
00:2003/08/14 07:08:06.57 server Error: 1601, Severity: 21, State: 3
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-08-2008, 03:53 PM
Mariano Corral
 
Posts: n/a
Default Re: ERROR 1601 I dont understand why

It should be too many connections already opened, so
they reached the maximum configured. A 1601 error
must appear in errorlog for each subsequent attempt
to open a new connection.

I see no reason to think there may be a hidden problem
behind this. I've seen 1601 errors many times and the
reason was always a lack of free connections.

Regards,
Mariano Corral

ofercohen@allot.com (ofer) wrote:
> 00:2003/08/14 07:08:03.49 server Error: 1601, Severity: 21, State: 3
> 00:2003/08/14 07:08:03.53 server There are not enough 'user
> connections' available to start a new process. Retry when there are
> fewer active users, or ask your System Administrator to reconfigure
> SQL Server with more user connections.
> 00:2003/08/14 07:08:06.57 server Error: 1601, Severity: 21, State: 3

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-08-2008, 04:02 PM
Roy Stewart
 
Posts: n/a
Default Re: ERROR 1601 I dont understand why

Your server is out of user connections, ie... you have to many users logged in. Have users logout or allocate more user connections.

To check the current number of connections log in as 'sa' and issue this command in isql:

sp_configure 'user connections'
go

To allocate 40 more connections use this command:

sp_configure 'user connections', 40
go

--Roy Stewart

On 31 Aug 2003 07:36:54 -0700, ofercohen@allot.com (ofer) wrote:
> look at the last line in the error log: 00:2003/08/14 07:08:06.57
> server Error: 1601, Severity: 21, State: 3
>
> I dont understand why did i get this error.
>
>
>
> 00:2003/08/14 04:22:53.26 server WARNING: ***************************
> 00:2003/08/14 07:08:03.49 server Error: 1601, Severity: 21, State: 3
> 00:2003/08/14 07:08:03.53 server There are not enough 'user
> connections' available to start a new process. Retry when there are
> fewer active users, or ask your System Administrator to reconfigure
> SQL Server with more user connections.
> 00:2003/08/14 07:08:06.57 server Error: 1601, Severity: 21, State: 3




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:24 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com