Forum Replies Created

Viewing 15 posts - 3,946 through 3,960 (of 5,841 total)

  • RE: How to use 2 sql server instances with datafiles on a SAN

    CirquedeSQLeil (7/19/2010)


    There is a 3rd party appliance that helps to simulate load balancing. It in essence creates a replication type of setup and keeps multiple databases in sync on...

  • RE: Reports (using cursors)running slow after migration to sql 2005

    1) what version of SQL 2005 are you on? did you fully patch it up before go-live?

    2) did you update ALL statistics with FULL SCAN after the upgrade?

    3) did...

  • RE: Disk I/O

    1) Having done this type of work for over a decade now, I can tell you that it has been my experience that SAN admins RARELY listen to in-house DBAs,...

  • RE: Performance on Views that span databases on multiple servers

    Roger L Reid (7/16/2010)


    I'm going to respectfully offer different advice - what you are trying to do is logically and theoretically correct. It wasn't real practical in the past,...

  • RE: Performance Problem

    I LOVE ORMs!! They create SOOO many business opportunities for me due to the bad stuff they (and the developers who use them) do with databases! 😎

  • RE: Function in Joining column degrades performance in 2008

    I might have missed it, but did anyone mention that when upgrading from SQL 2000 to SQL 2008 you MUST update ALL statistics with a FULL SCAN?

    Also did we get...

  • RE: Guidance and possible consulting gig

    GilaMonster (7/14/2010)


    Counts me out then. Maybe Kevin (TheSQLGuru) is interested.

    Thanks for the props Gail.

    Yes, this is the type of work I do for a living (and have for...

  • RE: Memory fragmentation?

    I agree Gail - sure wish people would look at thread dates. More importantly I wish they would just post their question as a new post when it really...

  • RE: Query getting hung

    1) you are updating a table without a where clause, meaning you are scanning/updating the ENTIRE table at once. clearly parallelism COULD be good for this. But you...

  • RE: Performance on Views that span databases on multiple servers

    Grant Fritchey (7/12/2010)


    If you're working with linked servers and running queries against them, you need to know that unless you specifically use a construct like OPENQUERY and pass in parameter...

  • RE: blocking

    on sqlblog.com Adam Machanic has an INCREDIBLE replacement for sp_who2 called sp_whoisactive. Get it, learn it, use it!!!

  • RE: Cursor

    Cursors are appropriate for some classes of problems - and metadata operations can be one of them. Use the correct tool for the job.

    I am with Jeff that you...

  • RE: CTE - Avoiding the cursor

    Brandie Tarvin (7/6/2010)


    First of all, "she", not he. @=)

    Secondly, I need random numbers that do not repeat. I'm not limited to a range, but I need to make sure they...

  • RE: Creating Clustered index on a large table

    Jeff Moden (7/2/2010)


    TheSQLGuru (7/2/2010)


    Once again we are moving into the world where a professional would be worth his/her weight in gold - or at least silver (metals are SOOOO inflated...

  • RE: Creating Clustered index on a large table

    Back to the original question, it could be fastest to build your clustered index with SORT_IN_TEMPDB option, assuming you have a sizeable tempdb on a fast IO system.

Viewing 15 posts - 3,946 through 3,960 (of 5,841 total)