% @ Language=VBScript %> <%' Option Explicit %> <% 'DB Info MOD created by Michael Baumann for Web Wiz Forums 7.x 'Web Wiz Forums are Copyrighted by Bruce Corkhill 'Checking to see if SQL Server is being used, if no....boot him out. If strDatabaseType = "SQLServer" Then strSQL = "EXECUTE " & strDbProc & "DBinfo" Else 'Clean up Set rsCommon = Nothing adoCon.Close Set adoCon = Nothing Response.Write "This page only works on SQL Server but your Database Type is set to Access" Response.End End If 'Getting in the results from the SProc rsCommon.Open strSQL, adoCon While Not rsCommon.EOF Databasesize = rsCommon("Databasesize") DataLocation = rsCommon("DataLocation") LogLocation = rsCommon("LogLocation") DatabaseFileSize = rsCommon("DatabaseFileSize") LogFileSize = rsCommon("LogFileSize") MaxDBSize = rsCommon("MaxDBSize") MaxLogSize = rsCommon("MazLogSize") Edition = rsCommon("Edition") Cluster = rsCommon("Cluster") Licensing = rsCommon("Licensing") PLevel = rsCommon("PLevel") rsCommon.MoveNext Wend rsCommon.Close %>
SQL Server Database Information
Return to the the Administration Menu
|