Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: How to retrive Drive capacity in SQL Server

    Run this stored proc and you will get the desired results.. Its a script I pulled off the net..

     

    ====

     

     

    CREATE PROCEDURE sp_diskspace

    AS

    SET NOCOUNT ON

    DECLARE @hr int

    DECLARE @fso int

    DECLARE @drive...

  • RE: turning off logging in sql error logs

    well,  your answer was pretty close but not quite complete.. Messages such as "log backed up" are system messages and thus cannot be deleted from the "manage sql server messages"...

  • RE: Help! Index corrupting? DBCC CheckTable failing?

    Has any of the table definition(s) changed?

    what are the four indexes?

  • RE: No SqL Server on Machine

    Your question is very vague. Once you have connectivity to sql server (and data), depending on your app (ASP, JAVA, etc, etc..), feel free to invoke queries and...

  • RE: logging output result set

    Hi Steve, Appreciate your input. I am of the same opinion that over years of working with sql server, this was the first time I heard this...

  • RE: tempdb maintenance

    Usually when the SP finishes or the user connction terminates, the temp tables are all released. what you will have a pretty fragmented data file.. Unless, you have...

  • RE: tempdb maintenance

    Why isn't the SP cleaning behind itself.. That's the normal practice..

  • RE: Latch wait time

    My Bad , guys - please ignore this post.. I was running Profiler and that seemed to be inducing the big jump in the latch time counter... ...

  • RE: Sql internals

    Gracias, guys... Is there any way of specifying location of new column via sql analyzer (I meant T-sql)..? Via EM, you can just go insert it anywhere you...

  • RE: can u Alter a table (add a field)

    Hi - Something related to this query..

    what's sql internals for adding a column? Does sql server have to recreate the whole table? i.e., does the old table get...

  • RE: Alerts

    Also, since DBCC CHECKDB runs as a job, you should be able to check msdb..sysjobhistory for sql_severity and run_status flag(s)...

    Will that work Allen?

    Wize

Viewing 11 posts - 1 through 11 (of 11 total)