Forum Replies Created

Viewing 15 posts - 16 through 30 (of 34 total)

  • RE: What is a small/medium/large size infrastructure of sql servers to administer

    Silverfox (9/10/2009)


    Paul Monaghan (9/10/2009)


    Hi,

    At my current company I'm one of those 'involuntary DBAs'. Someone who has be thrust into the role as there was a need for it...any they didn't...

    ______
    Twitter: @Control_Group

  • RE: Adding an instance to a SQL 2k5/Win 2k3 cluster - can I use the same disk resources?

    Active/Passive. If it turns out we have no choice but to dedicate new LUNs to the OCS instance, I'll probably change it to Active/Active (since it would be separately licensed,...

    ______
    Twitter: @Control_Group

  • RE: Index Usage

    Check out the dmv sys.dm_db_index_usage_stats - that should give you pretty much exactly what you're looking for. Of course, you'll need to do some extra work to track down which...

    ______
    Twitter: @Control_Group

  • RE: Consistency errors - how hosed am I?

    GilaMonster (1/29/2009)


    Matt Cherwin (1/28/2009)


    The one bright side to this is it helps support my position that all SQL Server instances in the firm should at least fall under my purview...

    ______
    Twitter: @Control_Group

  • RE: Consistency errors - how hosed am I?

    Paul Randal (1/28/2009)


    Yup - you're screwed. Without a backup to restore from, repair is your only option. If REPAIR_ALLOW_DATA_LOSS doesn't fix everything (it's not able to fix all corruptions) then...

    ______
    Twitter: @Control_Group

  • RE: Arithmetic overflow when CASTing to decimal

    Garadin (1/21/2009)


    Decimal 8,2 means you have a total of 8 digits, not 8 to the left of the decimal point. Therefore, if you break a million (7 digits, you...

    ______
    Twitter: @Control_Group

  • RE: SQL Server 2008 - adding a node to a Win 2k8 cluster

    Check.

    I've had this on hold for a little while now due to issues in production, but I'll probably have time this week to get back to it. I'll give it...

    ______
    Twitter: @Control_Group

  • RE: insert/update operation in same Stored Procedure is preferred or not ?

    Grant Fritchey (9/10/2008)


    It's not a huge deal to do this, but it will result in recompiles on the procedure since the execution plan for an UPDATE and one for an...

    ______
    Twitter: @Control_Group

  • RE: Restoring a sql backup from another server

    To answer the question, I have occasionally had the need to restore from backup via a UNC path across the LAN, and I haven't seen any issues. I have had...

    ______
    Twitter: @Control_Group

  • RE: Two databases with the same physical file names and locations

    Michael Valentine Jones (9/9/2008)


    Michael Earl (9/9/2008)


    I'm pretty glad as well.

    The alternate universe in which two files could be in the same folder with the same name would be a very...

    ______
    Twitter: @Control_Group

  • RE: Automatic detection of Schema changes

    toparsi (9/9/2008)


    Hello Guys,

    I have a lot of databases to work with and need to keep track of all the changes. In my case, I need to copy backup files to...

    ______
    Twitter: @Control_Group

  • RE: Questions on File Placement

    What GSquared said, with one addition: in the SAN environments I've worked in, two LUNs with different RAID levels will automatically be on separate spindle sets. So, even if you've...

    ______
    Twitter: @Control_Group

  • RE: Two databases with the same physical file names and locations

    Sandra Skaar (9/9/2008)


    I recently accepted a position as a DBA for a large company with many departments. This company never had a DBA and so I am up against some...

    ______
    Twitter: @Control_Group

  • RE: Is it possible to load a new DB with .bak file of other DB?

    Preston (9/3/2008)


    What does FILE = 1, NOUNLOAD, & STATS = 10 mean in a Restore statement? Thanks.

    FILE is used to identify a file to include in the restore; I'm...

    ______
    Twitter: @Control_Group

  • RE: How to find the objects that use a stored procedure

    Grant Fritchey (9/4/2008)


    This is from BOL. I'd suggest trying it.

    SELECT referencing_schema_name, referencing_entity_name, referencing_id, referencing_class_desc, is_caller_dependent

    FROM sys.dm_sql_referencing_entities ('Production.Product', 'OBJECT');

    I had never heard of sys.dm_sql_referencing_entities before - that's fantastic. Thanks!

    ______
    Twitter: @Control_Group

Viewing 15 posts - 16 through 30 (of 34 total)