Forum Replies Created

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

  • RE: Finding Table Space

    Hi,

    That is a real good solution for calculating table space. However all these days i was using following script:

    SET NOCOUNT ON
    GO
    IF OBJECT_ID('TEMPDB..#TMP_TBL_FOR_SPACEUSED') IS NOT NULL DROP TABLE #TMP_TBL_FOR_SPACEUSED
    GO
    CREATE TABLE #TMP_TBL_FOR_SPACEUSED...
  • RE: Outer Join Mystery

    This was really good one. Request you to simplify naming convention and data taken in future articles.

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