Forum Replies Created

Viewing 15 posts - 12,676 through 12,690 (of 49,552 total)

  • RE: Tempdb

    Modest DBA (6/19/2013)


    yes, temp tables which also makes use of Unions... which is fine. (that will use up tempdb space but on the mdf only if i am right?)

    No, you're...

  • RE: Tempdb

    Modest DBA (6/19/2013)


    tempdb works a little different as opposed to normal db's, the mdf is used in processing of query's, hash tables, union joins etc.

    the ldf is not used.

    The...

  • RE: Find the correct answer in the following query

    aaron.reese (6/19/2013)


    Any idea why the first query does not throw an error?

    Because when you have a subquery the tables in both the outer query and subquery are in scope. It's...

  • RE: Find the correct answer in the following query

    iiit.raju (6/19/2013)


    I am thinking the answer is 4 but some are telling that the answer is 3.So can you plese tell me the correct answer with explanation.

    Why don't you create...

  • RE: Move a 2008 database to a new machine on 2008R2

    Steve-3_5_7_9 (6/19/2013)


    GilaMonster (6/18/2013)


    Backup, copy, restore. Nothing different.

    2008 and 2008 R2 have the same compatibility level - 100.

    What you want to updatestats in this case too or is it not applicable?...

  • RE: EMERGENCY MODE

    CheckDB with repair allow data loss or restore from backup.

    p.s. Emergency mode is the last resort for when you have a suspect database and no good backup. It's never the...

  • RE: Table Partition

    No, it's not showing there's data in multiple partitions.

    From Books online:

    $PARTITION returns the partition number for any valid value, regardless of whether the value currently exists in a partitioned table...

  • RE: log shipping version.

    Mirroring yes, though it's not supported, not recommended and not very useful except as part of a rolling upgrade. But then log shipping up-version isn't all that useful either.

    Replication can...

  • RE: Table Partition

    How are you identifying that the partitions are still there?

  • RE: any recommendations for 70-450?

    Multiple choice exam mostly.

  • RE: Table Partition

    Rebuild it onto a filegroup, not just rebuild it.

    CREATE CLUSTERED INDEX .... WITH DROP_EXISTING ON [Filegroup Name]

  • RE: Table Partition

    Rebuild the table (heap or clustered index) onto a filegroup.

    Not a nonclustered index. Rebuilding the clustered index is done just the same way as rebuilding a nonclustered index, you just...

  • RE: Table Partition

    Ramana Reddy P (6/19/2013)


    Can u explain how to remove partition on single table.

    I did.

    Rebuild the table (heap or clustered index) onto a filegroup.

  • RE: higher cpu execution time

    No idea. Not enough information.

    Please post query, table definition and index definitions,

Viewing 15 posts - 12,676 through 12,690 (of 49,552 total)