TM Master Common Errors
- 5.2.0 SendAsDeniedException error when using smtp.office365.com for emails
- A connection was successfully established with the server, but then an error occurred during the login process
- Attaching files to component - Error: Object reference not set to an instance of an object.
- Data at the root level is invalid. Line 1, position 1
- Error Moving File From Temp Folder COMM Folder
- Error when opening Inventory -> Spare parts
- Error when TM Master upgraded to higher version
- Failure Sending Mail - Possible Fixes
- Language Compatibility Issues Turkish, Portuguese & Spanish
- Named Pipes Provider, error: 40 - Could not open a connection to SQL Server
- Object reference not set to an instance of an object - SetSparePartImage
- OutOfMemory
- Printer does not support A4 papersize
- Rebuilding / Reorganisation of Indexes
- Report Header Name is Shorter Than 3 Characters
- System.ArgumentException: Parameter is not valid.
- System.Exception: RelatedDataView is Disposed
- System.NotImplementedException Module rights for Batch Job App
- System.Runtime.InteropServices.COMException
- System.Runtime.InteropServices.COMException. The remote procedure call failed
- System.Xml.XmlException: Invalid character in the given encoding. Line 1, position 1.
- The conversion of a varchar data type to a datetime data type resulted in an out-of-range value (Norwegian format)
- The conversion of the varchar data type into datetime produced an out of range value Spanish/Portugese Date Format
- The process cannot access the file because it is being used by another process.
- The specified string is not in the form required for an e-mail address
- The timeout period elapsed prior to completion of the operation or the server is not responding
- Transport level error - The semaphore timeout period has expired
- Transport level error - The specified network name is no longer available
- Unable to add SRF report (System.Runtime.InteropServices.COMException. The remote procedure call failed.)
- Visual Styles-related operation resulted in an error because visual styles are currently disabled in the client area
Rebuilding / Reorganisation of Indexes
Rebuilding / Reorganisation of indexes is a database maintenance job which should be done by customer.
It can be automated on SQL Server level: https://docs.microsoft.com/en-us/sql/relational-databases/maintenance-plans/rebuild-index-task-maintenance-plan?view=sql-server-ver15
If customer uses SQL Server 2016+, indexes should be reorganized and it can be done "online" (without disconnecting all the clients and etc) as a background process.
If they using SQL Server < 2016, indexes should be rebuilt and TM Server service should be stopped, the database should be moved to "single user mode", so only one datab administrator will have an access to it.
If it's a lot of indexes that should be de-fragmented, it may take about 1-3 hours.
Just remember that the process can take a while and it's always better to choose some special time for maintenance when the load is the lowest.
Customers can do maintenance themselves: All the information about it is here: https://docs.microsoft.com/en-us/sql/relational-databases/indexes/reorganize-and-rebuild-indexes?view=sql-server-ver15
----------------------------
You can use this script to get a list and status of all fragmented indexes in database:
SELECT s.[object_id]
, OBJECT_NAME(s.[object_id]) as TableName
, s.index_id
, ind.[name] as IndexName
, s.avg_fragmentation_in_percent as FragmPercent
FROM sys.dm_db_index_physical_stats(DB_ID(), NULL, NULL, NULL, NULL) s
INNER JOIN sys.indexes AS ind on s.object_id = ind.object_id AND s.index_id = ind.index_id
WHERE s.page_count > 128 -- > 1 MB
AND s.index_id > 0 -- <> HEAP
AND s.avg_fragmentation_in_percent > 5
order by FragmPercent desc, TableName
You will need to detect all tables that appear in the results of the query. So indexes for these tables should be defragmented.
You can manually go into to each table that appears in "defragmented" list and doing the following operation:
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article