Forum Replies Created

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

  • RE: The Cost of Storage

    Cost for cheap SAN storage where I work is £3,000 per TB ($4,500 USD) and £10,000 per TB ($16,000 USD) for the 5 year TCO. As you can imagine every...

  • RE: SAN LUN shared storage questions/discussion

    I have been using databases on large SAN's for about 15 years. A well managed SAN should not need DBA's to micro manage for hot storage. Typically I request LUN's...

  • RE: Count of Objects by Database on a Server

    My first thought was to try to use sp_foreachdb

    CREATE TABLE #databases(DbName SYSNAME, DbSize BIGINT, Remarks NVARCHAR(100))

    INSERT INTO #databases EXEC SP_DATABASES

    ALTER TABLE #databases ADD ObjectCount INT

    EXEC SP_MSFOREACHDB

    'USE [?] ;

    UPDATE #databases...

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