Viewing 15 posts - 3,331 through 3,345 (of 3,396 total)
Hopefully this helps someone else...
I got Itzik Ben-Gan's book Inside MS SQL Server 2008 T-SQL Querying, and basically modified one of his SQL queries to suit my problem. ...
February 25, 2012 at 12:51 pm
Answered my own question... ("Re-search. It means 'look again', don't it?") After a few minutes of surfing, I found this: http://stackoverflow.com/questions/2120544/how-to-get-cumulative-sum, which I basically tweaked for my own...
February 19, 2012 at 11:14 pm
You could always have Reporting Services do the pivot... just drop a matrix onto your report...
February 13, 2012 at 10:35 am
I'm needing to get the most recent AP_Ex.Ap_Expt_Date for each AP_Ex.Student_ID
SELECT Max(AP_Ex.Ap_Expt_Date) As LatestDate, AP_Ex.Student_ID
FROM...
GROUP BY AP_Ex.Student_ID;
February 13, 2012 at 10:33 am
Do you really mean Modals? Or do you really mean Models? From the context, it would appear you mean "Models".
February 4, 2012 at 1:02 pm
Do you mean aside from the fact that it requires the Enterprise version of SQL Server?
December 4, 2011 at 8:57 am
Usually, when an .LDB file is still around, the Access database was not closed properly. Standard way of fixing the problem is to delete the LDB file and then...
October 30, 2011 at 10:28 pm
Maybe the best way to handle this is to put your read only tables in one or more filegroups that are separate from your read/write tables. Then you can...
October 26, 2011 at 1:05 pm
use the same password on both servers or set up impersonation.
October 18, 2011 at 10:20 am
Answering this is likely not going to get me anywhere, but anyway...
I agree with everyone else... There's just no way around it: T-SQL is a LOT more flexible and powerful...
October 12, 2011 at 11:25 am
Evaluation editions are fully functional - the only limitation is that the license is only good for 180 or so days.
October 12, 2011 at 10:37 am
FWIW, I rebuilt the VM, and only installed Ofc 2007, and it worked fine.
September 19, 2011 at 4:20 pm
this is gonna sound somewhat contrarian, but oh well...
Certifications are so-so. Experience trumps certifications almost every time. I know an MVP here in town that has zero certifications,...
August 14, 2011 at 1:33 pm
Maybe I don't get it, but are you saying "I understand that I should normalize, but I don't want to."? It would be easier to delete a single child...
August 8, 2011 at 2:33 pm
Viewing 15 posts - 3,331 through 3,345 (of 3,396 total)