Forum Replies Created

Viewing 15 posts - 3,286 through 3,300 (of 7,164 total)

  • RE: what is CPU ? Physical or logical ?

    2 physical, 8 logical. We can tell the # of each from SQL...

    -- cpu overview

    SELECT osi.cpu_count AS LogicalCpuCount,

    osi.hyperthread_ratio AS HyperthreadCoreRatio,

    ...

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

  • RE: Excessive recompiles

    I had this problem on SQL 2005 and could not do anything with the jobs in place so went this route to keep plan cache under control:

    Plan cache, adhoc workloads...

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

  • RE: SQL Server detected a logical consistency-based I/O error : SQL 2005

    GilaMonster (8/30/2012)


    opc.three (8/30/2012)


    What kind of repair? You may have lost data that way. Can you post the exact command?

    It'll be CheckDB with REPAIR_ALLOW_DATA_LOSS as no other repair option is allowed...

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

  • RE: SQL Server detected a logical consistency-based I/O error : SQL 2005

    What kind of repair? You may have lost data that way. Can you post the exact command?

    edit: and post output too if you saved it, from that we can tell...

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

  • RE: Mirroring and SQL logins...

    rarara (8/21/2012)


    Default database - on the principal it has the user database as the default for the logins, but on the mirrored server the logins list master as default. presumably...

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

  • RE: Creating SSMS addin advice

    If you're not planning to sell it might I recommend starting a project on CodePlex. I looked into writing an add-in for SSMS in 2005 at one point but the...

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

  • RE: xp_delete_file not deleting files on share drive

    Greg Drake (8/30/2012)


    I have had this problem before when I attempted to use a maintenance plan cleanup task to delete perfmon files as they got old. When it didn't work...

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

  • RE: Execute Stored procedure and SSIS Packages in different servers

    Hi roshanmaugustine. I am not trying to be rude here but I must say, I am sure that what you posted makes sense in your head, but reading it without...

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

  • RE: SQL Server detected a logical consistency-based I/O error : SQL 2005

    Do you have a valid backup that does not contain the corruption?

    At minimum you need to restore the corrupt page and possibly more pages leading to the need to restore...

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

  • RE: Column level audit ...

    You can capture DML operations (i.e. INSERT, UPDATE and DELETE) using TRIGGER. SELECT operations are a bit trickier. Are you using stored procedures for all data access? If so...

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

  • RE: Need your advice on an automatica job

    halifaxdal (8/30/2012)


    To make things simpler, I feel this would be easier:

    1. Instead of creating a fancy report, just create a stored procedure to generate a spreadsheet and use it as...

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

  • RE: Today's Random Word!

    MoveOn

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

  • RE: Distributed queries with XML

    oconnor_dp (8/28/2012)


    Nope. Think about it, the xml datatype can be up to 2GB. You want to pass that around? Don't!

    The issue it not necessarily in returning the...

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

  • RE: xp_delete_file not deleting files on share drive

    durai nagarajan (8/29/2012)


    i never worked in PowerShell do i have to install somehting or am i missing something?

    PowerShell 2.0 is standard equipment in Windows Server 2008 R2. What are you...

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

  • RE: Store proc or trigger

    Are you saying you created one stored proc that handles inserts, updates and deletes for over 100 tables using dynamic sql?

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

Viewing 15 posts - 3,286 through 3,300 (of 7,164 total)