Forum Replies Created

Viewing 15 posts - 13,441 through 13,455 (of 49,552 total)

  • RE: Plan Reuse - Unrelated tables in execution plan

    Why do you think it has unrelated tables in?

    The optimiser will NOT use a plan for one query for another query. It cannot. For ad-hoc queries the plan matching is...

  • RE: Indexes with JOINs

    The point of an index is to reduce the number of rows needed for the query as early as possible. To do that, the index needs to be seekable for...

  • RE: Indexes with JOINs

    Neither of those indexes are at all useful for the first query, only the one on person is useful for the second.

    Index column order matters. It matters a lot. SQL...

  • RE: so many indexes indexes

    Zeal-DBA (4/18/2013)


    But what if client ask to create at least one index on each table which are not even suggested by missing index DMV.

    Ask why he wants to create them....

  • RE: Performance Tuning

    Ananth@Sql (4/18/2013)


    Running The Query

    on millions of records is completly different from running the query on small datasets as i think.Hence i want to run the query on millions of...

  • RE: Performance Tuning

    Why don't you run the query and see which index and execution plan it will use? If you would like help understanding why SQL picked the specific plan that it...

  • RE: SQL server 2000- Maximum RAM support

    Maximum memory supported by SQL 2000: http://msdn.microsoft.com/en-us/library/aa933149%28v=sql.80%29.aspx

    It is dependent on the operating system and SQL edition, ranging from 2 GB up to 64 GB.

  • RE: full and differential backup

    Connections to a database will not give you the 'database inaccessible' error message. If you're getting that error when backing up, then the database you're trying to back up is...

  • RE: Min and Max server memory

    prashanthreddymr (4/17/2013)


    I could see PAE is enabled in the boot.ini file as this is the 64 bit machine. Can you please suggest me removing of the PAE from boot.ini and...

  • RE: Min and Max server memory

    With only 4 GB, I'd recommend adding the /3GB flag to boot.ini, not /PAE and not enabling AWE. When/if you add more memory to go over 4GB, then AWE is...

  • RE: DBCC CheckDB - Snapshot

    curious_sqldba (4/17/2013)


    GilaMonster (4/17/2013)


    CheckDB always creates a snapshot, on all editions, it's in the same directory as the database files are and that cannot be changed. Only on Enterprise edition can...

  • RE: DBCC CheckDB - Snapshot

    CheckDB always creates a snapshot, on all editions, it's in the same directory as the database files are and that cannot be changed. Only on Enterprise edition can you manually...

  • RE: DBCC CheckDB - Snapshot

    curious_sqldba (4/17/2013)


    However i am still not clear what 'Hidden Snapshot' means?

    Exactly that. It's a database snapshot that's hidden from view (not in the system tables)

  • RE: DBCC CheckDB - Snapshot

    Yes, you can take a snapshot of a database on a different drive and CheckDB that. It won't have any effect at all on the IO load on the database...

  • RE: view more efficient than before or not?

    sqlfriends (4/17/2013)


    For clustered index scan, because this is a view of schema binding

    Schema binding does not cause table scans.

    Please post table definitions, index definitions and execution plan, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/

Viewing 15 posts - 13,441 through 13,455 (of 49,552 total)