Forum Replies Created

Viewing 15 posts - 361 through 375 (of 405 total)

  • RE: MS SQL 2005 Standard Database freezing under high workload

    This can be due to any reason. Why don't you check for blocking to begin with.

    select * from sysprocesses where blocked0

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

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

  • RE: TABLESAMPLE

    Table sample returns random set of rows. There is no guarantee for the number of records returned. It can be used for sampling

    While top will give you the same set...

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

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

  • RE: xp_cmdshell

    Only in 2005 its disabled by default for security reasons.

    In 2000 you need to have sysadmin fixed role to use it.

    Pls see the below link

    http://msdn.microsoft.com/en-us/library/aa260689(SQL.80).aspx

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

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

  • RE: Automate drive space monitoring for all production servers

    Thanks pklotka. But I would stick to the table. It gives me control over which all servers to check among my long list of linked servers. Thank you for the...

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

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

  • RE: PUBLIC role defaults to SELECT!?

    http://social.msdn.microsoft.com/Forums/en-US/sqlsecurity/thread/a7e6bcea-a593-4e29-939e-e76fe87dfce3

    Please see the above link can help.

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

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

  • RE: How to Send Tabular Data into mail body???

    I have achieved the same using cursor. But sure of course there might be an easier way.

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

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

  • RE: Error 1105: Insufficient Data Disk Space

    Did you check your error log/event log for timeouts or any other errors?

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

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

  • RE: Error 1105: Insufficient Data Disk Space

    Have you tried manually growing the file?

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

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

  • RE: Database Mail & Useful Alerts

    Configure alerts for every errors with severity greater than 17- to start with

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

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

  • RE: not getting program_name in sys.sysprocesses table

    Ravish,

    I think you should put it in the connection string

    http://www.sqlservercentral.com/articles/Administration/worstpracticebadconnectionstringsandbadinfoinsyspr/802/

    (I am not sure this is what you are looking for)

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

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

  • RE: I/O warnings in SQL Server 2005

    Thanks Tim.

    I was wondering how it just stopped after restart.

    My tempdb is pre - sized. I think the messages might have started after it filled the initial size. ...

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

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

  • RE: I/O warnings in SQL Server 2005

    Thank you all for your help.

    But now the main cause of concern is no more there. I no longer get the IO warnings after a fail over. I think...

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

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

  • RE: How can we retrieve the deleted data from

    Kailash,

    If you are looking for a kind of undo ctrl+Z for committed data, its not there in SQL Server

    You can get the data back provided you are taking regular backups,...

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

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

  • RE: application hangs

    Yes try to give more info if possible.

    By the way if you need something to start with, Use activity monitor for blocking, use system monitor and sql profiler to...

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

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

  • RE: Tables

    Yes the best place to do this is crystal reports. You can use grouping in crystal reports based on tenants. And the repeated column can be placed in detail section.

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

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

Viewing 15 posts - 361 through 375 (of 405 total)