Viewing 15 posts - 31 through 45 (of 60 total)
GilaMonster (10/29/2014)
M Joomun (10/29/2014)
Ed Wagner (10/29/2014)
October 30, 2014 at 3:22 am
Ed Wagner (10/29/2014)
October 29, 2014 at 10:18 am
Thank you both for your replies. I need to get back to the users as you've raised some interesting questions about data recovery.
October 29, 2014 at 8:36 am
Luis Cazares (8/21/2014)
SELECT YEAR(DateFormCompleted) AS YearRecruited,
Hospital,
COUNT(CASE WHEN month(DateFormCompleted)...
August 22, 2014 at 2:16 am
Hello both,
Thanks for your replies.
As to the table schema, tblPerson - tblManagementOfBleeding is a 1 ~ 1. I've attached screenshots which give more detail. Do you need anything else?
August 18, 2014 at 6:45 am
Yes, that's it. I shouldn't have included Subject Number in my original SQL - apologies.
Thanks both of you for your help.
June 9, 2014 at 8:30 am
I've attached an excel spreadsheet of what I' like. I want a 'Total' column at the end which would add all the medication use for that particular hospital.
June 9, 2014 at 8:04 am
Thank you Luis,
I've tried your approach, but this is not quite what I'm looking for.
June 9, 2014 at 7:34 am
Mark Eckeard (11/26/2013)
select (T1.HB-T2.HB) as CalcValue
from SampleResults T1
inner join SampleResults T2
on T1.SubjectNumber = T2.SubjectNumber
where T1.SampleType = 1
and T2.SampleType...
November 26, 2013 at 5:57 am
Sean Lange (8/5/2013)
M Joomun (8/5/2013)
Sean Lange (8/5/2013)
M Joomun (8/5/2013)
Yes, thanks Sean. Changing the dataype has worked.Glad that worked for you. More importantly, do you understand why that worked?
Because it's looking...
August 5, 2013 at 8:49 am
Sean Lange (8/5/2013)
M Joomun (8/5/2013)
Yes, thanks Sean. Changing the dataype has worked.Glad that worked for you. More importantly, do you understand why that worked?
Because it's looking for a fixed length...
August 5, 2013 at 8:16 am
Yes, thanks Sean. Changing the dataype has worked.
August 5, 2013 at 8:06 am
Sean Lange (8/5/2013)
Hard to know for sure but I suspect the problem is that you have a fixed length datatype char(9). That means your query is very likely to not...
August 5, 2013 at 8:03 am
That's just the problem. The stored procedure only returns a result if I enter a complete SubjectNumber, i.e. 'UK010001'. If I enter 'UK01', it should return all records that start...
August 5, 2013 at 8:00 am
To answer my own question, I needed to configure the Windows Firewall to allow access via port 1433. The solution can be found here:
December 12, 2012 at 7:50 am
Viewing 15 posts - 31 through 45 (of 60 total)