Viewing 15 posts - 121 through 135 (of 233 total)
Thank You..it worked...
October 9, 2013 at 11:55 pm
I want to show the above column in a SSRS table, as an expression(as I have to join two columns from different tables.).
October 7, 2013 at 12:16 am
Thanks everybody.
I fixed the issue, this way using SSRS report expression
Format(CDate(Fields!DateOfReportManagement.Value), "dd-MMM-yyyy")
October 1, 2013 at 4:28 am
Thanks for the reply. I fixed it. The problem was with the study code used in the other report parameter query for audit code.
September 30, 2013 at 4:15 am
Still I cannot fix the bug. Please explain more on this, how to fix it.
September 30, 2013 at 12:33 am
Hi Luis,
I have a doubt.
How to post the SQL part and the result set as in a SSMS environment, as you have posted in your post? Please help me as...
September 20, 2013 at 3:12 am
Thanks Luis Cazares, for your prompt reply. That helped me lot.
September 17, 2013 at 3:39 am
Can anybody suggest a alternate query without using PIVOT in the existing query? Urgent help is appreciated.
September 16, 2013 at 8:23 am
Hi
I somehow managed to get it here's the code,
SELECT S.studyCode AS studyCode,
A.activityCode AS activityCode,
ISNULL(TCBOV.cboValueName, '') AS PhaseType
FROM Activities A WITH(NOLOCK)
INNER JOIN TypesOfActivities TOA ON A.typeOfActivityIncId = TOA.typeOfActivityIncId AND A.typeOfActivitySqlId...
September 6, 2013 at 5:28 am
Lend me a helping hand rather than preaching.....
September 3, 2013 at 4:34 am
I want a query like this. Please help..Urgent...
CREATE Table #Tab (studyCode, StudyDirector, activityCode, PhaseType, ActivityOwner,TQSDComment,TQPIComment)
INSERT #Tab (studyCode, StudyDirector, activityCode, PhaseType, ActivityOwner,TQSDComment,TQPIComment)
SELECT S.studyCode,
SOP.operatorName AS StudyDirector,
A.activityCode,0,0,0,0
FROM Activities A WITH(NOLOCK)
INNER JOIN TypesOfActivities...
September 3, 2013 at 3:41 am
Please help me to modify the query so that temp table can be used for updating the various columns like
PhaseType, TQSDComment, TQPIComment, thus avoiding the left join using the same...
September 3, 2013 at 3:16 am
How can I modify the query such that LEFT JOIN on activities, typeofactivities can be removed, so that query performance is good? This is my query:
SELECT S.studyCode,
SOP.operatorName AS StudyDirector,
A.activityCode,
CASE...
September 3, 2013 at 12:38 am
Thanks Gail. But Chris hasn’t written the code for the splitter function there. I need that code.
August 30, 2013 at 3:39 am
Hi
I achieved it through this way. The code below is working.
If any flaws are there in my approach, replies are welcome.
ALTER PROCEDURE [dbo].[eusp_e5_eSM_AS01_MaterialItemContainerlabelReport]
@containerCodes varchar(MAX)
AS
SELECT
MC.MaterialItemContainerCode,
MC.ReceptionDate,
C.clientName ,
MI.materialItemName
FROM
MaterialsItemsContainers MC
INNER JOIN MaterialsItems MI...
August 30, 2013 at 3:04 am
Viewing 15 posts - 121 through 135 (of 233 total)