Viewing 7 posts - 1 through 7 (of 7 total)
never mind..fellas
here u go
select
t.num ,
t.strike ,
rt.col2
from #tmp t
cross apply (select
case when (t.strike - strike)...
May 8, 2010 at 10:49 am
Paul White (2/20/2010)
UPDATE RowsToUpdate
SET notional = ISNULL(new_value, 50)
FROM (
SELECT T1.value_date_minus_1,
...
February 20, 2010 at 9:23 am
Guys,
thanks for your awesome replies and suggestions but i think i myself got deviated from the original requirement. Below is what I actually need.
if OBJECT_ID('tempdb..#tmp_Dates1') is not null
drop table #tmp_Dates1
create...
February 20, 2010 at 5:58 am
Guys,
thanks for your awesome replies and suggestions but i think i myself got deviated from the original requirement. Below is what I actually need.
if OBJECT_ID('tempdb..#tmp_Dates1') is not null
drop table #tmp_Dates1
create...
February 20, 2010 at 5:55 am
Ohh buddy - that worked like a charm. I am such a fool not to think from basics.
February 19, 2010 at 8:53 pm
hi there, below are the steps as per your instructions. Please see if you can help me out
if OBJECT_ID('tempdb..#tmp_Dates') is not null
drop table #tmp_Dates
-- TABLE CREATION
create table #tmp_Dates
(
value_date_intermediate datetime
,value_date_minus_1 datetime
)
--...
February 19, 2010 at 8:45 pm
Viewing 7 posts - 1 through 7 (of 7 total)