Viewing 7 posts - 1 through 7 (of 7 total)
wow. super coding! Thanks!
March 21, 2013 at 3:44 pm
The article is great. had a question: In Production, is it possible that the login that runs such a query might not have access to Master..syscolumns and so I should...
March 21, 2013 at 3:35 pm
I see ... I wish I were still a student. The pros are making me nervous asking my next "real-world" question on this site again! 🙂
March 20, 2013 at 1:55 pm
Thank you Sir! Not sure how to interpret the other replies and so I will leave it at that. The article was really helpful. Thank you again.
March 20, 2013 at 1:30 pm
This should work:
WITH YOYCTE ([Year], [TotalMembers])
AS
(
SELECT Years = DATENAME(year, EnrollDate),
COUNT(MemberID) as TotalMembers
FROM dbo.Enrollment
...
October 31, 2012 at 2:43 pm
Thanks Craig. I know it was an open ended question...but I had to ask. 🙂
hmmm...I read through the indexing article regarding equality and inequality predicates. I do understand that. Thanks...
October 31, 2012 at 11:37 am
Great Thanks! Clearly I am not understanding partitioning all that well then. Yes I was also thinking of putting the filegroup with the partitioned tables in a different set of...
October 30, 2012 at 6:41 pm
Viewing 7 posts - 1 through 7 (of 7 total)