Forum Replies Created

Viewing 15 posts - 36,736 through 36,750 (of 49,562 total)

  • RE: Exclude the Index Reorganize logic

    gmamata7 (8/29/2009)


    So could please tell me what to modify in order to Exclude Reorganize logic & it should work for all the databases in an instance.

    ps has already told you,...

  • RE: making a primary key

    Tell your client that this is a really, really, really bad idea. Yes it's possible, but most implementations are either very slow as you need to ensure that there's only...

  • RE: Weekend DBA's

    Ever since I started working from home I've found that weekends don't mean quite as much. It matters to no one whether I work on Wednesday and go shopping and...

  • RE: Exclude the Index Reorganize logic

    Clive Strong (8/29/2009)


    I did read that you should not perform any online rebuilds and I would imagine this would extend to reorganize operations whilst BizTalk is processing.

    I would like to...

  • RE: Need help for creating couple SQL queries

    This looks very much like homework. Is it?

    We don't solve people's homework problems for them, they learn nothing if we do. Have a go at them yourself, if you get...

  • RE: eligibility for creating index

    Paresh Prajapati (8/29/2009)


    So, is those column are eligible for index?

    Or, can you tell, how much minimum rows require for eligibility for creating index?

    They're certainly eligible for indexes, nothing's stopping you...

  • RE: Question for Index with include column?

    Paresh Prajapati (8/29/2009)


    Two indexes are created on table as following :

    create index IC_Col1 on table(id) include (name, city)

    create index IC_Col2 on table(id)

    1. which of above index is used for

    select name...

  • RE: Nonclustered Index, NULL values!!

    Sourav (8/28/2009)


    Clustered index never contain any NULL values as Primary key is imposed to it.

    Clustered indexes are not primary keys and primary keys are not clustered indexes. A clustered index...

  • RE: making a primary key

    Can you make the column an identity? That let's SQL handle the incrementing and you can be sure that it will work.

  • RE: Restore Failed on SQL2008

    Don't know about case 1, but case 2 has irreparable corruption. There's some damage that's preventing CheckDB from running and there is no way that it will be able to...

  • RE: Are the posted questions getting worse?

    Roy Ernest (8/28/2009)


    Thanks Grant, I am hoping it will continue like this.

    Don't be worried if it doesn't. I'm only now, almost a year later, getting the same attendance I...

  • RE: null value in unique constraint

    There's no real use. It's just that within unique indexes is the only place where nulls are considered the same. Unique indexes and unique constraints only allow a single null....

  • RE: Is CHECKDB necessary on Read-Only DB's?

    Ed (8/28/2009)


    Since these db's are never written to again, is it still necessary to run CHECKDB on them?

    Yes it it. SQL doesn't corrupt it's own databases while writing...

  • RE: Query Run Very Slow on SQL 2005

    CAn you please post the exec plan from the SQL 2005 server as detailed in the article I referenced above. You're missing indexes, I can't tell which ones without seeing...

  • RE: Query Run Very Slow on SQL 2005

    Execution plan please. Just the SQL 2005 one is fine.

Viewing 15 posts - 36,736 through 36,750 (of 49,562 total)