Re: Performance cluster on ASE
Simple example using a 1-row next_key table to generate a ticket number ... NOTE: Keep in mind that for a process to modify a piece of data, said piece of data must reside in a (local) data cache....
View Articleset READ UNCOMMITED for a query with a table join (Ver 12.5. and 15.5)
Hi all, this is an example of how to set the READ UNCOMMITED isolation level for a simple query: select col_a from mytable at isolation 0 What about a query with an equi-join? Is it: select col_a...
View ArticleRe: set READ UNCOMMITED for a query with a table join (Ver 12.5. and 15.5)
Yeah, the docs aren't very good at providing a robust set of examples so you've gotta: 1 - review the command syntax and then2 - try a few examples until you find the format that works 1 - From the ASE...
View ArticleRe: set READ UNCOMMITED for a query with a table join (Ver 12.5. and 15.5)
Hi Arthur, The "at isolation level" clause applies to the whole query and all the tables involved and so should come at the end of the query. Individual tables can use different isolation levels within...
View ArticleRe: set READ UNCOMMITED for a query with a table join (Ver 12.5. and 15.5)
Hi Mark,Hi Andy, thank you both for the fast answers! Best RegardsArthur
View ArticleRe: Help with new install... cannot load database file...
I as able to change the sort order based on your post and the GUI available... Now I can load the backup... I just have to create all the users that own the objects.. so it actually failed..It is now...
View ArticleRe: RDDB for tempdb database (15.7) ?
HI All , I asked support and they cannot manage to apply what is written in documentation. So , we have to cope with the fact it's currently not possible to get minimal dml_logging for system tempdb ,...
View ArticleCan not restart DB after failed recovery...suspect
Database 'XXXXXXXX' cannot be opened. An earlier attempt at recovery marked it 'suspect'. Check the ASE errorlog for information when I try to use the database.This is after trying to change the...
View ArticleRe: Can not restart DB after failed recovery...suspect
Hi Ken, After attempting to clear the suspect flag and then rebooting, which of the messages are you getting during recovery of the database? If it is "...An earlier attempt at recovery marked it...
View ArticleRe: Can not restart DB after failed recovery...suspect
I am on a windows 2008r2 host: sp_configure "allow updates", 1gouse mastergoupdate sysdatabasesset status = status ^ 256where status & 256 = 256and name = <dbname>gosp_configure "allow...
View ArticleRe: Can not restart DB after failed recovery...suspect
Ok.. so I am at the point where I think I just need to drop the database..However .. can you tell me what I need to do with the devices connected to it?Do I have to drop them too? and rebuild them?...
View ArticleRe: Can not restart DB after failed recovery...suspect
You don't need to drop the devices. All you should have to do is drop the database and run the create database command again.It should be fine to use the same devices.
View ArticleASE Backup server default shared memory?
If backupserver started without -P, -m parameters, for example likebackupserver -N25 -C20 -SSYB_BS the shared memory for this backupserver should be 48M(P default is 48, then 48X1M), right?
View ArticleRe: how to removed a suspended database?
thank you. try following: dbcc dbrepair(sybsecurity, ltmignore)go and get following msg: DBCC execution completed. If DBCC printed error messages, contact a user with System Administrator (SA)...
View ArticleRe: ASE Backup server default shared memory?
Correct. And you can verify the max shared memory configuration by looking at the backupserver errorlog for a message like the following (should show up within the first 30 lines of the errorlog after...
View ArticleRe: how to removed a suspended database?
With dbcc dbrepair (sybsecurity, dropdb) , I can remove the db. Thanks.
View ArticleRe: How to reinstall audit system?
Thank you, Mark. Following the guide from sag, run script installsecurity, one table sysaudits_01 created as system table in sybsecurity db, not user table. Is it right?
View ArticleRe: How to reinstall audit system?
Sounds right then again ... there's nothing magical about the installsecurity script, ie, it's an ascii/SQL script file that you can easily view/read to see what it's doing.
View ArticleRe: How to reinstall audit system?
Thank you. Then I try to setup audit option with following way:sp_audit all, all, allsp_audit 'all', 'all', 'all'sp_audit "all", "all", "all" ,"on"sp_audit option=all, login_name=all, object_name...
View ArticleRe: How to reinstall audit system?
all/all/all is not a valid set of parameters (see the source for sp_audit for a detailed analysis of valid tuples). If you want to enable all auditing options then you'll have to loop through a list of...
View Article