Forum Replies Created

Viewing 15 posts - 271 through 285 (of 405 total)

  • RE: sql memory usage issue

    Set up a trace and identify any query that hurts performance

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DB shrink and backup error in sql2008

    Did you execute CheckDB as Gail suggested?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Query Analyster Issue

    Does it open in management studio? are being able to execute the script?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Query Analyster Issue

    binu

    May be your account does not have appropriate permission.

    Also can be a corrupt installation.

    Create a .sql file using notepad and try double click it to open. Are you able to...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DB shrink and backup error in sql2008

    Micheal,

    Do you see any additional message in the error log?

    How do you take backup? Gui/T SQL? Local or network?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Issues with performance counter

    Please look at the link.

    http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/12/02/missing-perfmon-counters-using-64-bit-windows-mmc-32-perfmon-msc.aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Error 100 while running full backup in maintenance plan

    webrunner (12/3/2009)


    Hello,

    What is strange is that the database backup files are in their correct locations. So it looks like the backups completed successfully. Yet the error has me uneasy that...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: help add column of repeating numbers 123412341234

    Tim Wilson-Brown (12/3/2009)


    The big question is - what happens when there are 5 salespeople?

    Tim, what you suggested will work for 5 people also, I think.

    Declare @rank_test table

    (

    id int identity(1,1),

    data...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Performance optimization on huge data

    500000 records is not a big table.

    1) What is your configuration.

    2) Please post the query and its execution plan to see if any indexes can help

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: help add column of repeating numbers 123412341234

    This may not be optimal, but might help you

    Declare @rank_test table

    (

    id int identity(1,1),

    data varchar(250),

    sales_man int null

    )

    insert into @rank_test(data)

    select top 60 name from syscolumns

    -- For the first salesman

    update @rank_test...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: High cpu

    What about the table that the procedure reads from? Does it change frequently? Some times when data changes enormously, the statistics becomes stale, the execution plan also becomes less suitable.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Partition OF MDF File

    I copying is the problem, you can take a striped backup. Though its not advisable for regular backup plans (I corrupt file make whole set useless),

    you can use this for...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Log File is MASSIVE

    Log backups will not reduce the size of the log file. It will only clear the file so that it can be reused

    Run DBCC SQLPERF('LOGSPACE')

    You will see the percentage used

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: how to disable windows authentication in sql server 2005 Active active cluster

    Ajay,

    What others are telling is right. If you are just looking at the possibility its fine. But you have plan to do it right out on a production database, I...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Null question

    http://technet.microsoft.com/en-us/library/ms176056(SQL.90).aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 271 through 285 (of 405 total)