Re: Will ASE system defined error number fall into user defined error numbers...
Hi Siddhartha, I don't expect ASE to start using error numbers in the user-defined range. I'm part of the group that reviews new messages, and conserving the shrinking pool of available numbers is...
View ArticleRe: Will ASE system defined error number fall into user defined error numbers...
Hi Sid, In addition to Bret' comments, I have been informed that ASE will start reusing some existing error message numbers that were used in older releases. You may need to watch for this if running...
View ArticleRe: Why there is not info from stacktrace in errorlog
Hi, We found the problem. During SP132 installation libraries libbtsymbols.so and libsybibmmq were not replaced. Both libraries appeared as in use and the version from dataserver file and libbtsymbols...
View ArticleRe: Why there is not info from stacktrace in errorlog
Thank you for letting us know the resolution to your issue! Cheers,-bret
View ArticleRe: ODBC 16.00.00.02 return wrong data
We are not accessing Sybase via an API. Why the SDK could be useful? Which "driver" you are referring as "upgrading the driver". Where we can get it? Thanks
View Articlesuppress warnings re exclusive locking
We're using ASE 15.7 on Windows but this may apply to other platforms. Certain stored procs where we're locking a table in exclusive mode inside a trans generate warnings: (number 12103, Severity 10)...
View ArticleRe: ODBC 16.00.00.02 return wrong data
Hi Vladimir, You are using something with the odbc driver that is giving you the wrong results. "ODBC driver to connect to Sybase 15". The odbc driver is part of the SDK for SAP ASE. I suggest you SDK...
View ArticleRe: suppress warnings re exclusive locking
Hi David, You aren't doing anything particularly wrong. If you were writing your own reporting client using the Open Client SDK, or perhaps using some existing client that had some features for...
View ArticleInstall ASE 15.0 multiple instances on single Windows Server
I'm consolidating a number of different ASE servers onto a single Windows Server 2008 R2 machine - previously, we've had every ASE instance running on its own machine. The ASE version will be 15.0 in...
View ArticleConn 16.0 SP01 Open Client and Open Server SDKs have been released.
Conn 16.0 SP01 SDKs are now available for download from http://support.sap.com Cheers,-bret
View ArticleHow to Increase the Transaction Log size?
Hi, Currently, we are having problems with our transaction log due to its size which quickly get full. Our transaction log size is only 1024 MB or 1 GB and we usually dump the transaction log just to...
View ArticleRe: How to Increase the Transaction Log size?
Hi Joven, You would use the ALTER DATABASE command. alter database <dbname> log on <logicalDeviceName> = <size> Example: alter database mydb log on mylogdev = "100M"go If you don't...
View ArticleRe: ODBC 16.00.00.02 return wrong data
I see one possible explanation why we get wrong data for decimal fields. We are using function SQLBindCol, not SQLGetData which I think most application is using. If ODBC changed way how decimal data...
View ArticleRe: How to Increase the Transaction Log size?
Hi Bret, I have a user in our server OS which is the sybase database owner. Also I have checked the filesystem where our transaction log is located and has enough free space to extend the transaction...
View ArticleRe: How to Increase the Transaction Log size?
Joven, Its simple 1>disk resize 2>name = "<Device_Name", 3>size = "XXXM"4>go Example:1>disk resize 2>name = "ABC_Data_001", 3>size = "1024M"4>go Where XXX denotes the size...
View ArticleRe: How to Increase the Transaction Log size?
Hi Kiran, Do I need to execute first the use master go before issuing the disk resize? Also after disk resize, do I need to alter database? Sorry I've got many questions since I'm new in sybase...
View ArticleRe: How to Increase the Transaction Log size?
Joven, This is the sequence: 1> use master1> disk resize name='<Device_Name>', size='1024M'2> go1> alter database <DB_Name> ON <Device_Name> ='1024M'2> goAs example I...
View ArticleRe: How to Increase the Transaction Log size?
Hi Kiran, I tried the steps you have mentioned and it increased the transaction log but now it is bigger than I wanted as it added the previous size with the size I issued. For example: my transaction...
View ArticleRe: How to Increase the Transaction Log size?
Joven, That is what the Sybase functionality is the value which you gave in size is the additional value what it will configure. Only the memory configuration(max memory, cache) which are done from...
View ArticleRe: How to Increase the Transaction Log size?
Hi Kiran, I have shrink my transaction log using the shrink log space you've mentioned. My transaction log size is now 12GB.How do I check if the device for my transaction log is indeed 12GB. I have...
View Article