Forum Replies Created

Viewing 15 posts - 21,346 through 21,360 (of 22,195 total)

  • RE: When You're Out of the Office

    It's brain candy, but tasty, John Birmingham's Final Impact. It's the third book in a trilogy (I truly hate that phrase, but they must be some kind of marketing thing,...

  • RE: XQuery vs. OPENXML

    Excellent. Thanks. I'll work it in (if I still do it).

  • RE: XQuery vs. OPENXML

    I finally got around to testing some more. I created three copies of an XML structure with almost identical data (I changed some of the key values between the three...

  • RE: Performance Problem when using Caching

    I'm not terribly up on the service broker, but a query is a query. If you've got the same query executing on both databases and everything else is equal, you'll...

  • RE: Does size really matter?

    Size is absolutely a major factor in determining experience. In addition to what Steve mentioned about backups, how you seperate out file storage, indexes, DBCC checks, data loads, reporting, statistics,...

  • RE: Performance Problem when using Caching

    The plan is showing missing statistics on columns. Are you sure auto-update & auto-create statistics are set to on in the bad database?

    To get two different plans, something is not...

  • RE: Help! I have an interview for a DBA job tomorrow !

    Best of luck.

    Just remember, you don't have to be the best DBA in the world, just the best DBA in the room. If you know stuff and no one else...

  • RE: varience in performance

    You should also check silly things like the minimum or maximum memory configurations to be sure that something isn't different there. Also check the parallelism threshold and number of cpu's...

  • RE: Performance Problem when using Caching

    How often do you update the statistics on these two databases. I'll be they're out of sync. Also, do you do a regular re-index or index defrag? I'll bet there...

  • RE: Machine Name Change

    That drops linked servers on a local machine. That's not going to help with Express is it?

  • RE: Machine Name Change

    You're talking to the wrong guy. I'm posting this for our tech support guys. Luckily, I don't have to muck about in Express (yet). I'll try it out & get...

  • RE: OPENXML

    It's just up one more level

    SELECT *

    FROM OPENXML (@idoc, '/ROOT/Customer/Order/OrderDetail',2)

    WITH (OrderID int '../@OrderID',

    CustomerID varchar(10) '../@CustomerID',

    OrderDate datetime '../@OrderDate',

    ProdID int '@ProductID',

    Qty int '@Quantity',

    ContactName nvarchar(50) '../../@ContactName')

  • RE: Different date format in different tables.

    [beating head against desk] must read complete post, must read complete post...

    Anyway, Jeff's 100% accurate. I didn't see that "must be stored" statement. You can't, don't, won't, shouldn't store the...

  • RE: Performance Tuning and Database Tuning Advisor SQL 2005

    I agree with Colin, Sven and the GURU on this. Tuning is not simply a matter of running the DTA and taking its advice as gospel. Unfortunately, if you get...

  • RE: Different date format in different tables.

    SQL Server can take the last two formats you supplied and automagically convert them into date time, no issues. The first string you supplied, the more European approach of day/month/year,...

Viewing 15 posts - 21,346 through 21,360 (of 22,195 total)