Viewing 15 posts - 58,171 through 58,185 (of 59,048 total)
Query Analyzer
Enterprise Manager
DOS (Cmd Prompt) w/ OSQL & BCP
T-SQL Help
This forum
May 27, 2006 at 11:32 pm
Concur and now I get it... you were warning everyone of the same thing I was thinking... the requirement was for 4 digits left-padded with zeros and I'm thinking that's...
May 26, 2006 at 9:27 pm
I don't think he intends to store that in his database, Joe. 3rd party vendors frequently as for data in such a form. And, no, there's not always a front...
May 26, 2006 at 9:13 pm
| Requirement is to show missing months as well |
Dang... missed that one, David... nice catch.
May 26, 2006 at 8:58 pm
Yep... you shouldn't put 3 pounds of meat in a 2 pound wrapper, for sure. ![]()
May 26, 2006 at 8:53 pm
I forgot about that bloody chart. Good find, Mike and thanks for the feedback.
May 26, 2006 at 8:43 pm
Sometimes, there is no presentation layer...
May 26, 2006 at 12:54 am
Aw, what the heck... do it all in SQL... pick your poison...
SELECT STUFF(RIGHT(CONVERT(CHAR(11),MonthDate,113),8),4,3,'-') AS [Month],
COUNT(*) AS [Number of Requests Completed]
FROM #MonthGroup
GROUP BY STUFF(RIGHT(CONVERT(CHAR(11),MonthDate,113),8),4,3,'-')
May 26, 2006 at 12:27 am
Shoot... only 4 gig? We set our temp db to 12 gig... ON PURPOSE! Got resources? Use 'em. ![]()
May 25, 2006 at 11:53 pm
2nd post in as many days for this same thing... you guys got a little homework from the same professor?
Try this... most of it is test setup code... AND, it's...
May 25, 2006 at 11:50 pm
Very clever.
Slight mod for you...Take out the initial variable load and you won't get the leading (or trailing) commas... change the two variable lengths also gets rid of the...
May 25, 2006 at 11:24 pm
Sorry... wasn't talking about the concept of BI... I was talking about the expensive products people buy to do BI.... we made our own because nobody seemed to be doing...
May 25, 2006 at 10:16 pm
Viewing 15 posts - 58,171 through 58,185 (of 59,048 total)