MS SQL Server
  Home arrow MS SQL Server arrow Page 3 - Retrieving SQL Server 2005 Database Info U...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Moblin 
JMSL Numerical Library 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MS SQL SERVER

Retrieving SQL Server 2005 Database Info Using SMO: Database Info, Table Info
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 11
    2006-02-07

    Table of Contents:
  • Retrieving SQL Server 2005 Database Info Using SMO: Database Info, Table Info
  • How do we retrieve basic info about all databases from a SQL Server instance using SMO?
  • How do we retrieve advanced info on all databases from a SQL Server instance using SMO?
  • How do we retrieve security info about all databases from a SQL Server instance using SMO?
  • How do we retrieve table information from a SQL Server database using SMO?

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Retrieving SQL Server 2005 Database Info Using SMO: Database Info, Table Info - How do we retrieve advanced info on all databases from a SQL Server instance using SMO?


    (Page 3 of 5 )

    Previous sections discussed dealing with only basic information (generally needed by programmers).  Now, in this section, I shall further extend what we are doing with some “advanced” information (generally needed by DBAs) related to every database.

    Before proceeding further, we again needed to define a new structure to hold the advanced database information.  Let us look into that.

    Public Function getStructDatabaseAdvanced() As DataTable
            Dim dt As New DataTable
            With dt.Columns
                .Add (New DataColumn ("Name"))
                .Add (New DataColumn ("Status"))
                .Add (New DataColumn ("PrimaryFilePath"))
                .Add (New DataColumn ("Size"))
                .Add (New DataColumn ("SpaceAvailable"))
                .Add (New DataColumn ("DataSpaceUsage"))
                .Add (New DataColumn ("ActiveConnections"))
                .Add (New DataColumn ("Assemblies"))
                .Add (New DataColumn ("DatabaseGuid"))
                .Add (New DataColumn ("ExtendedStoredProcedures"))
                .Add (New DataColumn ("FileGroups"))
                .Add (New DataColumn ("FullTextCatalogs"))
                .Add (New DataColumn ("LogFiles"))
                .Add (New DataColumn ("LastBackupDate"))
            End With
            Return dt
        End Function

    This is very similar to the one I defined in the first section.  Now, let us proceed with the code to retrieve the information.

    Dim svr As Server = New Server(".\sql2k5")
            Dim db As Database
            Dim dtReport As DataTable = util.getStructDatabaseAdvanced
            For Each db In svr.Databases
                Dim drReport As DataRow = dtReport.NewRow
                drReport ("Name") = db.Name
                drReport ("Status") = db.Status
                drReport ("PrimaryFilePath") = db.PrimaryFilePath
                drReport ("Size") = db.Size
                drReport ("SpaceAvailable") = db.SpaceAvailable
                drReport ("DataSpaceUsage") = db.DataSpaceUsage
                drReport ("ActiveConnections") = db.ActiveConnections
                drReport ("Assemblies") = db.Assemblies.Count
                drReport ("DatabaseGuid") = db.DatabaseGuid
                drReport ("ExtendedStoredProcedures") =
    db.ExtendedStoredProcedures.Count
                drReport ("FileGroups") = db.FileGroups.Count
                drReport ("FullTextCatalogs") = db.FullTextCatalogs.Count
                drReport ("LogFiles") = db.LogFiles.Count
                drReport ("LastBackupDate") = db.LastBackupDate
                dtReport.Rows.Add(drReport)
            Next
            Me.DataGridView1.DataSource = dtReport
        End Sub

    More MS SQL Server Articles
    More By Jagadish Chaterjee


       · Hello guys, another contribution on the latest SQL Server 2005 SMO. Any doubts,...
     

    MS SQL SERVER ARTICLES

    - Completing the Introduction to Transact-SQL
    - A Brief Introduction to Transact-SQL
    - Lookups and Blocking Bad Data
    - Field Validation Rules for Blocking Bad Data
    - Using Masks to Block Bad Data
    - Blocking Bad Data
    - Using @@ROWCOUNT and TABLE Variables for Dat...
    - How to Use Variables, IF and CASE in Databas...
    - Creating Important Aspects of Notification S...
    - Working wth Variables in Database Interactio...
    - Delving Deeper into Notification Services
    - Notification Services
    - Building a Multi-table Report with SQL 2005 ...
    - A Secure Way of Building Connection Strings
    - Transferring a Database Using the SSIS Desig...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT