cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

while clicking on save button getting "500 internal server error" in hybris 6.1 version backoffice

Former Member
0 Likes
579

For any itemtype clicking on save button throwing 500 internal server error in backoffice ui

Accepted Solutions (1)

Accepted Solutions (1)

VinayKumarS
Active Contributor
0 Likes

When your user was created your received a space quota on the users tablespace from your dba. It means that you cannot create more than that amount of space in that tablespace. you are now creating a table. Upon doing so, a number of extents of a certain size are created (reserved) for it. Seeing as you don't explicitely mention them, you get the defaults of the tablespace. Most likely the initial/next extents and the minimum number of extents on the tablespace for a new table exceed your quota. For a solution you can do the following: - ask for more quota from your dba - specify explicite low extent sizes (make sure the tablespace is not 'uniform extent size', though) ALTER USER quota unlimited on USERS; This you can run from HAC-> FlexibleSearch -> SQL Query. I hope it is not a production.

Former Member
0 Likes

Thank you Sam for the response.

Answers (1)

Answers (1)

VinayKumarS
Active Contributor
0 Likes

Did you initialized/updated backoffice ?? usually if that has not been done. it will give an error. If you have not done do it again. Otherwise please share the logs.

Former Member
0 Likes

Hi Sam,

am getting exception in console as

Caused by: de.hybris.platform.persistence.EJBInternalException: sql error [1536,72000,ORA-01536: space quota exceeded for tablespace 'ABCDE'