Viewing 15 posts - 58,186 through 58,200 (of 59,066 total)
This is just an opinion... hard for me to write this one without sounding a bit Draconian... sorry...
Since views use the indexes from underlying tables, I've never understood the need...
May 28, 2006 at 3:04 pm
Why not go for the simple method... schedule it with Windows Task Scheduler if you can't get it to run through the command shell.
May 27, 2006 at 11:38 pm
Since you don't use XACT_Abort and you don't have any error checking code to do a conditional rollback, you don't really need the transaction.
May 27, 2006 at 11:35 pm
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
Viewing 15 posts - 58,186 through 58,200 (of 59,066 total)