Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Display Database Objects

Author  Topic 

infodemers
Posting Yak Master

183 Posts

Posted - 2009-03-03 : 20:58:24
Hi everyone,

Could someone tell me how I could display my database objects in a web page with the following details.

Quick Links
Description Object Types Properties Files
Description

Document Author
Created
June 12, 2008

Object Types
  • Tables
  • Views
  • Stored Procedures

  • Table-valued Functions
  • Scalar-valued Functions

Properties
Property Value
SQL Server Version SQL Server 2005
Compatability Level SQL Server 2005

Files
Name File Group Size File Name
MYBase PRIMARY 11.59 GB g:\mssql.2\mssql\data\MYBase .mdf
MYBase _log 10.31 GB h:\mssql.2\mssql\data\MYBase _log.ldf
MYBase _Archive_Readonly Historical_Readonly 20.79 GB I:\MYBase \Database_ArchiveFileGroup\MYBase _Archive_Readonly.ndf

Thanks!

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-03-04 : 00:41:29
Are you asking us to write the web application for you?

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

subhash chandra
Starting Member

40 Posts

Posted - 2009-03-04 : 14:24:52
You are just placing the query result from sys.databases, sys.objects and objectproperty function in your custom interface.
Using the SSRS serive, such web pages can easily be created. I suppose SSRS has more user friendly tools like Report builder that makes much easy to display query data on web pages.
Go to Top of Page

infodemers
Posting Yak Master

183 Posts

Posted - 2009-03-10 : 10:34:17
I thank you very much Subhash! I will give it a try.
quote:
Originally posted by subhash chandra

You are just placing the query result from sys.databases, sys.objects and objectproperty function in your custom interface.
Using the SSRS serive, such web pages can easily be created. I suppose SSRS has more user friendly tools like Report builder that makes much easy to display query data on web pages.

Go to Top of Page
   

- Advertisement -