Re: Corrupt table
Hi Mike, Yes, it is supported, though as a "last resort" kind of operation. If it makes youfeel any better about the process, it is also documented as KBA 1944895. -bret
View ArticleRe: length of login password
Thank You for replying. i am not hacker, for the contrary.but i want to be sure the existing sa password is rather long for a hacker not to crack it...
View ArticleRe: Re-Resolution of procedures
You can use either DBCC UPGRADE_OBJECT or EXECUTE ... WITH UPGRADE to force procedure query trees to be rebuilt (including object resolution) from the source text in syscomments. The DBCC does not...
View Articlesp_passwordpolicy tables
How can I find out if whether 'min digits in password' is iset.What table I query for getting the answer ? Leonid.,
View ArticleRe: length of login password
Why do you want to check the existing Password? Implement this check when user sets the new password.
View ArticleRe: length of login password
The only way to be sure is to set limits on the length of the password within ASE (see sp_passwordpolicy) and forcing the sa password to be changed with "sp_passwordpolicy 'expire login passwords',...
View ArticleRe: length of login password
I want to ensure namely sa password is rather complex. But sa can do what he wants, so my checking will reveal not enough complex password. thanks....
View ArticleSAP System Performance lowered by sequential read access
Hi,We have installed SAP Fiori Purchase Order application on top of ERP EHP6 on a embedded NW Gateway inside ERPThe report /IWBEP/CL_MGW_ABS_MODEL========CP triggers many SQL sentences toREPOSRC table...
View ArticleRe: sp_passwordpolicy tables
'min digits in password' is stored in the master..sysattributes table select *from sysattributeswhere class = 27,and attribute = 1,and object_type = 'PC' /*Password Complexity*/
View ArticleRe: How to get sybase installed options (15.7 sp110)?
Hi Marc, I think you are asking what license ASE is actually using compared to what is in the $SYBASE/SYSAM-2_0/licenses directory. You can look at the ASE log file and compare this to what licenses...
View ArticleRe: Uninitialized logical page after database load
Hi I tried this: CREATE DATABASE TWSDEV1DB on TWSDEV1DB = "4250M";goload database TWSDEV1DB from 'compress::1::/temp/TWSDEV1DB.dmp_1409151614.sc'stripe on...
View ArticleRe: How to get sybase installed options (15.7 sp110)?
Hi Ryan, Thanks Sorry if wasn't clear : altough IMDB/RDDB options are present and valide within licence file , sp_lmconfig shows NULL as they were not installed. These options are returned by...
View ArticleRe: procedure cache is reaching 100%
Thank you Mark, I did restart the dataserver 4 days back and found the procedure cache size was normal and after four days it was increased by 80% and keep growing.The des output are around 7000. But...
View ArticleRe: pool is configured too small for current demands
The table most likely contains a text or image column.The space occupied by these columns is also counted in the index space. If you don't need the data, you can delete rows in the table instead of...
View ArticleRe: How big to make Large IO cache pools ?
Thanks for the syslogs - we're already thinking of moving the logs to a separate cache. Re: > PS: the size you have defined for your named cache looks sufficient for me, check if the cache hit ratio...
View ArticleRe: Uninitialized logical page after database load
Ok, well, that eliminates the theory that this is due to CR 764402.
View ArticleRe: Uninitialized logical page after database load
There is a restriction documented under the LOAD DATABASE command in the ASE Reference Manual that you cannot load dumps earlier than 12.5.4 into 15.x. load database I don't recall any particular...
View ArticleRe: Uninitialized logical page after database load
Thanks Bret, That's not quite what I wanted to hear but may explain my problem. I guess I'll have to raise a case to SAP support which leads to another problem..... How do I get support for ASE...
View ArticleRe: Uninitialized logical page after database load
Is there any chance Replication is involved?You might see if running the following command before doing the online database helps: dbcc dbrepair(dbname, ltmignore)
View ArticleRe: Uninitialized logical page after database load
Hi David, Since the Developer edition is free, I doubt it comes with any formal support. I'm not an expert on the licensing though. However, given the current information, I'm sure the formal advice...
View Article