Viewing 15 posts - 16 through 30 (of 30 total)
Hi,
If i use ur Query I am getting the result like 666768. But I need to pass the value as 66,67,68
July 18, 2012 at 5:25 am
That will return 118 rows here is the record for that
IDTYPEGROUPIDSETUPIDLEVELVALUEIDMETRICSIDMETRICSNAMEDIMENSIONIDDIMENSIONVALUEIDMETRICSVALUEGOALSETUPUOMUOMPERFORMANCETOOLTIPTARGETPDIDPHASEIDSORTORDER
11116313145143% Core Effort1143NULL1004NULLNULL3100NULLNULL1
21216313145144Application Defect Leakage %114415.751004NULLNULL2100NULLNULL1
31216313145145Application Defect Leakage by Severity S1%11454.111004NULLNULL2100NULLNULL1
41216313145145System Test Execution429630701004NULLNULL2100NULL2963071
51216313145145System Integration Test Execution429630801004NULLNULL2100NULL2963081
61216313145145Regression Test Suite Execution429630901004NULLNULL2100NULL2963091
71216313145146Application Defect...
July 6, 2012 at 2:47 am
Currently my updte statement is updating only for the first metric ID in the lean table
July 6, 2012 at 12:57 am
THIS is the lean TEMP table
DECLARE @LEANTEMP TABLE
(
ID INT IDENTITY(1,1),
TYPE INT,
GROUPID BIGINT, ...
July 6, 2012 at 12:55 am
Hi I know what is happening, but i need to update fields in MEAS table based on Metric ID, the update statement which i have provided is not updating correctly,...
July 6, 2012 at 12:29 am
Hope this will help you
SElect top 1 ClientUserName from (SELECT top 2 row_number() over(order by counts DESC) as ID
FROM #ProxyLog_count_2
...
June 27, 2012 at 11:25 pm
I dont think i can do this stuff in a single statement, because i need to find which colouring ID each metrics belongs to based on that only i can...
June 27, 2012 at 4:44 am
Yes pass some value for @Date1, it will solve your issue
June 27, 2012 at 3:51 am
Hi Dave here is my code for performance
ALTER PROCEDURE [SCHEMAMANLOG].[PROC_TESTING_EFFORTVARIANCEPERFORMANCE]
(
@LEVELVALUEID BIGINT,
@METRICSID INT ,
@METRICSVALUE FLOAT,
@GOAL FLOAT,
@TARGET FLOAT,
@FROMDATE DATE,
@TODATE DATE,
@ProcessDisciplineID INT,
@PHASEID BIGINT
)
AS
BEGIN
DECLARE @COLORIND INT...
June 27, 2012 at 12:22 am
Thanks Ravi i have changed the code, I am using while loop now...Hope it will not affect my performance in future 🙂
June 27, 2012 at 12:00 am
You need to do like this
INSERT INTO [dbo].[TableName] ( Column1 , Column2 )
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\TableName.xls',
'SELECT * FROM [Sheet1$]')
June 26, 2012 at 11:48 pm
Here I am taking records from @LEANTEMP table and passing the values to SP to calculate performance for each Metric ID.
June 26, 2012 at 11:04 pm
Hi Sambireddy,
Anyhow Employee table will be having the EMP ID which is in EMployee _Details table right. If you need the data from Employee_details only means you...
June 26, 2012 at 5:36 am
select * from Employee_Details ED inner join EmployeeTable ET
on ET.EmpID=ED.EmpID
June 26, 2012 at 5:10 am
Hi Thanks for all of your reply....
Here is my code
--- Cursor To EXECUTE PERFORMANCE SP FOR EACH METRICID
DECLARE @METID INT
DECLARE @METRICVALUE FLOAT
DECLARE @GOAL FLOAT
DECLARE @TARGET FLOAT
DECLARE @PDID BIGINT
DECLARE...
June 26, 2012 at 5:01 am
Viewing 15 posts - 16 through 30 (of 30 total)