I was already very impressed by OneNote, but I am blown-away after stumbling upon the built-in OCR capability. When I did a content search for “Attendee” it not only found the image, it even highlighted the word on the image!

Technology, activities, etc.
I was already very impressed by OneNote, but I am blown-away after stumbling upon the built-in OCR capability. When I did a content search for “Attendee” it not only found the image, it even highlighted the word on the image!

I removed an entity that we were no longer using, but the Mail Merge Templates were still there. CRM throws an error when there are templates that are missing their entity. I discovered this by running the CRM Diag Tool and the CRM Trace Log Viewer.
To fix this, I had to manually set the records to “deleted” in the CRM database (DeletionStateCode=1). Lesson learned: remove Mail Templates before deleting an entity!
I needed to remove non-ASCII characters from an Oracle column and this regular expression did the trick nicely:
update TABLE set COLUMN = regexp_replace( COLUMN,'[^a-z,_, ,A-Z,0-9,@,&,$,:,.,%,'']','');