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.
| Author |
Topic |
|
Chagh
Starting Member
2 Posts |
Posted - 2004-10-24 : 04:51:33
|
| Hi all,I want to extract constraints within the views definition.for example in such a view definition query: " create view student_view as select stdid, stdname from student_table where stdid > 675; "how can i extract (stdid > 675) from any tables or views in Sql server 2000? (I don't like to parse "create view ..." query!)-thanks in advance |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2004-10-24 : 14:33:15
|
| Only by looking at syscomments or using sp_helptext.==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
|
|
|