Forum Replies Created

Viewing 15 posts - 4,141 through 4,155 (of 7,164 total)

  • RE: Monitoring Index Fragmentation

    sys.dm_db_index_physical_stats, yes. If you dig into Ola's process you'll see that's what he uses, and it the primary data source available for index stats. To pick a nit, it is...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Monitoring Index Fragmentation

    In general then, sys.dm_db_index_physical_stats should be used only during times of otherwise low system usage.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Monitoring Index Fragmentation

    You're questions are always interesting pamozer!

    Can someone tell me if selecting agains sys.objects and sys.indexes locks the tables?

    Which tables? sys.objects and sys.indexes are views. Are you wondering about the system...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: sysadmin role not recognized by some databases

    From sp_changedbowner (SQL Server 2008 R2)

    This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: permission

    It is advisable to create a Database ROLE, add the USER to the ROLE, and GRANT the permission to the ROLE. Try to avoid granting permissions directly to Users wherever...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Log Shipping Out of sync error.

    hedlund_peter (5/8/2012)


    Thanks for your answer!!

    I get 14420 and 14421 error messages.

    The database is bigger than 1TB.

    What do you mean by sort out? Do you mean get it running again?

    I would...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Disk Space Information for SQL Servers

    PowerShell + WMI works well for this type of work.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: DTSX package not generating double quotes properly

    SSIS does not handle embedded column delimiters, row delimiters or text qualifiers the same way DTS does. If memory serves the difference resides in the way the SSIS Flat File...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Overall sql memory consumption

    Have you tried looking in Books Online, or using a search engine? Many of the topics you mention have already been covered at great length.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Replicating to flat file

    I would go with SQL Express. It's free and can be used as a replication subscriber, and will handle locking infinitely better than a writer (replication) and a reader (your...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Log Shipping Out of sync error.

    Quickest would likely be to sort out your sync issue. Where are the logs? Do you have any confidence in being able to get back on track without rebuilding? How...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Fill factor on historical table

    From The Clustered Index Debate Continues... by Kim Tripp

    The first and most important point to stress is that minimizing page splits is NOT the only reason nor is it the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Replicating to flat file

    I highly doubt any of the commonly available OLE DB Providers for Text Files will work for this. Replication support for Jet, which can connect to text files but its...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Problem Preculiar with setting up DB Mirroring

    Lynn Pettis (5/8/2012)


    I would say it depends on the size of the databases and the amount of activity on each database.

    As to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Problem Preculiar with setting up DB Mirroring

    Safe to assume 64-bit? How many CPUs assigned to SQL Server? How much RAM?

    Worker Thread Recommendations for SQL 2012. I couldn't find any guidance on SQL 2008 R2, but you...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 4,141 through 4,155 (of 7,164 total)