Re: Is it possible to create view from stored procedure for ase 12.5?
Not directly. If simply creating a view with similar logic isn't possible, a way to do this wouldbe to create a loopback server entry for your server, and then create an rpc-based CIS proxy table on...
View ArticleRe: Is it possible to create view from stored procedure for ase 12.5?
Actually I have the solution with proxy table from sp with loopback server. but it has a performance problem. So I am looking for a solution to replace this proxy table. I can create a physical table...
View ArticleSYSWAITS 15.7 SP110
We just migrated to 15.7 SP110 version our production server : I am wondering of some waits (extracted from asemon tool) : The first three coumns after migrating , then Three for 9 june, and three for...
View ArticleRe: Is it possible to create view from stored procedure for ase 12.5?
I believe the usual pattern used for this sort of circumstance is to havethe client create a #temp table, call the procedure (which is written to insert the results of the select into the #temp table),...
View Articleone or more named data cache for performance
Suppose I have a DB with size 20G(include data and indexes). I have enough memory say 30G.Then I can create named data cache to cache the whole database.Here is my thinking: One 20G cache the cache...
View ArticleRe: one or more named data cache for performance
It depends....It is the standard answer to these sort pof questions. It is a difficult question to answer but it all depends on the application. I wouldnt bind all my data and index to caches because...
View ArticleRe: Is it possible to create view from stored procedure for ase 12.5?
I am not sure but do you pass different parameters every time user calls it. if yes, One way would be to get all the data if possible into a physical table by executing it. Do not apply any...
View ArticleRe: SYSWAITS 15.7 SP110
It looks like you have issues with your disk especially disk having log files. I am not sure but your avg time calculations are wrong for different waits unless your sumwaittime is in seconds. Try to...
View ArticleRe: ASE CE 15.7 problem
Not sure but did you try to gather the data from monProcesswaits for wait event id 41(it is for latch aquire)? Do you see the count increasing for this wait for any of the SPID's or do you see too many...
View ArticleRe: Is it possible to create view from stored procedure for ase 12.5?
we cant really give you a solution for this without a proper use case, are your data session based, are every client selects his "own" data from that "view" and so on and so on what are the performace...
View ArticleASE1503 EOL?
Hi ASE expert, I can found End of Life Notice for ASE15.0.2 at http://www.sybase.com/detail?id=1099063 I also need to know when will the ASE15.0.3 EOL. Any doc exists? Regards.
View ArticleRe: ASE1503 EOL?
Hello, SAP Adaptive Server Enterprise 15.0.x Mar 31 2015 https://service.sap.com/sap/support/pam?hash=pvnr%3D67837800100900007536%26pt%3Dg%257Cd Please Note that the follow version are exclude from...
View ArticleRe: one or more named data cache for performance
Thanks, Darshan.1. my server is multi-cpu server. 'global cache partition number' is set as 4. I have data cache for user db, log, tempdb. For all of them: cache_partition=4. Got this from doc: it is...
View ArticleRe: performance issue on user db setting
Hi Kent, Well, if you have an application that does select into in a database and thatdatabase has "select into" turned off, the performance is going to be zero. Turning on "select into" will allow the...
View Articleabap import error completed 162 error 1 total 164
hi experts i am installing ecc6.0 ehp 7 ides system sybase database,linux 6.4 operating system. got error when installing the ides ehp7 system in baap import phase. total 164 completed 162 errors 1...
View Articleis it possible to create a select trigger on a table?
I want to a table as placeholder. anytime when select statement apply on this table, then a trigger will call a SP to fill data in this table. Is it possible to have a solution for this request for...
View ArticleRe: is it possible to create a select trigger on a table?
No, there are no select triggers. The closest thing is an rpc-based proxy table. You could use an insert, update, or delete trigger though. Client would have to be programmed to first perform an...
View ArticleRe: is it possible to create a select trigger on a table?
As another side note: the very sharp-eyed may notice that the sysobjects table does actually have a "seltrig" column in addition to the "deltrig", "instrig", and "updtrig" columns that hold the object...
View ArticleRe: performance issue on user db setting
Just one note on "ddl in tran" - some ODBC/JDBC API require this setting to be enabled. So turning this on may be required depending on what applications do. So good practices to keep transactions...
View Article