can not restore user database
ASE 12.5 on CentOS: there is a master, mydb,1. Restore mydb and everything is fine. but check system data is very slow. mydb is fine.2. then shutdown and start in single user mode3. then restore...
View ArticleRe: can not restore user database
Why did you restore the master database? [This is not a normal step to take in recovering a user database.] I've got no idea what you mean by 'system data is very slow' ... ??? The mydb database was...
View ArticleRe: can not restore user database
thanks. If use drop option to drop mydb, the how can I load it? create a new and then load? how about the configuration? I also try it like: update sysdatabases set status = -32768 where name = 'mydb'...
View ArticleRe: error message on pool
Thanks. but I did not change anything on pool or this index cache. What I did is create a new data cache, then bind some indexes to this new cache. those indexes maybe bound to this index cache. Should...
View ArticleRe: error message on pool
Well, someone tried setting the 2KB pool to 0MB (which matches with one of your other threads regarding eliminating a cache/pool): ====================IO Size Wash Size Config Size Run Size...
View ArticleHow to set device auto extend for ase 12.5?
try to set device as auto growth with DBArtisan and it call sp_dbextend, but error message said sp_dbextend not exist. how to set up device as auto extended so that no need to worry about segment is full?
View ArticleRe: How to set device auto extend for ase 12.5?
Did you load the ${SYBASE}/ASE-12_5scripts/installdbextend script into your dataserver to create the sp_dbextend proc?
View ArticleRe: How to set device auto extend for ase 12.5?
thanks, Mark. check it and find installdbextend not loaded. After run it and it is okay to put this setting. Question is: if the device is created on a raw partition, it will extended automatically,...
View ArticleRe: how increase segment on live?
thank you. On ASE 12.5, there is no column vdevno in master..sysdevices and master..sysusages.
View ArticleRe: how increase segment on live?
ah yes. Then the join criteria between sysusages u, and sysdevices d is where u.vstart between d.low and d.high and d.status & 2 = 2
View ArticleGot error while installing Sybase 15.7
Hi, I am installing ECC 6.0 Ehp6 on HA cluster, i have successfully installed ASCS and ERS but while running database it is showing below error. i have checked log file in sapinst bsrv.log it is giving...
View ArticleRe: Got error while installing Sybase 15.7
The error message is related to a security feature that was added in ASE 15.7 SP50 / SP100 involving a "hosts.allow" file to control the ability to make remote dumps. See "Remote Dump Host Control"...
View ArticleRe: Got error while installing Sybase 15.7
Hi Bret, Thanks for replying. 1)when i goto path cd $SYBASE - it goes to /sybase/<SID>. but here i am unable to find out the hosts.allow file.let's say i have two physical...
View ArticleRe: Got error while installing Sybase 15.7
The feature is patterned after the UNIX remote access control feature, so they used the same "hosts.allow" name for the file. The one in /etc will be the one for UNIX. The ASE one goes in $SYBASE by...
View ArticleRe: how ase 12.5 use cpu?
... unless the command is one that can use worker processes and the server is configured to allow the use of worker processes. Then a single process could use the processing resources of both engines.
View ArticleRe: how ase 12.5 use cpu?
Yeah, that's why I said 'single spid', but probably should've expanded on that a bit more (eg, a command that uses worker threads will see multiple spids working the same command, said spids can run on...
View ArticleRe: How to extend raw device size manually?
Thanks. after I issue command sp_extend on a raw device mydevicesp_dbextend 'set', 'device', 'mydevice', '10%' the check the info with sp_dbextend listthen I got following info:...
View ArticleRe: How to extend raw device size manually?
Have you read all of the documentation for the sp_dbextend stored proc? The 'default' entries are created by the installdbextend script and act as default configurations to be applied across all...
View ArticleRe: How to extend raw device size manually?
Thank you, Mark. I did checked the doc for both sp_dbextend and disk resize, but they did not mention about if applied to raw device. I will try it on test env and see what's happening.
View Article