Forum Replies Created

Viewing 15 posts - 5,041 through 5,055 (of 5,841 total)

  • RE: Disabling Query Analyzer access

    See BOL for example code for a login trigger. Check master.dbo.sysprocesses program_name column for their spid and you can know if they are using QA or not. If...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Track data change in a table.

    Nary, your example trigger is very flawed in that it doesn't handle multi-record actions.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Urgent help required !!!!!

    mcloney (8/4/2008)


    >>My point was to take away the "IN" clause and use a join or like some one else pointed out use "exists".

    I hate to be a "me too" kinda...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Partitioned Table Performance

    Partitioning is a tool. And like all other tools it is only as useful as your knowledge and skill at implementing/using it. There are too many variables in...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Urgent help required !!!!!

    maruf24 (8/3/2008)


    i m hving a clusterd index on the column which cantain some duplicate records may be more than 1000 ....table contain more thn 10 millions of records....

    when i...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Urgent help required !!!!!

    1) IN clauses can be performance dogs. Try to rewrite query using EXISTS.

    2) Post the actual execution plan and the IOs used here for review. We will need...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Memory leak in SQL 2005?

    1) test and then upgrade to Cumulative Update 6 (or higher) to SP2 on sql server.

    2) are you using lightspeed or another product to do backups?

    3) run dbcc memorystatus and...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Transaction Deadlock

    See this series for the definitive word on deadlock troubleshooting and resolution: http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL SERVER MEMORY CONSUMPTION PROBLEM

    If you aren't using Enterprise Edition, set sql server max memory to 2GB and see how that goes. If still get alerts, go with 1.7GB. If using EE,...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Implemetation of Large SQL Server DB(550 GB) on Blade/SAN

    IMNSHO, trace flag usage should be reserved for addressing known, demonstrated problems that the trace flag is known to address. I do not recommend them for prophylactic purposes.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Multi Instances

    But again, unless there is a very specific reason to do so, performance is often better with all of the databases in one instance. SQL 2008 (EE anyway) will...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Multi Instances

    I would like to ask what you reasoning/justification is for having 5 instances on the same server. I can think of a number of reasons to NOT do this.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Implemetation of Large SQL Server DB(550 GB) on Blade/SAN

    What you really need (and just like I and others told you on the public forums) is to hire a professional to assist you with the setup and configuration and...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Error when trying to schedule Maintenance Plan

    NOTE: SP2 original release has SIGNIFICANT issues with maintenance plans. Please make sure you apply the GDR2 fix to get to a workable system. Actually you may...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Help with trigger performance

    My recommendation is that you tell us, in detail and preferably with sample data and expected output, EXACTLY what the objective of this trigger is. Then we can help...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

Viewing 15 posts - 5,041 through 5,055 (of 5,841 total)