skip to main
|
skip to sidebar
YourDotNetSolution
Technical bits for me and anyone else who wants to listen.
Tuesday, April 22, 2008
How to retrieve a list of column names for a specific table in MS SQL Server.
One way:
sp_columns 'table name'
Another way:
SELECT * FROM INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = 'MyTable'
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Blog Archive
►
2010
(1)
►
January
(1)
IE 6 adds anchor tags to request value
▼
2008
(12)
►
December
(2)
SQL Loop
Search all fields in a table
►
September
(1)
Report server report viewer 404 - File or director...
►
July
(2)
How to pass windows authentication when serving a ...
How to enable Asp.NET security tables for a databa...
►
June
(1)
How to query a list in sharepoint
►
May
(1)
How to disable or enable all foreign key constrain...
▼
April
(2)
How to Export and Import MySQL database
How to retrieve a list of column names for a speci...
►
March
(3)
Asp.NET Web Development Process
jQuery - The Basics This is a basic tutorial, des...
Name Code Number Code Glyph Description...
►
2007
(10)
►
November
(9)
Reader Helper Class in C#
Sorting and Grouping with the Asp.Net GridView con...
Here is an example of how you can sort and group a...
Example of how to compare two objects for sorting....
How to collect post data and then send it to a rem...
How to show line breaks in an asp.net label.
How to retrieve a page content with Asp.NET
Searching with the WSSListProvider for Sharepoint
How to show an asp.net User Control on a Sharepoin...
►
October
(1)
Stored Procedure to gain exclusive access to a dat...
0 comments:
Post a Comment