Error: Execution of User Code in the .NET Framework
The Problem: Execution of user code in the .NET Framework is disabled. Enable “clr enabled” configuration option The Solution: EXEC sp_configure ‘show advanced options’ , ‘1’; reconfigure; EXEC...
View ArticleAn error occurred in the Microsoft .NET Framework while trying to load assembly
I received this error after deployment of a new Sql CLR function: An error occurred in the Microsoft .NET Framework while trying to load assembly id 65545. The server may be running out of resources,...
View ArticleDynamically Populating Dropdownlists
Had to do this today, took a few minutes of google searching In order to dynamically populate a drop down list use the following logic: SqlConnection connection = new SqlConnection(connectionString);...
View ArticleIgnore directories from Ankh SVN
This is specific to Ankh SVN but the syntax is general throughout svn. We have a project that is under revision control and contains a large folder of images. These images do not change often enough to...
View ArticleToday and Yesterday the Default Parameters
So you might already know this, I didn’t and it kicked my ass for 30 minutes. So you have a report deployed in reporting services, it takes date parameters, you want it to execute lets say…between...
View ArticleSearch string across all tables and columns
I came across a wonderful script by SQLDenis at Less Than Dot – Blog. I have been mapping data between a Numara TrackIt 8 system and a ManageEngine ServiceDesk system. While trying to find out how...
View ArticleReverse Engineering using SQL Profiler
There may come a time in your career when you are tasked with finding out how a 3rd party application functions because some 3rd parties have completely closed source applications, or better yet, APIs...
View ArticleSource Controlling Indexes
With my recent move to into a software development team I find myself paying more attention to software engineering techniques and tactics, one of them being source control. In the past I’ve had a...
View ArticleWorkload Simulation With SQL Data Generator
Introduction In college one of my mentors was a jedi master of simulations and testing. The guy could write a simulation for just about anything you can think of, and with anything you can think of....
View ArticleCache Money
I was reading the Voice of the DBA and it referred to a post by Brent Ozar about caching at the database level. After discussing it with my homey, he thought it sounded a lot like memoization (I like...
View Article