Viewing 15 posts - 76 through 90 (of 205 total)
So are you suggesting I run an MS Agent job to fire that DBCC proc every minute around the time of the backup and store the results into a database...
July 30, 2012 at 3:00 am
Sorry just realised this is currently an SQL 2005 DB not SQL 2008 but I am using the 2008 Management Studio to connect to it from my PC.
Also I am...
July 30, 2012 at 1:22 am
I don't know if you were just slow posting or didn't read my previous comment but that was exactly what I proposed doing e.g using a lookup table and removing...
December 23, 2011 at 3:21 am
I know about the problem with 2.50 being displayed as 6/4 and a myriad of other fractions e.g
6/4 2.50
9/6 ...
December 22, 2011 at 8:42 am
Sorry, the question was wrong.
As you can see from the code I posted I already have code to convert a fraction price 6/4 to decimal 2.50
What I need is the...
December 21, 2011 at 2:33 am
Thanks G!
I like it.
Don't worry there are lots of tables full of stats including jockey, trainer, course, draw bias and other form stats that are involved in calculating the ranking...
June 2, 2011 at 7:51 am
I totally get what you mean but its pretty hard to update say the FormRating for all runners in a race at one time as there are so many different...
March 8, 2011 at 9:05 pm
I have narrowed down the code and found the culprit which was a UDF which was being used a lot within the various ranking functions and reports.
The functions aim is...
March 3, 2011 at 9:48 am
Jeff seeing you are an RBAR expert how would you approach the following;
It's related to the same database and basically for each runner in a race I have a number...
March 2, 2011 at 7:44 am
Cheers Jeff
I now get what you mean whereas I must admit before I must have misread your previous comment.
That would be a very good solution to my problem 🙂
Thanks
March 1, 2011 at 3:12 am
Hi Jeff
I could do a quirky UPDATE solution in the following way.
I have added an extra column to the @RACES table called usable (BIT) and then just filtered by that...
February 25, 2011 at 5:16 am
Thanks for the replies I will try and check the article when I can but I am assuming from your definition of Quirky Update you mean something like
UPDATE ...
February 24, 2011 at 4:29 am
Thanks for replying but that second solution still doesn't work.
If you add a few more records into the race table e.g
insert into @races
(racedatetime)
SELECT '2011-02-20 13:50:00'
UNION ALL
SELECT '2011-02-20 13:55:00'
UNION ALL
SELECT '2011-02-20...
February 22, 2011 at 3:01 pm
Thanks for that. The KB article does explicitly mention the exact problem I was having
50000874 When the stored procedure runs outside an explicit transaction, a temporary...
July 12, 2009 at 7:04 am
Cheers for that Florian, I think that is the route to go down to prevent this from happening in future and I have modified my code to use non-named constraints...
July 11, 2009 at 5:53 pm
Viewing 15 posts - 76 through 90 (of 205 total)