Forum Replies Created

Viewing 15 posts - 736 through 750 (of 1,518 total)

  • RE: SQL Server Upgrade Assistant

    Grant Fritchey (1/27/2009)


    Marios Philippopoulos (1/27/2009)


    Restoring the system dbs...

    What does that entail? Is it done transparently by the tool or is there anything manual that needs to be done?

    When I read...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: SQL Server Upgrade Assistant

    Grant Fritchey (1/27/2009)


    Yeah, I used it at a lab at the Microsoft Technology Center to test the upgrade of one of our databases. I blogged about it here[/url].

    Restoring the system...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: SQL Server Upgrade Assistant

    Grant Fritchey (1/27/2009)


    Yeah, I used it at a lab at the Microsoft Technology Center to test the upgrade of one of our databases. I blogged about it here[/url].

    Thanks! I will...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: Can AWE be enabled on a 64 bit

    from http://www.microsoft.com/technet/prodtechnol/sql/2005/tsprfprb.mspx#EUVAE:

    On both 32- and 64-bit platforms, memory that is allocated through the AWE mechanism cannot be paged out. This can be beneficial to the application. (This is one of...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: Object Explorer not coming up in SSMS 2008

    I found the fix: 🙂

    Select “reset window layout” under Window menu drop-down:

    http://thesource.ofallevil.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.sqlserver.server&tid=c305ab8b-40c6-4c42-84dd-53885feffee4&cat=en_US_671e06d0-f20d-4bb3-9c6a-42c825ddb1dc&lang=en&cr=US&sloc=&p=1

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: Want to reduce number of linked servers in consolidation effort

    Steve Jones - Editor (1/25/2009)


    I think you're on the right track here. I've never used linked servers much in environments so I'm not sure if this makes the best sense...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: Linked servers

    sun256 (1/23/2009)


    Hi guys..

    I am in the process of migrating sql server 7.0 to sql server 2005..I have...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: how to find out the most frequently run queries in a database

    GSquared (1/23/2009)


    All of which are why I suggest a trace.

    And don't worry too much about a server-side trace (the kind I'm talking about) taking a lot of server resources and...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: how to find out the most frequently run queries in a database

    GilaMonster (1/23/2009)


    Marios Philippopoulos (1/23/2009)


    There is a risk that the data from the DMV dm_exec_query_stats is regularly flushed from memory if there is memory pressure in your system.

    There's a couple...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: Filegroups and log files

    We use filegroups to - ideally - split the database I/O among several independent disks (spindles) for better performance. Disk I/O is the largest bottleneck in terms of database performance.

    Access...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: how to find out the most frequently run queries in a database

    You can run a trace, but it's so... 20th century! 🙂

    Use this query to capture your most frequently-run SQL statements (modify per your requirements):

    SELECT TOP 10 *

    ,[Individual Query] =...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: tempdb issue

    Mike Levan (1/23/2009)


    This is the query which is causing issue.

    select distinct e.code,startdate,enddate

    into #f

    from exams e

    inner join

    ...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: High deadlock frequency in OperationsManager database, SCOM 2007

    Carolyn Richardson (1/22/2009)


    Down load a trial of SQL Sentry if a deadlock fires it should give you the items that are in the chain of events. http://sqlsentry.net/sql-performance

    Thank you, my main...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: AWE enabled yes or no?

    Jason Crider (1/22/2009)


    How does this apply to a 64-bit OS with 32-bit SQL Server 2000?

    We have 16GB of RAM and I currently have AWE enabled with Max and Min Memory...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

  • RE: SQL Server, SANs and Virtualisation

    george sibbald (1/21/2009)


    a long thread here but I don't think this has been asked\answered -

    the article mentioned that VM streamlines the DR process, but for that to be fully...

    __________________________________________________________________________________
    SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
    Persisting SQL Server Index-Usage Statistics with MERGE[/url]
    Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]

Viewing 15 posts - 736 through 750 (of 1,518 total)