Viewing 15 posts - 781 through 795 (of 1,473 total)
We'll see if Lynn's new photo avatar helps him. Little green guy... lots of wrinkles... you know it's rare that you actually guess what someone looks like from talking...
January 24, 2009 at 9:29 am
He wrote an article on it actually. See the Running Totals link in my signature.
January 23, 2009 at 11:53 pm
Ahh... and that one has a link to that "Performance and Integrity" thread. Of course, that particular issue is like 4 steps past this one in terms of WTF-itude.
January 23, 2009 at 9:00 am
It's not "one of those talks" if you win =).
January 21, 2009 at 10:05 pm
Jeff Moden (1/21/2009)
Garadin (1/20/2009)
Michael Valentine Jones (1/20/2009)
We had a meeting where we objected to a project as complete waste time and money,...
January 21, 2009 at 8:09 pm
I figured you did. That's why I didn't whip out any BOL links ;).
January 21, 2009 at 8:09 am
Decimal 8,2 means you have a total of 8 digits, not 8 to the left of the decimal point. Therefore, if you break a million (7 digits, you only...
January 21, 2009 at 7:57 am
Try running this query.
SELECT I.item_no,I.std_cost,I.loc, C.HBG_std_cost
FROM HBG.dbo.IMINVLOC_SQL I
LEFT JOIN FT.dbo.Std_Cost_Compare C ON I.item_no = C.item_no AND I.loc = C.HBG_loc
A bit easier to read than yours. You're getting fewer...
January 20, 2009 at 11:03 pm
Michael Valentine Jones (1/20/2009)
We had a meeting where we objected to a project as complete waste time and money, and were trying...
January 20, 2009 at 10:49 pm
Lynn Pettis (1/20/2009)
Garadin (1/20/2009)
SELECT IDENT_CURRENT('yourtablename')+1
I thought about this, but the OP's post didn't indicate that the PK (int column) was defined as an identity column. With out that info,...
January 20, 2009 at 3:56 pm
You cannot use SELECT INTO twice within a script even if you wrap it in an IF. You need to create your temp table first, then use INSERT INTO...
January 20, 2009 at 3:42 pm
Probably should have clarified. That returns the last used identity value from your table and adds 1 to it. That may not be what you actually want. ...
January 20, 2009 at 3:39 pm
SELECT IDENT_CURRENT('yourtablename')+1
January 20, 2009 at 3:30 pm
We still use 2K in production. A lot of companies that have highly customized software packages built on earlier versions have a very hard time upgrading.
January 20, 2009 at 3:21 pm
Yeah, definitely read that one too quick. Sorry for the bad answer Jon.
January 20, 2009 at 6:58 am
Viewing 15 posts - 781 through 795 (of 1,473 total)