Forum Replies Created

Viewing 15 posts - 36,151 through 36,165 (of 49,562 total)

  • RE: Introduction to Indexes

    omkarred (10/26/2009)


    please elaborate on the clustered & non clustered indexes & implementation of it in actual db

    That's what parts 2 and 3 cover.

  • RE: How to Get a ResultSet Count

    arun.sas (10/26/2009)


    Exec Get_Name 'Usa'

    Select @@rowcount

    Ensure that, your procedure should not having/use of SET NOCOUNT ON/OFF.

    The setting of NoCount has no effect on @@RowCount. Setting NoCount on simply prevents SQL from...

  • RE: Help me to create a view

    Jeff Moden (10/25/2009)


    Oh... be careful, Johan... XML splits are relatively slow compared to many other methods.

    Plus the OP indicated he was still on SQL 2000 (despite posting in...

  • RE: LSN of Backups

    select *

    from msdb.dbo.backupset bs

    inner join msdb.dbo.backupfile bf on bs.backup_set_id = bf.backup_set_id

  • RE: Who is going to the PASS Summit 2009?

    Attending.

  • RE: Rebuild also reorgs?

    Jeff Moden (10/25/2009)


    OK... I'm confused... I thought that one of the major reasons for having a Clustered Index was so that it would reorg the data so that it wasn't...

  • RE: check list for Migrating sql server 2000 to 2005

    No. Plans are memory only and are not included in a database backup.

  • RE: Rebuild also reorgs?

    repent_kog_is_near (10/25/2009)


    Although they are not the same, the end result of Rebuild also accomplishes (or includes) what is done through a reorg (rearranging leaf level pages), right?

    Both will fix the...

  • RE: Troubles...

    ianwilson91 (10/25/2009)


    I'm a complete noob to webservers and mysql in general... I have IIS running fine, php works etc. however I can't seem to get MySQL to work, mainly for...

  • RE: How Long Does a Restore take?

    UtterSQLNewb (10/24/2009)


    The .bak file was 59MB but the .trn file was 188MB ( a massive increase over the first one).

    Because you didn't take log backups.

    Please read through this...

  • RE: Rebuild also reorgs?

    Technically no, but understand what the two do.

    Reorg shuffles the pages at the leaf level of an index back into order. It doesn't touch the non-leaf levels and it doesn't...

  • RE: check list for Migrating sql server 2000 to 2005

    ravikanth. (10/24/2009)


    3)DBCC FREEPROCCACHE to clear out old query plans.

    Completely unnecessary. Plans are memory-only and don't survive a restart of the instance or a detach of the database. There's no way...

  • RE: check list for Migrating sql server 2000 to 2005

    mahesh.vsp (10/24/2009)


    What is the use of the below

    Change the database's page verify to Checksum

    SQL 2000 only had the option to use torn page verification. Checksum, new in 2005, picks up...

  • RE: check list for Migrating sql server 2000 to 2005

    Couple more things

    After upgrading to SQL 2005/2008, do the following:

    Change the database's page verify to Checksum

    Run a checkDB with the Data Purity option

    rebuild all indexes

    update all column statistics with fullscan.

  • RE: Retaining Permissions when Altering a Table

    homebrew01 (10/24/2009)


    However, if there were specific permissions on the table, they do not get recreated. How can I script them out ?

    Not sure if there's a way from the GUI,...

Viewing 15 posts - 36,151 through 36,165 (of 49,562 total)