Forum Replies Created

Viewing 15 posts - 17,056 through 17,070 (of 22,210 total)

  • RE: Are the posted questions getting worse?

    Pretty sure that's from an encrypted database Roy. I posted on it.

  • RE: Creating Subscriber getting error

    Sounds like the database was encrypted. It wants the location of the key files and you'll need the passwords that unlock them.

  • RE: SP Code problem

    All those functions on the columns in the JOINS are going to kill performance. They should have in 2000 as well. Can you post the execution plan?

  • RE: 70% space in database is used by Indexes

    Two options, identify indexes that are not used or that are too big and eliminate them, as per the previous post. Another option is to upgrade to 2008 and use...

  • RE: Northwind or AdventureWorks

    There is also a lite version of AdventureWorks that includes simpler structures and less data, so that's another alternative (not better, just different) to Northwind. There's also an AdventureWorksDW that...

  • RE: Are the posted questions getting worse?

    GilaMonster (6/30/2009)


    Ok, those worked properly.

    This is seriously weird

    It's a secret admirer.

  • RE: Questions about index choice in Execution Plan

    mazzz (6/30/2009)


    Thanks Grant.

    I remember reading about the cost figures being estimates, even in the *actual* execution plan - what would one look at instead, to figure out which bit of...

  • RE: comparisons vs exchanges

    smsam1 (6/29/2009)


    actually what i meant is this, you go through set of values to find a particular value inside that set is comparison,

    That would be a WHERE clause within a...

  • RE: Good SQL Server article

    Yes, it was taken down pending an investigation of violation of the DMCA. Here's more detail [/url]for those that are interested.

  • RE: SQL Server errors on Access queries

    Passthrough or not, when you send a query up to SQL Server, it gets converted into TSQL syntax because that's the only syntax that SQL Server understands. Although I thought...

  • RE: Windows\sql Monitoring tools

    The question is, how much money do you want to spend. The two tools that I use to do this are System Center Operations Manager from Microsoft and SQL Diagnostic...

  • RE: Questions about index choice in Execution Plan

    It's using the index on SiteMap2 that has both columns because that makes it a covering index.

    Don't use the cost estimates as a measure of query performance. They really...

  • RE: dba activities

    charipg (6/29/2009)


    As a DBA,

    1.How to CHECK JOB FAILURES?

    SQL Agent in Books Online

    2.How to CHECK DISKSPACE?

    Performance Monitor counters

    3.HOW TO CHECK THE FILEGORWTH ?

    Performance Monitor Counters

    4.HOW TO TRUNCATE TRANSACTIONAL...

  • RE: TempDB too large?

    It is very possible to over-use temp tables and table variables. A lot of developers will load data into a temp table and then go through various joins to other...

  • RE: sql 2008 stored procedure slow compile (>4mins!)

    Yeah, that's a huge query and it's going to take a long time to compile. What's more, the size of it, the number of tables it hits, it's going to...

Viewing 15 posts - 17,056 through 17,070 (of 22,210 total)