Viewing 15 posts - 49,081 through 49,095 (of 49,566 total)
What do you mean by 'didn't work'? Threw an error? Gave unexpected results?
One thing I noticed in the 'section 1' was the line SET ROWCOUNT 1 which, from what I...
July 12, 2006 at 7:17 am
Order of operations within a trigger is the same as within any other sql code, from top to bottom according to normal control flow commands (while, if)
July 12, 2006 at 6:50 am
I think you left out the group by
SELECT c.vcPostcode, COUNT(r.SFID), COUNT(t.iCALL_RESULT_ID)
FROM Customer c LEFT JOIN Contact_Result r
ON c.SFID = r.SFID
LEFT JOIN Contact_type t
ON r.iCALL_RESULT_ID = t.iCALL_RESULT_ID
AND...
July 12, 2006 at 4:07 am
You can set which trigger is the first to fire and which is the last. If that isn't done, then the triggers will fire in no defined order.
Looking at...
July 12, 2006 at 12:57 am
Can you post your table structure, some sample data and expected results please? That would make it much easier for us to help you.
July 12, 2006 at 12:29 am
Thanks, those functions will be very useful. I know IsNumeric was shaky, I didn't realise it was this shaky.
Another interesting discovery from this - CAST('8,92' as FLOAT) throws an error,...
July 10, 2006 at 11:53 pm
The code posted is the query I found. I've tried converting to numeric, same result.
Thanks Sergiy, but that was the first thing I tried, along with case, and no joy.
Thanks...
July 9, 2006 at 11:43 pm
Getting it too. Personally I find it quite annoying as the popups aren't always that relevant and they popup 'by accident' interupting my reading.
Some new advertising perhaps?
July 5, 2006 at 5:35 am
We had a very similar problem a while back, and after intensive debugging and assistance from MS support, tracked it down to occational IO problems with the SAN and a...
June 28, 2006 at 1:55 am
The indexes will speed up the update because they greatly increase the speed of finding the records to update. The time taken to update the indexes is minimal.
How many...
June 22, 2006 at 8:09 am
You can't do things like "WHERE txtField LIKE '%Smith%'" with a text column, for instance.
That's not true, you can use LIKE and IS NULL on a text column, you can't use any...
June 22, 2006 at 2:04 am
It's the winter solstice and shortest day down here. Sunrise was about half past 6 this morning and sunset will be around quarter to six this evening. (about, I'm not...
June 21, 2006 at 3:24 am
You don't need the brackets around the select. Also the Order By is not necessary in an insert. The concept of order of rows in a table is meaningless. Order the...
June 19, 2006 at 7:57 am
Isaac Asimov's robot stories, especially The Positronic Man (with Robert Silverberg). The book I, Robot is a collection of short stories
Also Arthur C Clark's Rama series and Songs...
June 19, 2006 at 7:55 am
Do you have an identity column, a time stamp column or a column that shows date entered (default getdate())? If not, there's no way to get the latest 3 rows....
June 19, 2006 at 6:27 am
Viewing 15 posts - 49,081 through 49,095 (of 49,566 total)