Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,518 total)

  • RE: Does the Full-Text Filter Daemon Launcher service need to be running for Full-Text-Search queries to run successfully?

    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 you, so...

    __________________________________________________________________________________
    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: Installing SQL Server 2008

    My advice: stick to the default settings for the install files.

    We have had an issue with our cluster installations, where we were also installing on D:

    The logship.exe file, used for...

    __________________________________________________________________________________
    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: Code sample needed for creating full-text index on specific filegroup

    OK, I started a profiler trace and created an fts index on Management Studio. Turns out I was forgetting a pair of parentheses...

    Should be:

    USE AdventureWorks2008;

    GO

    CREATE FULLTEXT CATALOG ftCatalog;

    GO

    CREATE FULLTEXT INDEX...

    __________________________________________________________________________________
    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: Need ReportServerDB query to retrieve datasource paths (locations) in report server

    That works great, thank you!

    __________________________________________________________________________________
    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: Preparing for the Unthinkable - a Disaster/Recovery Implementation

    I'm glad this is of potential use to you.

    Go ahead and download the code, deploy it and please let me know of any bugs or anything I may 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: Optimal Disaster/Recovery Strategy for Data Warehouse (BI) application

    Thank you all for your thoughts on this. At the moment I am sticking with daily backups/restores and databases in SIMPLE recovery.

    I will need to test any changes to this...

    __________________________________________________________________________________
    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: Changing IDENTITY column of a huge table from INT to BIGINT - is there a way without recreating the entire table?

    I just tested it, it works.

    __________________________________________________________________________________
    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: Changing IDENTITY column of a huge table from INT to BIGINT - is there a way without recreating the entire table?

    Thanks both for the suggestions. For some reason I thought ALTER TABLE...ALTER COLUMN did not work for IDENTITY columns.

    I must have been thinking of something else.

    __________________________________________________________________________________
    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

    UMG Developer (3/21/2011)


    Marios Philippopoulos (3/19/2011)


    Thank you, I tried that.

    In the Disk Usage by Top Tables report I see a few tables named with application-specific names, such as "dbo.#CustomerData", whereas...

    __________________________________________________________________________________
    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 pressure

    Check the "avg page life expectancy" counter.

    If it is consistently lower than 300-500 sec, then you definitely have memory pressure.

    __________________________________________________________________________________
    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

    GilaMonster (3/20/2011)


    Marios Philippopoulos (3/19/2011)


    Can you elaborate on the latter two? "table parameters or cached temp table shells".

    For table-type parameters see Books Online.

    Since 2005 SQL can cache temp tables that are...

    __________________________________________________________________________________
    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 pressure

    I have a few questions for you:

    Is your sql instance on 32- or 64-bit platform?

    What is the RAM on the server?

    Is the instance sharing resources with other applications or SQL...

    __________________________________________________________________________________
    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

    GilaMonster (3/19/2011)


    There's no way in SQL to link a temp table back to its session.

    The tables with hex names are table variables, table parameters or cached temp table shells.

    Can you...

    __________________________________________________________________________________
    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

    UMG Developer (3/18/2011)


    If you go into SSMS and follow these steps you can see all the temp tables along with the number of rows and the size:

    * Expand Databases

    * Expand...

    __________________________________________________________________________________
    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

    Tara-1044200 (3/17/2011)


    a user has created so many temp tables in 22 sessions which causing disk outage on the drive where tempdb is located, how do i find size of each...

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