Viewing 13 posts - 1 through 13 (of 13 total)
Personally I hate NULL and all the hassles it causes.
I was bummed when I saw it was a joke LOL
April 1, 2010 at 9:16 am
I definitely come up with the best solution by thinking about it when stumped. If I try to just play around with code to find a solution, it will usually...
August 21, 2008 at 10:33 am
Ah ha! It was that cookie setting.
Thanks!
August 20, 2008 at 2:01 pm
It remembered this morning's login just now, but if I close the browser then the session is lost.
I deleted cookies on the trouble sites and that didn't fix the issue....
August 20, 2008 at 12:23 pm
I worked for 10 years at GM's insurance company that administered their extended service contracts as well as handled many warranty issues. I can say that most larger companies who...
July 21, 2008 at 9:45 am
Nevermind, found my answer!
I needed to use:
COALESCE(SELECT SUM(r.received_count) FROM product_vendor_receiving AS r WHERE r.order_detail_id = d.id), 0)
Which I apparently hadn't tried yet...
April 22, 2008 at 10:46 am
Yeah we had a trial version of sql server 2005 that we had to call microsoft to get it extended until we got our new server and a real license...
March 26, 2008 at 5:12 pm
That helped get me on the right track, got it all running fine now thanks! 🙂
January 15, 2008 at 2:01 pm
By 'bad data' I mean data that is not in the correct format. For instance, in the above line item import, I ran across 3 rows which had '.5' for...
December 10, 2007 at 6:01 pm
Thanks! That definitly sheds some light on how to avoid a cursor.
I tried to do an INNER JOIN in my cursor but unfortunalty some of the input data rows have...
December 10, 2007 at 5:32 pm
Sounds like that one row might have a different number of tags than the other?
Watch out for Outlook 2007 as it now uses the Word html engine instead...
December 10, 2007 at 5:05 pm
OK, here is the cursor I am using for the above example. This is the simplest cursor I have used so far so it is probably the easiest to work...
December 10, 2007 at 4:29 pm
For all of the cursors I have written for this data conversion, I need to do one or more seperate selects or inserts besides the row I'm working with. Sometimes...
December 10, 2007 at 3:13 pm
Viewing 13 posts - 1 through 13 (of 13 total)