I build web apps with a bunch of different frameworks (.NET MVC, SharePoint, Drupal, ColdFusion) using bunch of different datastores (Oracle, SQL Server, MySQL, some CouchDB). I'm also a big fan of continuous integration testing and devops.
If you happen to run into the "HRESULT: 0x80040E14" error message in sharepoint, be sure to check your SQL server disk space and log file size. Sharepoint complains with this error when SQL server is out of disk space for whatever reason, but it also throws the same error if youre having problems with the way you applied sharepoint SP 1 (http://support.microsoft.com/kb/841216).
Check the SQL server disk space first, thats the easier solution. If that doesnt do it for you, try the KB article.
Twitter Facebook Google+ LinkedIn
note to self - in SharePoint when you need to impersonate the application pool account, you can use WindowsIdentity.Impersonate(IntPtr.Zero) like this:
Needed a break from all the .NET and Coldfusion goo I’ve been dealing with at work. Started working on a mobile-first workout tracking app using only free to...
Doing an upgrade of coldfusion from CFMX 6.1 to CF11 and completely forgot how to import/trust external SSL certs (for consuming web services).
hit the web s...
I’ve used the CONNECT BY syntax to do hierarchy queries in oracle, but recursive queries seem to be the new standard (not so new I guess, but new for me!). ...