Forum Replies Created

Viewing 15 posts - 18,121 through 18,135 (of 19,560 total)

  • RE: Making a case for SQL Server Consolidation

    Database size, database use, database load, server hardware (cpu, disk space, and RAM) all play into the decision. Also, playing into the decision, is to what kind of Servers...

    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!

    Chris Quinn-821458 (1/15/2010)


    Chris Quinn-821458 (1/14/2010)


    Chris Quinn-821458 (1/13/2010)


    Chris Quinn-821458 (1/12/2010)


    Chris Quinn-821458 (1/11/2010)


    Chris Quinn-821458 (1/8/2010)


    Chris Quinn-821458 (1/7/2010)


    Chris Quinn-821458 (1/6/2010)


    Chris Quinn-821458 (1/5/2010)


    Chris Quinn-821458 (1/4/2010)


    Chris Quinn-821458 (12/31/2009)


    Chris Quinn-821458 (12/30/2009)


    Chris Quinn-821458 (12/29/2009)


    Countdown - 13 work...

    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: Edit View with multiple tables

    If you open a view in SSMS, no you cannot update from there. You would need to use insert and update statements.

    What is that third party tool that allows...

    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: Trying to disable the lockout of the sa account

    The lockout policy is controlled through the AD policy. If AD is not present, then it will use the Local machine policy. Try editing that policy - however...

    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: Edit View with multiple tables

    Bruce-12445 (1/14/2010)


    I'm using SQLServer 2005 and would like to be able to edit data in a view with 2 tables, is this possible? I've read the restrictions for doing this...

    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: How do you limit records using Distinct and Count - TOP and Rowcount dont work ?

    Thanks Paul.

    Gail - can't wait to see that Blog post.

    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: A Genetic Algorthm Sample in T-SQL

    This is awesome. This could keep me busy for quite some time. Amazing that you were able to do it so quickly. Nice article.

    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: converting char to datetime

    saidwarak01 (1/14/2010)


    Hi Jason,

    I got the answer for that

    select convert(datetime,substring('10232016',1,2)+'/'+substring('10232016',3,2)+'/'+substring('10232016',5,4),101)

    Thanks for your help.

    sai

    You're welcome.

    When doing your actual conversions, make sure you replace that static date in the ' '

    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: Windows Service slowing down server?

    You're welcome.

    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: help!

    Here is one alternative, to the best of my understanding (without data structures).

    select t.refnbr

    ,sum(case

    when t.doctype in ('IN','DM','SC','NS')

    then t.origdocamt * 1 -- these doctypes are positives

    when t.doctype in ('SB','CM')...

    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: help!

    Please provide table scripts. There are columns in your script (perpost,custid) no represented by your data or columns. Also, provide sample data that would enable this query to...

    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: converting char to datetime

    This site should be useful for you.

    http://www.sqlusa.com/bestpractices/datetimeconversion/

    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: Windows Service slowing down server?

    We've done it the same way (jobs listed in database) and it worked fine. Not too terribly significant a load on the server.

    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!

    Lynn Pettis (1/14/2010)


    SUGAR

    And SPICE

    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: Copy table with index and statistics

    You can script out the table and its indexes from SSMS. As for the statistics, you should leave that to the DB Engine.

    Once you script your table, change the...

    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 - 18,121 through 18,135 (of 19,560 total)