Forum Replies Created

Viewing 15 posts - 14,461 through 14,475 (of 49,552 total)

  • RE: Microsoft Certified Master

    Uwe Ricken (2/3/2013)


    I do not understand your resentment. You can do the LAB from whatever location you want.

    Why do you have to travel to Europe 🙂

    Bandwidth. Latency.

    Imagine writing the lab...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Execute task based on INSERT - but without triggers

    That's a trigger, well the insert into another table part is.

    For an insert to read from the client machine's registry, you will need to embed that functionality into the client...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: when i am removing user from the server it's promoting an error

    That's not an error.

    That's an informational message informing you that deleting logins does not delete the associated database users and to complete the delete you have to delete the database...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Microsoft Certified Master

    Wonderful, so not only do I have to fly to Europe when/if I need to write another lab, I need to take a laptop that can handle the Lync client...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Selection Of Sql Server Version

    Can't tell you which version or edition, not enough information. Review the documentation on MSDN, look at the features in each edition and version and see what you need and...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Selection Of Sql Server Version

    For spacial you need SQL 2008 or above (2008, 2008 R2 or 2012).

    Can't tell you which version or edition, not enough information. Review the documentation on MSDN, look at the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: my queries are too slow when SET FORCEPLAN OFF

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

    When FORCEPLAN is set to ON, the SQL Server query optimizer processes a join in the same order as...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Full & Simple Recovery Model

    msocp (2/2/2013)


    thanks,

    i just want to know must be production DB in Full Recovery. am right

    Usually, but there are exceptions. Read up on what the differences are between the recovery models...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: NOT makes query never complete?

    Lack of what?

    Yes, low row estimation, whatever the cause, will cause very inefficient query plans. Operators that are good on smaller row counts are terrible on larger ones.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Full & Simple Recovery Model

    msocp (2/2/2013)


    thanks,

    i just want to know must be production DB in Full Recovery. am right

    Usually, but there are exceptions. Read up on what the differences are between the recovery models...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Database Design question regarding Normalized Tables

    kramaswamy (2/2/2013)


    IE, it wouldn't make sense to me to create one table called StoreTelephone, another table called StoreAddress, etc ...

    Stores only ever have a single address and a single telephone...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: What is table scan , table seek and Index scan , index seek

    Well, reading all of the data pages for the table.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Full & Simple Recovery Model

    Take a look at the differences between the recovery models and decide based on business requirements: http://www.sqlservercentral.com/articles/Administration/75461/

    Also maybe Managing Transaction Logs[/url]

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Insert-Delete A Row

    begin transaction

    begin try

    insert ...

    delete ...

    commit transaction

    end try

    begin catch

    rollback transaction

    end catch

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Fragmentation does not reduce for some tables

    68 pages is too small to worry about. The usual threshold that's mentioned is 1000 pages. Not a hard and fast number, just a guide

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 14,461 through 14,475 (of 49,552 total)