Forum Replies Created

Viewing 15 posts - 3,631 through 3,645 (of 19,560 total)

  • RE: MSDB Transaction Log filling very fast..

    Jacob Wilkins (2/18/2014)


    When the log is growing, check the log_reuse_wait_desc for the msdb database in sys.databases. That should help narrow things down.

    If it shows there's an active transaction, you...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: MSDB Transaction Log filling very fast..

    Jeff Moden (2/18/2014)


    IIRC correctly, there was a bug that cause this behaviour depending on the INITIAL SIZE and GrOWTH SETTINGS of a database in SQL Server 2005. I believe...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    TomThomson (2/18/2014)


    Ed Wagner (2/18/2014)


    BWFC (2/18/2014)


    SQLRNNR (2/17/2014)


    Ed Wagner (2/17/2014)


    Revenant (2/17/2014)


    TomThomson (2/17/2014)


    SQLRNNR (2/17/2014)


    hair

    dog

    dachshund

    Sausage

    schnitzel

    Noodles

    Pasta

    Arrival Theorem (Poisson arrivals see time averages)

    langouste

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: The Model Database

    Koen Verbeeck (2/17/2014)


    The following operations cannot be performed on the model database:

    ...

    Setting the primary filegroup to READ_ONLY.

    Damn you MSDN!

    Yeah that can be a bit misleading. The primary filegroup can't...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: The Model Database

    TomThomson (2/18/2014)


    Koen Verbeeck (2/18/2014)


    Hany Helmy (2/18/2014)


    Just a simple & basic info to share: "if you changed the model database to Read-Only mode; then any newly created database will be in...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Property IsLocked is not available for Login

    Do you have any other reason to believe you have/had a memory issue?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: The Security of Interconnected Systems

    Gary Varga (2/18/2014)


    paul.knibbs (2/18/2014)


    SQLRNNR (2/17/2014)


    the ability to protect the entire system is dependent on the weakest link

    That needs to be underscored. No matter the system, there is a weakest...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Filtering multiple alias for single column in sql

    What is your goal in trying to filter by somebody's First name?

    Do you have sample data and table definitions to help solve this problem you are running into?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: The Security of Interconnected Systems

    the ability to protect the entire system is dependent on the weakest link

    That needs to be underscored. No matter the system, there is a weakest link. Every network...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: 15 minutes Interval from Hours - Please Help

    FWIW = "For What it's Worth"

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Filtering multiple alias for single column in sql

    If you want to filter for First Name, then you need to use [lev].[stringValue] in your where clause.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: The Model Database

    Thanks for the question.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: restrict a specific login for a specific amount of time?

    paulaalkz 9229 (2/17/2014)


    Thanks for all the replies. Disabling the account is definitely simple and perfect for my scenario. Thanks again.

    Good to hear and glad you have a solution.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: MSDB Transaction Log filling very fast..

    Did you have service broker enabled?

    It also sounds like maybe somebody had created a table and kept inserting tons of records into it. Find what table is the largest...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: compare 2 rows next each other

    try this and see if it works

    SELECT *

    FROM abc a1

    INNER JOIN abc a2

    ON a1.id = a2.id

    AND a1.enterdate = a2.enterdate+1

    AND a1.stat = a2.stat

    WHERE a1.stat = 'Live'

    AND a1.typo <> a2.typo;

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 3,631 through 3,645 (of 19,560 total)