Do you have any question about this error?
Message type: E = Error
Message class: DT - Table activation (incl. indexes)
Message number: 758
Message text: ROW store not allowed: Table & contains column(s) of type GEOM_EWKB
Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of messages in the SAP system have a message text, however this is frequently insufficient to comprehend or resolve the problem.
To make things easier, more detailed information is frequently added to describe the issue, how to fix it, and the necessary steps or configuration modifications.
Unfortunately, there isn't any extra information in this error notice.
First, use our AnswerBot below to get a possible cause and solution (requires a premium subscription).
Also, review the in-depth Common Questions & Answers listed below; you could discover a solution there or be able to connect with others who have faced similar challenges.
You can also try searching the SAP support portal (support.sap.com) but you need a special user ID to access it. It is possible that an SAP support note exists that provides additional details about the mistake or even steps for fixing it.
DT758
- ROW store not allowed: Table & contains column(s) of type GEOM_EWKB ?The SAP error message DT758 indicates that you are trying to create or modify a table that contains columns of type
GEOM_EWKB
(which is a geometry type used for storing spatial data) in a row store database. However, row store tables do not support this type of column.Cause:
The primary cause of this error is that the database table you are trying to create or modify is defined as a row store table, but it includes one or more columns of type
GEOM_EWKB
. Row store tables in SAP HANA do not support spatial data types, which is why you are encountering this error.Solution:
To resolve this error, you have a couple of options:
Change the Table Type:
- If you need to store spatial data, you should create the table as a column store table instead of a row store table. Column store tables in SAP HANA support spatial data types, including
GEOM_EWKB
.- You can specify the table type when creating the table using the SQL command:
CREATE COLUMN TABLE your_table_name ( your_column_name GEOM_EWKB, ... );
Remove Spatial Columns:
- If the spatial data is not necessary for your application, you can remove the columns of type
GEOM_EWKB
from the table definition. This will allow you to create or modify the table as a row store table.Related Information:
By following the above solutions, you should be able to resolve the DT758 error and successfully create or modify your table as needed.
Get instant SAP help. Start your 7-day free trial now.
DT757
Invalid sharing type &
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DT756
Sharing is only allowed for transparent tables.
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DT759
Buffered view &: Runtime object of basis table & was modified
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
DT760
View & with basis table &: Runtime object was modified
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
Click on this link to search all SAP messages.