Forum Replies Created

Viewing 15 posts - 61 through 75 (of 514 total)

  • RE: What kind of DBA are you?

    Mike Menser (4/9/2008)


    Grant Fritchey (4/9/2008)


    DonaldW (4/9/2008)


    Mike Menser (4/9/2008)


    DonaldW (4/9/2008)


    Grant Fritchey (4/9/2008)


    Perks? I thought it was the job definition!

    It is as far as I'm concerned. If I don't tick people...

  • RE: Storage Size

    Since I knew the answer was none of the above before I even bothered to do the calculation, I strongly considered waiting until tomorrow to answer 🙂 However, I...

  • RE: How reliable is OPENDATASOURCE (SQL2000)

    Linked server, or just plain publish/subscribe replication

  • RE: Truncate can be rollbacked or not?

    I believe the source of this is that in Oracle (and possibly other DB's) a truncate CANNOT be rolled back. But in SQL Server, it CAN!

    The reason...

  • RE: What kind of DBA are you?

    Steve, does this look familiar?

    http://www.pdp11.co.uk/profiles/item-enlarge.ehtml?i=93

  • RE: What kind of DBA are you?

    Steve Jones - Editor (4/7/2008)


    Hah, I worked with a disk drive you could see spinning.

    Ok, it was old when I saw it, but the nuclear plant had this old computer...

  • RE: What kind of DBA are you?

    Barbara A. Wagner (4/7/2008)


    I usually say 'sequel'. I can't say I always say 'sequel', but since I read this question I can't pinpoint a time when I've said S-Q-L.

    Barbara

    Same...

  • RE: GETDATE

    select getdate()-getutcdate() will not impact the number of records. It is just going to return a time, or as I suspect you expect it to return an offset to...

  • RE: Convert Oracle Select to SQL CE Select.

    FYI, that is actually the correct way to write it in Oracle also

  • RE: Convert Oracle Select to SQL CE Select.

    SELECT Person.* FROM L_RPT_INV_PERSON_INFO AS Person

    INNER JOIN L_RPT_INV_INFO AS Inv

    ON Person.RPT_INV_ID = Inv.RPT_INV_ID

    AND Person.RPT_INV_TP = Inv.RPT_INV_TP

    WHERE Inv.INFORMATION_CHANGED_FLAG='Y'

  • RE: Query

    Steve Jones - Editor (4/7/2008)


    If you see an issue, and someone else has posted it, answering a "me too, or dob isn't listed" just puts me in a bad mood.

    Sorry...

  • RE: Query

    Jignesh Mehta (4/6/2008)


    ...

    The other answer " datename(m,join_date) like '%a%' " is also not correct as it will not give the list of employees who joined in the month of FEB

    ...

    datename...

  • RE: Deadlock Solution:SnapShot Isolation Level

    Alkesh Khedle (3/27/2008)


    Hi we are constantly getting deadlocks on some part of database.Can we apply Snapshot Isolation level at table level or we need to defined it on database level.Is...

  • RE: Deadlock Solution:SnapShot Isolation Level

    Also, I have seen a performance hit of roughtly 5% OVER the normal hit that being in a transaction will give you.

  • RE: Deadlock Solution:SnapShot Isolation Level

    I haven't found any situation where it will break code, but it won't do anything if you aren't in transactions.

    ALTER DATABASE SomeDB

    SET READ_COMMITTED_SNAPSHOT ON;

    ALTER DATABASE SomeDB

    ...

Viewing 15 posts - 61 through 75 (of 514 total)