Re: stored procedure createTmpTable returned dbms 17
Hi Ralph,
Typically DBMS 17 errors are temp table related which involves the tempdb database. Based on the error messages being received, it is possible that there are locked records that are currently stuck in the temp tables causing the system to give you errors.
To deal with this, please do the following:
1. Create a backup of your company database.
2. Have all users log out of Dynamics GP.
3. Stop and start the SQL Server to clear the temp tables.
4. Run the following scripts in SQL Management Studio to clear all stuck processes:
use DYNAMICS
delete SY00800
delete SY00801
delete ACTIVITY
use TEMPDB
delete DEX_LOCK
delete DEX_SESSION
5. Check if the issue still persists.
Regards,
Vinutha