Viewing 15 posts - 16 through 30 (of 32 total)
This works but some Problems in count.. the count values for alll months is displayed in any one month....
Am not able to modify SP...
May 3, 2011 at 11:31 pm
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [pr_PatientDetails]
AS
BEGin
SELECT PatientDetails.PatientID, PatientDetails.MRN, PatientDetails.Code, PatientDetails.Chart#, PatientDetails.FullName, PatientDetails.FirstName, PatientDetails.Mi,
PatientDetails.LastName, PatientDetails.Suffix, PatientDetails.DOB, PatientDetails.Age, PatientDetails.SSN, PatientDetails.[Marital-Status],
PatientDetails.[Driver-Licence], PatientDetails.[Driver-Licence-State], PatientDetails.RefProvider, PatientDetails.Provider, PatientDetails.Employer,
PatientDetails.[Employer-Status], PatientDetails.School, PatientDetails.[ConInfo1-Address-1], PatientDetails.[ConInfo1-Address-2], PatientDetails.[ConInfo1-City],...
May 3, 2011 at 10:38 pm
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [pr_PatientDetails]
AS
BEGin
SELECT PatientDetails.PatientID, PatientDetails.MRN, PatientDetails.Code, PatientDetails.Chart#, PatientDetails.FullName, PatientDetails.FirstName, PatientDetails.Mi,
...
May 3, 2011 at 6:13 am
am not able to changa stored procedure ya i want to write code in rdlc expression only
May 3, 2011 at 5:53 am
DECLARE @StartYear INT
,@EndYear INT;
SET @StartYear = 2010
SET @EndYear = 2011
DECLARE @StartDate...
April 28, 2011 at 2:54 am
Thanks Ya... The join query works only if we are not using any filters like
grouping by some fields or getting results of particular years....
April 27, 2011 at 6:07 am
AM not Able To modify the storeed procedure.. i want to change that in designing because the same stored procedure is used for some other reporting... is it possible to...
April 26, 2011 at 5:47 am
Viewing 15 posts - 16 through 30 (of 32 total)