For example, \Classes\SysRecordTemplateEdit\setFormDataSourceRecord has this problem. It loops through form datasources and tries to set them all to InMemory withouth checking first if they are TempDB or not.
In order to avoid this error, you can use the following construction:
if (!myTable.isTempDb()) { myTable.setTmp(); }
More about TempDB tables on MSDN.
This comment has been removed by the author.
ReplyDeleteHelpful blog, like it!
Delete