Quantcast
Viewing all 1545 articles
Browse latest View live

Managing Data Volumes in MaxDB

Hello,

 

Due to an upgrade from ERP 6.0 to ERP 6.0 EHP5, I had to add new data volumes to my MAXDB database.

I created 6 data volumes of 9.5GB and 2 data volumes of 38GB.

i am not too worried about the 9.5 GB data volumes since they are close to 50% free.

However the 38GB data volumes are filled to only around 13%. This consumes a lot a space on my server.

Is there anyway to reorganize the database? I need to free-up some space on the server.

I am new to MaxDB.

 

Thanks,

Suhan Hegde


Remove log volumes in 7.7 version

Hi experts!

 

I need to remove log volumes. I have 7.7 version MaxDB. Is there any improvement in this version in comparasion to the previous process (backup and restore in a different configured db) of removing log volumes?

 

Thanks in advance...

Rob

Error "-9400 AK Cachedirectory full"

Hello,

 

I'm writing back following an old thread in 2009 on this forum, related to a problem with MaxDB and "AK Cachedirectory full" problems. You can find the previous thread here: What can we so against Error "-9400 AK Cachedirectory full"?

 

The problem was actually never resolved: we could more or less live with it, and we managed to reduce it for a while, but we are having that problem again almost every day now. We actually fixed various points since 2009 and our system has changed quite a lot.

 

We use MaxDB 7.8.02 (BUILD 038-121-249-252) with the JDBC Driver sapdbc-7.6.09_000-000-010-635.jar. Note that we don't use MaxDB in a SAP environment as we have our own business application.

 

Following some very helpful feedback from Lars Breddemann, we fixed various points in our system: for example, result sets were not always properly closed, this is now done immediately after the query has been executed and the result rows were read. We also follow the advise from Elke Zietlow to always close a connection and its associated prepared statements when the error occurs. This also helps in most cases, but sometimes when the error occurs, even closing the connection and its prepared statements does not help and the problem "escalates" until we have to restart the db to fix the problem.

 

Back to the discussion in 2009, I used the two statements given by Lars to monitor the catalog cache usage: when I run this multiple times, I see that all result sets are properly closed as I only see the ones currently being used and they disappear.

 

One important point is that our java application keeps many prepared statements open in a cache, to have them ready to be reused. We can have up to 10'000 prepared statements open, with up to 100 jdbc connections. Actually the AK Cachedirectory full problem happens sometimes very soon after we restart our system and db, so at that time the number of prepared statements can be very low, which seems to indicate that the number of prepared statements being open is not necessarily linked to the problem.

 

Also in the discussion in 2009, Lars mentioned the fact that we use prepared statements of the type TYPE_SCROLL_INSENSITIVE and he was asking if we could not use TYPE_FORWARD_ONLY. Would this really make a difference? We need the TYPE_SCROLL_INSENSITIVE in many cases because we use some iterators to scroll up and down the result sets, so using TYPE_FORWARD_ONLY would require changing quite some code. I also saw in the MaxDB code that using the type TYPE_SCROLL_INSENSITIVE adds the string "FOR REUSE" to the sql statement, what does it exactly mean?

 

Amy help to fix that problem would be greatly appreciated.

Christophe

Does SAP ECC on MaxDB License is free of cost ?

Hi All,

 

SAP ECC Installation with MaxDB is free of cost or do we have to pay for it.

 

if we have to pay for it, how much it costs Approx.

 

Can any one of you please tell us.

Livecache move from 2008R2(physical) to 2012R2(Vmware) help needed.

Hi All,

we are planning to move our Live cache stand alone database which is SAP MAX DB 7.9 from 2008R2 to 2012R2(Vmware) due to hardware license expiry.

Requesting to let me know which standard procedure do i have to follow?

 

More information of versions involved:

==========================

SCM 7.02

SAP MAXDB 7.9

 

Current procedure which we are planning to follow:


1)Matching resources in between source and target.

2)Installing SAP MAX DB software and SAP MAX DB studio in target a head.

3)Taking the full backup from source.

4)Restoring full backup into target which taken from source.

5)change the configuration items in LC10

6)Start Live cache.


Please let me know if we have any standard document to follow for this activity.

MaxDB ODBC driver for Windows

Hi,

 

I'd looked at the download section and also with google - but I'm not able to find ODBC drivers for Windows for download anyware ... Can somebody please gie me an URL for?

 

Thanks

 

Andre

MAXDB Installation error - Some Database application might still be running

Hi All ,

 

I am trying to install SAP  trial version . While installation of MAXDB serve , I am getting an error " Some database application might still be running"

 

I dont have any other database installed on my system .

 

Kindly reply what can be the possible reason for this .

 

Thanks n Regards

Manik L Dhakate

Identity columns

Hello,

a short questions, do all SapDB/MaxDB Versions support identity columns (I mean default serial)?

Thanks!

Tiberius

 

PS: sorry, my first post was accidentally a document, not a question...


dbanalyzer ERROR 25: SQLDBC error -4008, POS(1) Unknown user name/password combination (SQL state "28000").

Hello Gurus,

 

we have a unusual problem with our MaxDB 7.9.8.25

We want to check the parameter like discribed in note 1111426, but dbanalyzer throws the following error.

 

tttadm >/sapdb/TTT/db/bin/dbanalyzer -d TTT -u superdba,****** -f dbanalyzer_InstanceParameterCheck.cfg -o /tmp -i -c 1 -t 1,1

SAP MaxDB Database Analyzer, The Performance Analysis Tool, Version 7.9.08.25

Copyright 2000-2014 by SAP AG

 

 

ERROR 25: SQLDBC error -4008, POS(1) Unknown user name/password combination (SQL state "28000").

But with dbmcli we can connect with the same user.

 

tttadm >  dbmcli -d TTT -u superdba,******

dbmcli on KBP>

Has anyone a suggestion?!

Error "-9400 AK Cachedirectory full"

Hello,

 

I'm writing back following an old thread in 2009 on this forum, related to a problem with MaxDB and "AK Cachedirectory full" problems. You can find the previous thread here: What can we so against Error "-9400 AK Cachedirectory full"?

 

The problem was actually never resolved: we could more or less live with it, and we managed to reduce it for a while, but we are having that problem again almost every day now. We actually fixed various points since 2009 and our system has changed quite a lot.

 

We use MaxDB 7.8.02 (BUILD 038-121-249-252) with the JDBC Driver sapdbc-7.6.09_000-000-010-635.jar. Note that we don't use MaxDB in a SAP environment as we have our own business application.

 

Following some very helpful feedback from Lars Breddemann, we fixed various points in our system: for example, result sets were not always properly closed, this is now done immediately after the query has been executed and the result rows were read. We also follow the advise from Elke Zietlow to always close a connection and its associated prepared statements when the error occurs. This also helps in most cases, but sometimes when the error occurs, even closing the connection and its prepared statements does not help and the problem "escalates" until we have to restart the db to fix the problem.

 

Back to the discussion in 2009, I used the two statements given by Lars to monitor the catalog cache usage: when I run this multiple times, I see that all result sets are properly closed as I only see the ones currently being used and they disappear.

 

One important point is that our java application keeps many prepared statements open in a cache, to have them ready to be reused. We can have up to 10'000 prepared statements open, with up to 100 jdbc connections. Actually the AK Cachedirectory full problem happens sometimes very soon after we restart our system and db, so at that time the number of prepared statements can be very low, which seems to indicate that the number of prepared statements being open is not necessarily linked to the problem.

 

Also in the discussion in 2009, Lars mentioned the fact that we use prepared statements of the type TYPE_SCROLL_INSENSITIVE and he was asking if we could not use TYPE_FORWARD_ONLY. Would this really make a difference? We need the TYPE_SCROLL_INSENSITIVE in many cases because we use some iterators to scroll up and down the result sets, so using TYPE_FORWARD_ONLY would require changing quite some code. I also saw in the MaxDB code that using the type TYPE_SCROLL_INSENSITIVE adds the string "FOR REUSE" to the sql statement, what does it exactly mean?

 

Amy help to fix that problem would be greatly appreciated.

Christophe

Uninstalling MaxDB

Hi,

I have installed SAP Netweaver developer Studio 6.40 which installed MAXDB database also. Due to some reason I had to unistall the trial version of Developer studio, in this process developer studio got unistalled but not MAXDB.

*----


I use Add/Remove programs and uninstall MaxDB. I get the messages like this.....

 

Start uninstallation now (y/n) : Y (resoponse)

 

then message displays

found instance of J2E, cannot remove package..first remove all instances...

*----


 

I have stopped all the services, even then Iam getting such error message. How do I uninstall?

 

Help needed.

 

-Suresh

Max DB start and stop

Hello Folks,

 

We have SAP system running on Max DB database. We have windows patching maintenance for that we have to stop SAP and Max DB database.

I am new to Max DB so can someone tell me the correct steps for stopping the database (including the service stopping sequence) and starting it again after the maintenance gets over.

 

We have two Max DB services running MAXDB: SID and XServer.


I checked on some document that states that taking max DB instance offline from Database manager is not a good idea.


Regards,

Mohit

MaxDB ODBC driver for Windows

Hi,

 

I'd looked at the download section and also with google - but I'm not able to find ODBC drivers for Windows for download anyware ... Can somebody please gie me an URL for?

 

Thanks

 

Andre

Livecache move from 2008R2(physical) to 2012R2(Vmware) help needed.

Hi All,

we are planning to move our Live cache stand alone database which is SAP MAX DB 7.9 from 2008R2 to 2012R2(Vmware) due to hardware license expiry.

Requesting to let me know which standard procedure do i have to follow?

 

More information of versions involved:

==========================

SCM 7.02

SAP MAXDB 7.9

 

Current procedure which we are planning to follow:


1)Matching resources in between source and target.

2)Installing SAP MAX DB software and SAP MAX DB studio in target a head.

3)Taking the full backup from source.

4)Restoring full backup into target which taken from source.

5)change the configuration items in LC10

6)Start Live cache.


Please let me know if we have any standard document to follow for this activity.

Server not connected with GUI after performed post installation activities.

Dear Experts,

 

  I facing one issue. I installed IDES-EHP7  Suse Linux 9 with MAXDB 7.9 .Installation performed successfully. After installation I performed the post installation activities also like sm28,import profiles- RZ10,SGEN . After finishing the post Installation I shutdown the system. After some time I started the system but could not  connected to SAPGUI. I used sapstart .sap is started.database also online. But Sap server not connected with sapgui. I checked dev_w0 the following error is coming which was I attached file name err.png. please help me any one Thanks in advance.  


MaxDB migration from Windows to Solaris

Hello All,

 

We are in the process of migrating our Liveache servers from Windows 2008R2 to Solaris 11 OS, can you please help me in referring to the documents.

 

I did search SDN, but was unable to get the required information.

 

Thanks in advance.

 

- SBK.

Database Studio does not launch

i have installed the latest version of SAPMaxDB studio for desktop - and installation was successful. When i try to launch the db studio, nothing happens.. no message whatsover.. Can someone guide me to launch it

How to Recover Maxdb "control" user password?

Good day;

 

We are trying implementing the latest SAP LiveCache release.

Unfortunately, we canu2019t do this since the password of users control, superdba, and other maxdb database default users are not known. This is becoming a real problem by time since no one can login to this database using the database manager application, hence, no one can administer this database properly.

 

The LCA, LDA, LEA connection between SAP SCM instance DSC and liveCache instance DSL, however, are already set up correctly and connection is healthy between DSC and DSL but the password used for this connections is unknown.

 

Is there any way SAP could help us on recovering the lost passwords of the users control and superdba without the need to trash the liveCach database and recreate it again as this is not acceptable by the

business users.

 

 

Thanks,

 

Ahmad,,,

Max DB start and stop

Hello Folks,

 

We have SAP system running on Max DB database. We have windows patching maintenance for that we have to stop SAP and Max DB database.

I am new to Max DB so can someone tell me the correct steps for stopping the database (including the service stopping sequence) and starting it again after the maintenance gets over.

 

We have two Max DB services running MAXDB: SID and XServer.


I checked on some document that states that taking max DB instance offline from Database manager is not a good idea.


Regards,

Mohit

For all entries for Tabletype without field

Hi,

How do I use for all entries for the internal table of table types without fields?

I have table type CRMT_OBJECT_GUID_TAB which has line type as data element, so does not have any fields.

Example:

data: lt_guid type crmt_object_guid_tab,

lt_customer_i     type table of crmd_customer_i.

 

select * from crmd_orderadm_i into table lt_guid .

select * from crmd_customer_i into table lt_customer_i for all entries in lt_guid

where guid = ?????

 

What should I write here in where condition?

 

Regards,

Sagar

Viewing all 1545 articles
Browse latest View live


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