Viewing 15 posts - 1,936 through 1,950 (of 3,616 total)
Thinking about Henry Ford's quote reminded me of the last model Ford Escort. Ford asked its customers what they wanted and out came something that showed the world that...
March 18, 2010 at 2:16 pm
Thanks,
The IBM list gave a good jump start. It's just a shame that there isn't an inbuilt function that returns a table of these words.
It would be great to...
March 18, 2010 at 5:52 am
If you denormalise the database where data it maintained you add to the cost of data maintenance tasks and you run the increased risk of being hit by bugs due...
March 15, 2010 at 2:54 am
I've done quite a bit of testing of NEWID() and randomness and it is a very effective random number generator.
As the GUID comprises of blocks of hexadecimal these blocks can...
March 1, 2010 at 2:04 am
As with all things DBA related it depends.
If you have a very large product set then adding in an extra column for the Top 'n' products wastes storage though in...
February 15, 2010 at 11:32 am
Jeff, there is a short and illuminating article on http://www.infoq.com http://www.infoq.com/vendorcontent/show.action?vcr=847 regarding technical debt in agile projects that echoes what you say.
Basically a project team is given a fixed immutable...
February 11, 2010 at 1:40 am
Perhaps someone could confirm this for me but on the subject of right-sizing datatypes I gather that shrinking fixed length datatypes after creation makes a metadata change but not a...
February 10, 2010 at 3:22 pm
Given SQL 2005/2008 would you recommend the same solution, use a filtered index, or something else?
I think I would still stick with the queue table for the reasons mentioned earlier.
My...
February 10, 2010 at 12:30 pm
I didn't use a filtered or nonclustered index on the base table for two reasons.
1. The original solution was on SQL2000.
2. The main table had incredibly heavy read activity on...
February 10, 2010 at 10:59 am
If you look throught he source of the built in system stored procs you will see quite a few cases of IF(SELECT COUNT(*)...)>0
Try sp_helptext 'sp_helptext' for an example!
February 10, 2010 at 4:52 am
When I worked for McCann-Erikson they classified people into 4 segments analogous to the part of a printed advert. It was exactly the same thing as the Introvert/Extrovert Vs...
February 7, 2010 at 4:35 pm
Has anyone noticed that the old system stored procs are not that efficient?
IF(SELECT COUNT(*) FROM ...) >0:w00t:
Cursors all over the place etc.
February 4, 2010 at 1:41 pm
If you have separate instances then you can of course use sp_configure to specify a maximum amount of memory for each instance.
You can also specify which CPUs get used by...
February 2, 2010 at 3:33 pm
Add memory to the physical box and set up virtual servers rather than separate instances.
February 1, 2010 at 5:29 am
Probably a daft question but you are running the proc in the correct database?
January 6, 2010 at 10:30 am
Viewing 15 posts - 1,936 through 1,950 (of 3,616 total)