Quantcast
Channel: SCN: Message List - SAP Adaptive Server Enterprise (SAP ASE) for Custom Applications
Browsing all 3587 articles
Browse latest View live

Re: How my clients are connected? Used plain text or encrypted passwords?

Even if there was a flag/bit in a system table you'd still have the possibility of missing some logins, eg: - you would need to set up a process to periodically poll the system table(s) - you would...

View Article


Re: Where's Sybase Tech Doc?

Hi Christopher, Today everything seems to be working fine with Tech Docs. Thanks,Ilias

View Article


ASE CE 15.7 LOCK problem

Hi ASE expert ! My ASE CE 15.7 sp110 on linux has the following error message , please help ! lock__set_sleepingowner_list (S1): internal lock manager error - thread blocking but cluster lock not in...

View Article

Re: Working on same table from different session

Thank you so much, Mark. Yes, I am goning to add one more column to mytab: spid(or userid to identify the user). table in tempdb is fine, but the pb app use datawindow to get the data from mytab. I...

View Article

Insert into hold lock and never release.

I put following insert in a SP: Insert into mytab(name, access_date,username, ipaddress )     Select  'my name', getdate(), 'NA', ipaddr from master..sysprocesses where spid = @@spid    .....  and then...

View Article


Re: Insert into hold lock and never release.

My guess would be that there is an explicit BEGIN TRANSACTION statement upstream of the insert that never gets explicitly committed, your code likely needs to add a COMMIT TRANSACTION statement...

View Article

Re: Insert into hold lock and never release.

Also see what's in master..syslogshold and master..systransactions. If you see an entry like $chained_transaction then you're running in chained transaction mode and if you didn't explicitly issue a...

View Article

Re: Insert into hold lock and never release.

If I pot Set Chained ON in the SP before Insert, like: CREATE PROCEDURE MyProcASBEGINSet Chained ON  Begin Tran ABC     Insert into mytab(name, access_date,username, ipaddress )     Select  'my name',...

View Article


Re: Insert into hold lock and never release.

Then I tried following: CREATE PROCEDURE MyProcASBEGIN  Begin Tran ABC     Insert into mytab(name, access_date,username, ipaddress )     Select  'my name', getdate(), 'NA', ipaddr from...

View Article


Re: Insert into hold lock and never release.

Found out reason: it is because powerbuilder transaction attribute AutoCommid =  false.So looks like if client pb app set AutoCommid =  false, even put commit transaction in SP, the transaction still...

View Article

Re: Insert into hold lock and never release.

First off ... you *can* commit the tran in the stored proc, but it requires you understand a) (nested) transaction management and b) when running in chained mode a 'commit tran' is (in essence)...

View Article

urgent: trace on/off

From errorlog, got a lot trace on/off like automatically: 01:00000:00146:2014/07/03 14:05:15.84 server  DBCC TRACEON 3604, SPID 14601:00000:00146:2014/07/03 14:05:15.84 server  DBCC TRACEOFF 3604, SPID...

View Article

Re: urgent: trace on/off

You can't disable the display of DBCC TRACEON / TRACEOFF in the log when dbcc traceon or traceoff is used. You can work on convincing your users to use "set switch on 3604" instead.  This does not...

View Article


What's OmniServer?

There are 9 process with name like OmniServer-122 from same server where ASE is running. What's it?

View Article

Re: What's OmniServer?

Processes within ASE (sp_who), or the OS? A long time ago  (around 1998, or ASE version 10) Sybase had a product called Omni Server.  The functionality for it was rolled into ASE where it now forms the...

View Article


Re: What's OmniServer?

Those are what you see when you do an sp_who, they are the sessions connecting into to the ASE server as a result of a CIS connection. The '122' is the originating spid in the ASE server where the CIS...

View Article

Re: What's OmniServer?

Run following sql on ASE 12.5:     Select spid, kpid,program_name from master..sysprocesses where program_name like 'Omni%' Then get:   spidkpidprogram_name   11170197130OmniServer-76...

View Article


Re: What's OmniServer?

Exactly. So there is a spid no. 76 which has a connection into your ASE server for CIS reasons, ending up as spid no. 1 in your server. Let's call that #76 a parent spid since it has spawned the CIS...

View Article

Re: abap import error completed 162 error 1 total 164

Hello, I have the same problem. Did you find a solution? Regards,

View Article

Re: urgent: trace on/off

Thanks, Bret. Found out reason: it is because of a third party tool.

View Article
Browsing all 3587 articles
Browse latest View live