C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




Using SYSOBJECTS : Get Table Schema


Posted Date: 16 Sep 2008    Resource Type: Code Snippets    Category: SQL

Posted By: Geetha       Member Level: Gold
Rating:     Points: 10



The below piece of script will help you to get the schema details about the tables present in a particular data base.

To Check whether a particular table exists in that data base or not:


USE MASTER
IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME= N'EMP' AND type = 'U')
SELECT 'True'
ELSE
SELECT 'False'




To get the full details about the columns present in that data base :


USE MASTER
SELECT * FROM information_schema.columns



To get the full details about the columns present in a particular table in that data base :


USE MASTER
SELECT * FROM information_schema.columns WHERE table_name = 'emp'



To get the full details about a particular columns present in a particular table in that data base :



USE MASTER
SELECT * FROM information_schema.columns WHERE table_name = 'emp' and column_name = 'RecDateTime'






Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sysobjects:schema  .  

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Making your SQL string synatx friendly
Previous Resource: How to write a Function in SQL Server
Return to Discussion Resource Index
Post New Resource
Category: SQL


Post resources and earn money!
 
Related Resources



dotNet Slackers   BizTalk Adaptors    Web Design

silicone halloween masks

Contact Us    Privacy Policy    Terms Of Use