Viewing 15 posts - 526 through 540 (of 1,132 total)
"Is the SAN replication configured as an incremental snapshot or a complete copy?"
Neither - SAN Replication is configured as synchronous meaning that all writes on the production SAN partition are...
February 21, 2008 at 5:30 am
"Could anybody please provide any documnetation or step by step guide to bring DR database online after SRDF split.Its a cluster enviroment."
I have done about 50 SQL Server DR tests...
February 20, 2008 at 11:27 am
The SQL Agent error log location is in the registry and for a default instance, has a key of HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent\ErrorLogFile
This is near the key for the SQL Server parameters.
Enterprise Manager...
February 20, 2008 at 11:12 am
The terms FILLFACTOR and PAD_INDEX are very confusing due to the names and some default behavior. From BOL:
FILLFACTOR specifies a percentage that indicates how full the Database Engine should...
February 18, 2008 at 3:42 am
Easiest is to have a uniqueness constraint and a check constraint on the same column
create table OOAK -- (One Of A Kind)
(OOAK_id tinyint not null
, constraint OOAK_P unique...
February 18, 2008 at 3:00 am
select sum(score) as TotalScore
, sum( case when score > 200 then score else null end )
as GT200TotalScore
from ....
February 15, 2008 at 3:59 pm
Just to be clear, neither of the two different major consulting firms that I have worked for were IBM.
February 15, 2008 at 2:26 pm
During the periods of 1997-1999 and 2001 thru 2004, I was an employee of two different major consulting firms where, when assigned to projects, 60 to 70 hours per week...
February 15, 2008 at 9:23 am
In case you did not know about overtime and IBM, from http://www.theinquirer.net
January 24, 2006 -- Current and former employees of International Business Machine Corporation (IBM) today filed a nationwide class...
February 15, 2008 at 9:08 am
Please check for the following:
1. The DTC service is running on both servers.
2. SET XACT_ABORT ON is run.
3. If any of the servers are on a cluster, the DTC on...
February 3, 2008 at 7:23 am
Here is solution:
declare @PeriodStartDtdatetime
,@PeriodEndDtdatetime
,@MedicalServiceint
,@TherapyService int
,@OtherServiceDays int
set@PeriodStartDt= '2007-10-01'
set@PeriodEndDt= @PeriodStartDt + 180
set@MedicalService= 1
set@TherapyService = 2
set@OtherServiceDays = 180
/*
selectcount(*)as AnyServiceCnt
,SUM(CASE when MedicalWOTherapy.MIS is not null then 1 else 0 end ) as Medical_WO_Therapy_Cnt
,SUM(CASE when...
January 29, 2008 at 10:07 am
Yes, as single SQL statement can be written but I would be very concerned about resource utilization (e.g. the SQL would run like a pig).
Please be sure to read Jeff...
January 28, 2008 at 6:35 pm
Please review the article "Please provide DDL and sample data" at
http://www.aspfaq.com/etiquette.asp?id=5006
As a guess:
Create table ItemPrices
(ItemName varchar(255) not null
,EffectiveDate datetime not null
,PriceAmt numeric(8,2) not null
,constraint ItemPrices_PK primary key...
January 27, 2008 at 4:42 am
"If this is the case, will I not be able to use more than 3 GB on server 1 though I have 8GB RAM as it is SQL server 2000...
January 18, 2008 at 2:03 pm
Constraints, like indexes, exists within a table, so any DDL must reference the table. I also avoid using builtin metadata funtions like object_id and OBJECTPROPERTY, which do not support...
January 18, 2008 at 1:50 pm
Viewing 15 posts - 526 through 540 (of 1,132 total)