Forum Replies Created

Viewing 15 posts - 526 through 540 (of 1,132 total)

  • RE: SAN Replication as DR strategy(SRDF)

    "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...

  • RE: SAN Replication as DR strategy(SRDF)

    "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...

  • RE: Need to move the SQL Server Agent error log to a new drive

    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...

  • RE: Fill Factor clarification

    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...

  • RE: Only allow a table to have exactly one row

    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...

  • RE: SQL Query Help

    select sum(score) as TotalScore

    , sum( case when score > 200 then score else null end )

    as GT200TotalScore

    from ....

  • RE: How many hours are you expected to work?

    Just to be clear, neither of the two different major consulting firms that I have worked for were IBM.

  • RE: How many hours are you expected to work?

    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...

  • RE: How many hours are you expected to work?

    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...

  • RE: MSDTC problem

    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...

  • RE: A Set-Based solution instead of multiple passes?

    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...

  • RE: Set-Based Solution Possible?

    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...

  • RE: How to select multiple latest records with different latest dates

    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...

  • RE: SQL server 2000 memory management

    "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...

  • RE: Drop constraint if exists

    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...

Viewing 15 posts - 526 through 540 (of 1,132 total)