Recently, I successfully compiled Apache and Php to use a Sybase ASE v15.0.3 dataserver on CentOS v5.4 (32 bits). Apache was compiled with DSO support to use Php as a dynamically loadable module. This is how I did it: Read more…
-
The following transact-sql code will help you to find all defined rules in a Sybase ASE database.
select sysobjects.name as "rule name", object_name(syscolumns.id) as "table name", syscolumns.name as "column name" from sysobjects, syscolumns where object_name(syscolumns.domain)=sysobjects.name and sysobjects.type = 'R' go
The output displays the table and column to which the rules are bound.
Tags: ase, howto, sql, sybase, Sybase Adaptive Server Enterprise, tips, transact-sql
-
As of Sybase ASE v15.0.2, Sybase introduce the “Application Tracing” feature.
“Application Tracing” allows you to collect useful diagnostic information for a running client session (like execution plan, i/o cost etc…), and capture the trace output into a text file. Very helpful to debug some performance bottlenecks ! All you need to know to use this feature is the SPID (Server Process ID) of the session you want to trace. Applicative users with “set tracing” permission granted are allowed to use “Application Tracing” to trace their own sessions.
Tags: article, ase, howto, sybase, Sybase Adaptive Server Enterprise, tips
Categories:
Quick Links:
Archives:



















