Forum Replies Created

Viewing 15 posts - 19,486 through 19,500 (of 22,213 total)

  • RE: Database Engine Tuning Advisor

    I don't know. I got it from our server admin guys. They handle all the software versions, etc.

  • RE: Database Engine Tuning Advisor

    That's wild, but as you say, at least you got a result. I'd be happy with a result, even a sub-standard one. Actually, I'd be happier with a sub-standard result....

  • RE: Database Engine Tuning Advisor

    It's on Connect. If you want to confirm it or track it, go here.

  • RE: Database Engine Tuning Advisor

    Nope. No recommendation from that query either. I haven't found a query yet that the silly thing will recommend and index for.

    I'll post something on Connect now.

  • RE: Database Engine Tuning Advisor

    Oh, since I violated the rules with the first post, let me show my query:

    SELECT soh.Freight, soh.SalesOrderNumber

    FROM Sales.SalesOrderHeader AS soh

    WHERE soh.SalesOrderNumber LIKE 'SO' +...

  • RE: Database Engine Tuning Advisor

    OK. A little more information. According to BOL, the DTA won't provide recommendations unless:

    The table has been selected to tune (it is)

    The table has more than 10 pages of...

  • RE: Database Engine Tuning Advisor

    Yeah, that might be the place to go.

    I found a clean place on the wall. I'm going to do a few more bashes first.

  • RE: Database Engine Tuning Advisor

    Similar.

    I know a number of other ways to fix the queries myself. I need to see the bloody DTA do the work.

    I tracked down a bit of sample code...

  • RE: Powershell and sql server 2008

    I wouldn't say you need to replace VBS with PowerShell. Different critters really.

    I'm just getting started learning Powershell. It's installed automatically with SQL Server 2008 (just run sqlps.exe) and Windows...

  • RE: Slow SQL Calls

    I thought BETWEEN was sargeable and >= <= was not. I just did some tests. I'm wrong... again... I'm going to stop posting now. That's way too many errors.

  • RE: Indexes on Columns

    Take a look at the systems tables. sys.indexes, sys.index_columns will get you a long way there.

  • RE: Third Party Tool ??????

    In the past I used Foglight from Quest, but I wasn't crazy about it. We're using Operations Manager from Microsoft for server monitoring. It also works pretty well on the...

  • RE: Slow SQL Calls

    You might want to lookup the term "sql injection" because you're pretty vulnerable.

    First, try using BETWEEN instead of >= <= on the date fields.

    Can you post the execution plan?

  • RE: Index Blocking Issue

    I agree with the last post, it doesn't sound like an optimal approach. Transactional replication is usually only, at most, a few seconds behind the replicated database. Is this a...

  • RE: Slow SQL Calls

    And, as always, an execution plan or two.

Viewing 15 posts - 19,486 through 19,500 (of 22,213 total)