Viewing 7 posts - 1 through 7 (of 7 total)
Hi, i also facing this problem, is there any solution for this ?
October 7, 2012 at 8:40 am
Hi, i also facing this problem, is there any solution for this ?
October 7, 2012 at 7:42 am
Perry Whittle (3/6/2012)
its going to depend how you setup the 2nd NIC on each node
how do i setup the second network to fulfill those expected result ?
is it to set...
March 7, 2012 at 2:16 am
Hi,
i just set up a 2 node failover clustering for SQL SERVER 2008 on Windows Server 2008 R2 Enterprise Edition,
previously i set up using 1 NIC on each...
March 6, 2012 at 5:52 am
finally after trying..
i answer my own question
here is the solution
DECLARE @StartNewDate DATE
DECLARE @EndDate DATE
DECLARE @StartHistoryDate DATE
DECLARE @EndHistoryDate DATE
SELECT @StartNewDate = '01-SEP-2011'
SELECT @EndDate = '05-OCT-2011'
SELECT @StartHistoryDate = '01-AUG-2011'
SELECT @EndHistoryDate = '05-SEP-2011'
SELECT
...
August 21, 2011 at 7:53 pm
Mark-101232 (6/14/2011)
oh yeah , you are right mark, it should be for contract...
June 14, 2011 at 6:05 pm
what i have done is this :
SELECT distinct
MC.MeterID,
MC.ContractID,
Common.ufnToDateDisplay(cast(Common.ufnGetMaxOfTwoValues( MC.Startdate, MC2.Startdate)as DATE)),
Common.ufnToDateDisplay(cast(Common.ufnGetMinOfTwoValues(MC.Enddate,MC2.Enddate)as DATE))
FROM
@MeterContract MC
join @MeterContract MC2
on MC.MeterID = MC2.MeterID
and MC.ContractID <> MC2.ContractID
and ( MC.Startdate between MC2.Startdate and MC2.Enddate
or MC.Enddate between...
June 13, 2011 at 11:34 pm
Viewing 7 posts - 1 through 7 (of 7 total)