Viewing 15 posts - 91 through 105 (of 126 total)
i undertand exactly what are you saying but just need to ask you
which table i have to do the inner join ? because i cannot make inner join on GE_ReservesFile as...
December 5, 2006 at 7:44 pm
i cannot use or in otherwords dont have access to that table GE_ReserveFile any more so can you show me how to deal with the situation.
December 5, 2006 at 6:45 pm
i am sorry about that it was my fault it works but how will i insert record in the temp table because i want to sum the column "waiverofpremium"
Thanks a...
December 5, 2006 at 2:20 pm
SELECT
a.PolicyNumber,
a.TableCode,
a.SeriesCode,
a.LossDate,
a.EffectiveDate,
b.WaiverofPremium
FROM tableA a
INNER JOIN tableB b
ON a.PolicyNumber = b.PolicyNumber AND a.TableCode = b.TableCode AND a.SeriesCode = b.SeriesCode
WHERE DATEADD(yyyy, 10, EffectiveDate) <...
December 5, 2006 at 2:08 pm
Can you explain little with the syntax because i did used INNER JOIN for that it, did not work.
December 5, 2006 at 2:01 pm
Can you explain please i dont understand it
Thanks
December 1, 2006 at 9:32 am
My question is how can i correct the problem with my date issue, when i run the proc I want it to get the date from the column "Date_From" in...
November 28, 2006 at 1:51 pm
i guess that is not the solution because see when i do the insert in the table Transactioncountss it is getting some weird dates and inserting in the TransactionCountss instead...
November 28, 2006 at 1:33 pm
it will show 3 in CalcAction column of transactioncount table.Dont you think i have to establish some sort of relationship between two tables such as primary key and foreign key...
November 20, 2006 at 5:36 pm
Value in TransactionCounts- what iam looking for
ID Month_of_file CalcAction TableValue CalculatedValue
1 12/1/2004 1 66476
2 12/1/2004 2 30356
3 12/1/2004 3 A 66293
November 20, 2006 at 4:57 pm
what i want to do is replace the values of CalcAction Column in TransactionCounts table with the values of CalcAction Column
in the second table which is TransactionCounts_Sort
November 20, 2006 at 3:00 pm
Values in the table TransactionCounts_Sort-sampledata
ID CalcAction SortOrder
1 Total Record Count 1
2 Record Count of Unique Policies 2
3 Record Count by Status 3
Value in TransactionCounts-sample data
ID Month_of_file CalcAction TableValue CalculatedValue
1 12/1/2004 ...
November 20, 2006 at 2:59 pm
What do you mean i dont understand i guess what are you saying.Can you be a little more clear please.
THANKS
November 20, 2006 at 2:23 pm
Fine thanks , but looking at my code can you tell me how should i take care about this logic below in my stored procedure
-------------------------------------------------------------------------------------
SELECT CalcAction FROM ClaimCounts_Test
WHERE CalcAction='Total Record...
November 15, 2006 at 11:44 am
Viewing 15 posts - 91 through 105 (of 126 total)