Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,518 total)

  • RE: does physical dll file needed after we have create assembly based on it?

    I have had the same question for some time and just did a test.

    Created a SQL-CLR assembly from a dll file, then moved the dll to another location.

    Restarted the instance,...

    __________________________________________________________________________________
    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: Full-Text Search and mirroring/snapshots - Disaster/Recovery Plan for Full-Text Search

    According to the following link, I don't need to do anything on the full-text indexes on the mirror side (following failover), if auto-change tracking was already on in the principal...

    __________________________________________________________________________________
    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: Memory configuration

    Have a look at this link, it's for SQL 2005, but also applies to SQL 2008:

    http://technet.microsoft.com/en-us/library/cc966401.aspx

    "...Consistently low average page life expectancy. See Average Page Life Expectancy Counter which is in...

    __________________________________________________________________________________
    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: Software to monitor databases by using query on multiple servers

    michael-753984 (4/20/2011)


    Didn't think about PowerShell actually, anything is possible with it.

    Would just need to ajust it to execute a .sql file instead of inline sql and it would do the...

    __________________________________________________________________________________
    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: Slow Performance after side by side SQL Server upgrade from 2005 to 2008 R2

    Did you change the comp level to 100 before updating stats?

    Dumb question, but I have made that mistake a few times in the past.

    __________________________________________________________________________________
    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: Software to monitor databases by using query on multiple servers

    Not sure if this is what you need, but here is a simple powershell script that performs an example query on any number of SQL instances and returns the result:

    #Variables

    $Computers...

    __________________________________________________________________________________
    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: Mirrored database becomes SUSPENDED during nightly maintenance

    You may need to upgrade to Cumulative Update 3 for SQL Server 2008 Service Pack 2:

    http://support.microsoft.com/kb/2403218#appliesto

    __________________________________________________________________________________
    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 a temporary table in tempdb?

    Ninja's_RGR'us (4/18/2011)


    GilaMonster (4/16/2011)


    Yup, that's pretty much what I was thinking about.

    Just one comment, if the session_id>50 is supposed to filter out system processes, remove it as it won't necessarily do...

    __________________________________________________________________________________
    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 a temporary table in tempdb?

    GilaMonster (4/16/2011)


    Yup, that's pretty much what I was thinking about.

    Just one comment, if the session_id>50 is supposed to filter out system processes, remove it as it won't necessarily do what...

    __________________________________________________________________________________
    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 a temporary table in tempdb?

    I wrote an article some time ago that suggests a way of tracking tempdb utilization using reporting services:

    http://www.sqlservercentral.com/articles/tempdb+utilization/65149/

    (unfortunately, some of the figures are a bit too small to see clearly,...

    __________________________________________________________________________________
    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 2008 R2 Cluster Installation

    isd83 (4/15/2011)


    I am doing the same 4 nodes sql cluster installation too. My question is on MSDTC. I know this requirs disk drive and ip address. Do I need just...

    __________________________________________________________________________________
    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 get table column on which a full-text index is defined?

    Hmm, the problem with sys.fulltext_index_columns is that I didn't know about that catalog view... 😛

    Now I do, thank you!

    Here is the revised query:

    SELECT

    t.name AS TableName,

    c.name AS FTCatalogName...

    __________________________________________________________________________________
    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: Does the Full-Text Filter Daemon Launcher service need to be running for Full-Text-Search queries to run successfully?

    Marios Philippopoulos (4/11/2011)


    Craig Purnell (4/11/2011)


    I think that's right.

    Thank you, we are developing some new FTS functionality and will test with the service down to see what happens.

    The query below actually...

    __________________________________________________________________________________
    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: Does the Full-Text Filter Daemon Launcher service need to be running for Full-Text-Search queries to run successfully?

    Craig Purnell (4/11/2011)


    I think that's right.

    Thank you, we are developing some new FTS functionality and will test with the service down to see what happens.

    __________________________________________________________________________________
    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: Does the Full-Text Filter Daemon Launcher service need to be running for Full-Text-Search queries to run successfully?

    Marios Philippopoulos (4/9/2011)


    Craig Purnell (4/9/2011)


    The Filter Daemon launches filter processes. Starting in SQL 2008, the Full Text engine is entirely within the SQL engine. See MSDN for more info:

    http://msdn.microsoft.com/en-us/library/ms142541.aspx

    Thank...

    __________________________________________________________________________________
    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 - 301 through 315 (of 1,518 total)