Forum Replies Created

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

  • RE: How Max Memory works in SQL Server 2008 R2

    Using any third party tools like Quest Litespeed? Any CLR code or Integration services on this server? These are some of the things that can cause PLE drops.

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Memory uitilization

    Try checking out "MSSQL$InstanceName:Buffer Manager", "MSSQL$InstanceName:Memory Manager" and "Memory" perfmon counters. This would be a good place to start. Make sure you capture over a good period...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Unable to start SQL Server agent after server restart( Sql Server 2012)

    I've seen this when my service account loses it's "Log on as service" rights.

    Might be something to check - could temporarily change the Agent service to use Local System account...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Page Life Expectancy dropping in value

    IgorMi (10/4/2013)


    Hi

    PLE min values should not go under 300 seconds. Fluctuating from 14h to 0.1h is still above 300 seconds, but the behavior itslef is not good for the database...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Page Life Expectancy dropping in value

    Could also be in an agent job...

    We see this behaviour when our Litespeed backups kick off during our maintenance window

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Replication from sql server to oracle

    Hi,

    I had to set this up a few weeks ago (SQL2008R2 to Oracle 11g Subscriber).

    Some tips:

    - You will need to install the oracle client tools on the distributor and...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Can you please let me know the link to download the tool named as - DBHammer?

    Luis Cazares (9/30/2013)


    Here you go

    DBHammer

    haha - wondered if something like this was available 🙂

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Commenting

    +1 to what Koen said.

    I only explain logic and why I've done it a specific way.

    I think it's safe to assume a basic understanding of sql - especially...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: How to port no on Sql server

    samking (9/18/2013)


    Can any one know where to find port id in sql server.

    I am new to sql server dba ...please help.

    Thanks & Regards

    shiva

    The following query will return the instance and...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: how to find staled statistics?

    If you suspect a poorly performing query you could check the execution plan to see what the cardinality estimates are too. If there is skew (estimated 1, actual thousands...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Select several subqueries with more than 1 value

    this is what I came up with from your existing structure (after making the insert statements work)

    WITH cte

    AS

    (

    SELECTc

    ,ROW_NUMBER() OVER(ORDER BY c) AS rowid

    FROM table1

    ),

    cte2

    AS

    (

    SELECT c

    ,ROW_NUMBER() OVER(ORDER BY c) AS rowid

    FROM...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: One sa password to rule them all?

    1 password per instance. We personally have a stored procedure which creates secure passwords up to 15 characters long with varied case / numbers / symbols (excluding certain symbols)....

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: SQL 2008R2 to Oracle Transactional Replication Issue

    FIXED:

    My sp_addarticle command was missing the @status parameter (with a value of 0).

    I don't fully understand why a value of zero made this work though as BOL state that "A...

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: sql 2008 r2 cluster installation failed

    have you checked C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20130125_105747\Detail.txt for the details?

    [font="Times New Roman"]There's no kill switch on awesome![/font]
  • RE: Shrink the database only upto its initial size which is set

    Shrinking dbs are never a nice task for many reasons - if you absolutely have to do it remember to run your reindexing/update stats afterwards....

    [font="Times New Roman"]There's no kill switch on awesome![/font]

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