Quantcast
Channel: SCN: Message List - SAP Applications on SAP Adaptive Server Enterprise (SAP ASE)
Viewing all 3678 articles
Browse latest View live

Re: Permission denied:Sybase.sh

$
0
0

Hi,

 

please try ./SYBASE.sh

 

There are no spaces and don't forget the slash /

 

If this does not work, please type on the shell:  id

This will print the current user. So we can see whether you're really logged on as sybmk1.

 

If you receive any other errors, please execute:  echo $SHELL

This helps us to identify whether you're using the right file for your shell.

 

Best regards,

Juergen


Create user with Read access in Sybase

$
0
0

Hi,

 

 

 

We  have a requirement to create a user with a read access to a particular table in Sybase which will be under SAPSR3DB Schema.

Can anyone hlep me to create a user and how to assign a read access only to a particular table in SAP JAVA Server?

 

 

 

Thanks and Regards,

Vimal

DBIF_RSQL_SQL_ERROR ASE ERROR SQL1105

$
0
0

Dear all,

 

Today we are facing on dump in our production system. i am attaching the screen shot for your reference. Our database is sybase on suse linux OS.

we will face this kind of dump generally related to space issue only. As per dump i added database space to 10GB in our production database.Here the program terminated is zee program and tcode is also zee tcode.after adding space also i am facing the same problem. Is this dump is related to space or source code error. please guide me regarding on this.

 

 

Thank you.

 

Regards,

venkat.

Re: DBIF_RSQL_SQL_ERROR ASE ERROR SQL1105

Re: DBIF_RSQL_SQL_ERROR ASE ERROR SQL1105

$
0
0

there is no update problem in our database at present this problem is coming only with zee program and zee tcode.

Re: DBIF_RSQL_SQL_ERROR ASE ERROR SQL1105

$
0
0

Sudhir,

 

You are getting the error 1105 for "saptempdb" database. Please follow the below steps to increase the size of this database.

 

1. Connect using isql with sapsa login.

2. check sp_helpdb saptempdb <-- You can provide this output for further help.

3. check the device names in the output.

4. Increase the size of the device using disk resize :

 

use master

go

disk resize name ="device_name", size="1024M" <-- Increase by 1 GB.

go

alter database saptempdb on device_name="1024M"

go

 

Now check with running your application/report.

 

Hope this will be helpful.

 

~Gaurav

Re: Create user with Read access in Sybase

$
0
0

Vimal,

 

 

Please check the below steps :

 

 

 

1) create a new role "test_role" as below.

 

1> use master

 

2> go

 

1> create role test_role

 

2> go

 

 

 

 

2) create a new login user "testuser" to access your database SAPSR3DB.

 

1> sp_addlogin testuser, testuser, SAPSR3DB

 

2> go

 

1> use SAPSR3DB

 

2> go

 

1> sp_adduser testuser , testuser

 

2> go

 

New user added.

 

 

 

3) grant SELECT (READ) permission to the new role.

 

1> create table t1 (a int)

 

2> go

 

1> insert into t1 values (1)

 

2> go

 

(1 row affected)

 

1> grant SELECT on t1 to test_role

 

2> go

 

 

 

4) grant the role to the required login user.

 

1> use master

 

2> go

 

1> grant role test_role to testuser

 

2> go

 

1> sp_modifylogin testuser, "add default role", test_role

 

2> go

 

 

 

5) Connect using "testuser" and access the table.

 

$ isql -Utestuser -SASE157 -Ptestuser

 

1> select * from SAPSR3DB..t1

 

2> go

 

 

Hope this will be helpful.

 

 

~Gaurav

Re: DBIF_RSQL_SQL_ERROR ASE ERROR SQL1105

$
0
0

Hello,

 

Tempdb is getting full during data retrieve. The dump isn't complete but are you able to identify the code lines of your custom program that do the data retrieve?

I'm thinking about the possibility of a select from two tables with incorrect join clause causing a cartesian product.

 

HTH

 

Cris


Re: Create user with Read access in Sybase

$
0
0

Hi,

 

Thank you. I will check and get back to you.

 

Thanks and Regards,

Vimalan

Re: Create user with Read access in Sybase

$
0
0

Hi,

 

From Sybase point of view it is working fine.

 

Do you have any idea why I cant find the table when trying to perform the table import in the communication channel in SAP PO?

 

It seems to be very strange and I'm currently struck up here.

 

Thanks and Regards,

Vimalan

Re: Create user with Read access in Sybase

$
0
0

Hi,

 

if an existing table is not found, this is usually because of the wrond schema. E.g. you log in as mylogin but the table is owned by SAPSR3DB.

 

I'm not an expert on SAP PO so I don't know whether you can configure anything regarding the connection.

 

If you're not sure which ASE login is used by SAP PO, you can monitor that on ASE side by configuring:

 

-- enable

execute sp_configure "log audit logon failure", 1

execute sp_configure "log audit logon success", 1

 

afterwards the ASE log contains information regarding log-in attempts.

 

Best regards,

Juergen

SYBASE DATABASE EXPORT & IMPORT

$
0
0

Hi All,

 

I am having requirement to copy production data to Quality system .My datbase is sybase and windows OS

 

please let me know what are file system structure need to be delete in Quality for this activity.

Re: SYBASE DATABASE EXPORT & IMPORT

$
0
0

Monoj,

 

 

Please refer the KBA : 1887068 - SYB: Using external backup and restore with SAP Sybase ASE

 

Hope this will be helpful.

 

 

~Gaurav

Re: Why Vendor-defined LIST Option#1 [CUSTOM LIST 1] not working?

$
0
0

Hello Anand,

 

I'm afraid this is not the right space for your question, I suggest you to try on SCN ABAP Development.

 

HTH

Regards,

 

Cris

Sybase DB export import

$
0
0

Dear Team,

 

we are new to Sybase, 

 

i am doing QAS refresh using DB export and import method, while doing export i am struck one phase, please suggest to which option i need to select from below screen shot.

1) split STR files

2)start migration monitor manually

sybase_export.PNG

 

and we are exporting the sybase with out stooping the application, because client not agree to stop the application (PRD) for that we are locked the all user's &suspend the background jobs in prd, kindly suggest is it fine or it's mandatory to stop application instance.


Sybase replication server configuration/installation

$
0
0

Hi All,

 

We are planning for replication server from PRD to new server.

Can somebody help me by answering below questions.

  • What are the prerequisites for replication server installation?
  • Do we need to install replication server in both machines?
  • Do we need separate machine for replication server?

Environment:

DB Version: ASE 16

SAP: ECC6 EHP7

DB Size: 65GB

 

Regards

Suresh

Re: Sybase replication server configuration/installation

Re: Why Vendor-defined LIST Option#1 [CUSTOM LIST 1] not working?

$
0
0

Hello Cris,

 

Thank you for the intimation.Will try the same.

 

Regards,

Anand

Re: Sybase DB export import

$
0
0

This posting was in the wrong forum. I move it to ASE.

Re: Sybase replication server configuration/installation

$
0
0

Hi,

 

in your case (Replication Server for SAP applications) more information can be found using the keyword "hadr".

 

There is a good presentation giving an overview:

http://scn.sap.com/docs/DOC-68125

and here is the users guide:

http://scn.sap.com/docs/DOC-65921

 

Regarding your question (I'm familiar with the Linux setup):

1. Sizing for the Replication Server depends on the load of the system, especially the data volume on the primary site. If you replicate around 25 GB per hour, your require 4 CPUs and 8 GB memory. If your workload is 50% of it, you can reduce the CPUs and memory also by 50%.

I'm not aware of any special prerequisites. Of course all hosts must know each other; maybe they are located in different data centers in order cover the failure of one data center.

The installation and setup is done with SWPM (aka SAPinst).

2. The HADR setup for SAP applications requires two Replication Servers

3. You can install Replication Server on ASE hosts as well but it is recommended to use separate hosts.

 

Best regards,

Juergen

Viewing all 3678 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>