Do you have any question about this error?
Stop googling SAP errors. Use our Free Essentials plan instead - no credit card needed. Start Now →
Message type: E = Error
Message class: SMMSS_ANALYZE - MSSQL Analysis and performance Tools
Message number: 036
Message text: WMI data is not available. Check xp_cmdshell permissions
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.
SMMSS_ANALYZE036
- WMI data is not available. Check xp_cmdshell permissions ?The SAP error message SMMSS_ANALYZE036 indicates that there is an issue with the Windows Management Instrumentation (WMI) data not being available, and it suggests checking the permissions for
xp_cmdshell
. This error typically occurs in the context of SAP systems that rely on SQL Server for database management.Cause:
WMI Data Unavailability: The error suggests that the WMI data, which is used for system monitoring and management, is not accessible. This can happen due to various reasons, such as:
- WMI service is not running.
- Corruption in the WMI repository.
- Insufficient permissions to access WMI data.
xp_cmdshell Permissions: The
xp_cmdshell
is a SQL Server extended stored procedure that allows executing command-line commands from within SQL Server. If the permissions forxp_cmdshell
are not set correctly, it can lead to this error. By default,xp_cmdshell
is disabled for security reasons.Solution:
To resolve the error, you can follow these steps:
Check WMI Service:
- Ensure that the WMI service is running on the server. You can check this by running
services.msc
and looking for the "Windows Management Instrumentation" service. If it is not running, start the service.Repair WMI Repository:
- If the WMI service is running but you still encounter issues, you may need to repair the WMI repository. You can do this by running the following commands in an elevated command prompt:
winmgmt /verifyrepository winmgmt /salvagerepository
Check xp_cmdshell Permissions:
- If
xp_cmdshell
is required for your SAP application, you need to enable it and set the appropriate permissions. You can enablexp_cmdshell
by executing the following SQL commands:EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE;
- After enabling it, ensure that the SQL Server login used by SAP has the necessary permissions to execute
xp_cmdshell
.Security Considerations:
- Be cautious when enabling
xp_cmdshell
, as it can pose security risks. Ensure that only trusted users have access to execute commands through it.Check SQL Server Logs:
- Review the SQL Server error logs for any additional information that might help diagnose the issue further.
Related Information:
If the problem persists after following these steps, consider reaching out to SAP support or your database administrator for further assistance.
Get instant SAP help. Sign up for our Free Essentials Plan.
SMMSS_ANALYZE035
SQL error &1: &2&3&4
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
SMMSS_ANALYZE034
No server list
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
SMMSS_ANALYZE037
No ABAP program name
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
SMMSS_ANALYZE038
Statement is not blocked. No plan available in cache
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.