Viewing 15 posts - 16 through 30 (of 108 total)
Thanks to all for the replies 🙂
How long have you been following this routine? Apart fromm the fact that you are most likely fragmenting your disk (which in time will...
April 13, 2010 at 1:28 pm
a "hydraulic" lunch here and there would certainly go a long way.
hmm...beware of these "hydraulic lunches" they can lead to pneumatic afternoons :w00t:
April 12, 2010 at 8:46 pm
I've posted about this before, but it's relevant to this discussion too...
We have a mirrored database in production which is reindexed once a week - the reindexing causes the log...
April 12, 2010 at 6:17 pm
Has any one tried calculating median in SSRS 2005 where group by is used? The requirement is to calculate median for individual groups in a dataset?
Here's a method using T-SQL:
--...
March 24, 2010 at 8:23 pm
Thanks for replies to date 🙂
I already use books online (BOL) as a reference - and I also run some of the T-SQL code provided on this site for practice...
March 22, 2010 at 6:11 pm
ok - but does the code look ok?
I welcome constructive criticism 🙂
February 22, 2010 at 1:25 pm
scalable, maintainable and robust...not in the original spec!
if that was a contract i'd be looking for additional payment for variations :w00t:
This was meant as a quick coding test...a rough...
February 22, 2010 at 1:17 pm
Fair enough Jeff...this will scale up to 400,000 (on our system). Further joins would increase that number:
SELECT
CASE
WHEN (i % 3=0 AND i % 5=0) THEN 'FizzBuzz'
WHEN i %...
February 22, 2010 at 1:10 pm
how about (results in text)...
SELECT
CASE
WHEN (i % 3=0 AND i % 5=0) THEN 'FizzBuzz'
WHEN i % 5=0 THEN 'Buzz'
WHEN i % 3=0 THEN 'Fizz'
ELSE CAST(i as VARCHAR(5))
END...
February 22, 2010 at 12:57 pm
Re: custom colors for the chart.
I have just done something similar to jeff122877's approach - but to standardise things I created some custom code. In my case it was...
February 9, 2010 at 7:31 pm
...the bridge has got 6 manual adjust winders...
Those little fine tuning screws at the bridge are great - so easy to get a perfect tuning that way (assuming intonation is...
December 21, 2009 at 11:18 am
I rescheduled the backup log / shrink log job to run at a different time - and it worked ok this time, so I'll leave it set up like that...
December 21, 2009 at 11:12 am
thanks for the info Ol'SureHand - I will try adding a couple of additional log backups to the scheduled job (each in its own job step) and see if that...
December 20, 2009 at 6:41 pm
just reviving this thread rather than starting another one...
I have a similar problem - a 20GB production database (FULL recovery model) with the log file size typically around 2GB. Once...
December 20, 2009 at 3:40 pm
great to see this thread come back to life!:w00t:
for all frustrated 120W amp owners out there that can't crank up the volume at home - try a Mesa Boogie Express...
December 16, 2009 at 4:10 pm
Viewing 15 posts - 16 through 30 (of 108 total)