Re: ASEOLEDB 30012 Disconnect
Cory, Does this happen every time you try to connect? Ribo is probably the best way to go if so.You can see if a connection is even being attempted and where this is being killed. The MDA scripts are...
View ArticleRe: SAP server is very slow
Hi Deepak, In the CI it is working fine.In dailog instance only we are facing this problem.There are no network drops. Regards,Patan Thavaheer.
View ArticleBackground jobs are running for long time
Dear Experts, Actually we are having one PRD server and two dailog instances.If we schedule the MRP background jobs, the jobs are running in dailog instances.And some times they are active for long...
View ArticleOpenSSL vulnerability CVE-2014-0224
My customer want to know whether ASE is affected by the following OpenSSL vulnerability in http://www.openssl.org/news/secadv_20140605.txt SSL/TLS MITM vulnerability (CVE-2014-0224), DTLS...
View ArticleRe: OpenSSL vulnerability CVE-2014-0224
You have clearly double posted this question in two groups. So the first question go back to you. Are you running Custom Applications on ASE, if so this is not the proper group?
View ArticleRe: ASEOLEDB 30012 Disconnect
I thank everyone for the information... The event only occurred once and there was no relevant information in the server error log. I'm going to move on from this problem for now until it re-appears.
View ArticleASE database user for read-only access
Hi everybody. We have just migrate our QA SAP system to ASE. In our old database we use a database user for some of our custom-made aplications that read some information direct to the SAP database....
View ArticleSAP Control Center (for Sybase ASE) 3.3.0 GA errors.
Hi.Have you evermetwith sucherrorsafter creating acollectionjobsinSybase Control Center ?Errorsrefer tothe repositorydatabaserunning onSybaseAnywhere Server:[...]=2014-07-23 10:10:33,290 [WARN ]...
View ArticleRe: ASE database user for read-only access
Hi Francisco, You can login to Sybase database using a dba login id.Then create a test user using command CREATE USER TEST IDENTIFIED BY <password for test user> Provide grant to this test user...
View ArticleRe: ASE database user for read-only access
Thanks Deepak but this is Oracle-like statements. What I'm looking for is the right Sybase statements.I have created the user on the database, create a role and grant the role to select permision on a...
View ArticleRe: ASE database user for read-only access
Hi Francisco, Please share what grants have been given and what is the permission error you receive Regards,Deepak Kori
View ArticleRe: SAP Control Center (for Sybase ASE) 3.3.0 GA errors.
I found thecause of the problem. During the start ofthe SCC, the scriptfor fillingthe RES_DAY_PRD_D table is executed. This process fails with errors:=2014-07-22 10:07:53,240 [ERROR]...
View ArticleRe: ASE database user for read-only access
Roles aren't necessarily automatically activated when you log in. They can be configured that way. You can also manually activate the role with the "set role <name> on" command. From a core...
View ArticleRe: ASE database user for read-only access
use mastergo exec sp_addlogin 'new_user', 'password', @defdb='Mydb', @deflanguage='us_english', @auth_mech='ANY', @fullname='new_user'gocreate role new_rolegogrant select on mydb.owner.table to...
View ArticleRe: ASE database user for read-only access
Hi Bret. What I'm trying to do is this Oracle code in sybase: CREATE USER new_user IDENTIFIED BY passwordCREATE ROLE new_readonly_roleGRANT select ON database.owner.table TO new_readonly_roleGRANT...
View ArticleRe: ASE database user for read-only access
When issuing a 'grant' you must be *in* the database where the object of the grant resides. So a slight change in your sample provided to Deepak: ==========================exec sp_addlogin 'new_user',...
View ArticleRe: ASE database user for read-only access
Mark's script looks to me like it should work. The "specified login name already exists" message is expected because you are using the same login name as before. Looks like your CREATE ROLE statement...
View ArticleRe: ASE displaying high %MEM in 'top'
Final Update: The memory usage has dropped considerably to 45% consistently. After the ASE server was bounced there was no more swapping experienced andproblem seemed to have been solved. BIG...
View ArticleRe: ASE database user for read-only access
Hi Bret. When I exec the script in the isql the grant statement returns this message: This permission can only be GRANTed or REVOKEd by owner of the object, or by a user with GRANTable privileges in...
View Article