Do you have any question about this error?
Message type: E = Error
Message class: RSMSS_ANALYZER_MSG - Messages for RSMSS_ANALYZER
Message number: 061
Message text: Clustered indexes cannot have include columns
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.
RSMSS_ANALYZER_MSG061
- Clustered indexes cannot have include columns ?The SAP error message RSMSS_ANALYZER_MSG061 indicates that there is an issue with the definition of a clustered index in your SQL Server database. Specifically, the error states that "Clustered indexes cannot have include columns." This means that you are trying to create or modify a clustered index with included columns, which is not allowed in SQL Server.
Cause:
In SQL Server, a clustered index determines the physical order of data in a table. It can only consist of key columns, and it does not support included columns. Included columns are only allowed in non-clustered indexes. The error typically arises when:
To resolve this error, you need to modify the index definition. Here are the steps you can take:
Review the Index Definition: Check the SQL statement or the index definition that is causing the error. Look for any included columns in the clustered index definition.
Remove Included Columns: If you find included columns in the clustered index, you need to remove them. The clustered index should only include key columns.
Create a Non-Clustered Index: If you need to use included columns, consider creating a non-clustered index instead. Non-clustered indexes can have included columns.
Example of creating a non-clustered index with included columns:
CREATE NONCLUSTERED INDEX idx_example
ON your_table (key_column)
INCLUDE (included_column1, included_column2);
Recreate the Clustered Index: If you need to recreate the clustered index without included columns, you can do so with a statement like:
CREATE CLUSTERED INDEX idx_clustered_example
ON your_table (key_column1, key_column2);
By following these steps, you should be able to resolve the error and properly define your indexes in SQL Server.
Get instant SAP help. Start your 7-day free trial now.
RSMSS_ANALYZER_MSG060
Waiting for statement execution via background job...
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSMSS_ANALYZER_MSG059
No index include columns have been defined
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSMSS_ANALYZER_MSG062
&1 remove include columns or remove clustered property
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
RSMSS_ANALYZER_MSG063
Index &1 is already clustered. Only one clustered index is possible
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.