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 |
|
dlh
Starting Member
28 Posts |
Posted - 2010-03-05 : 16:37:30
|
| I have a column of filenames. Is there a T-SQL way to generate a Boolean column which tells whether or not the corresponding files actually exist? |
|
|
SreenivasBora
Posting Yak Master
164 Posts |
Posted - 2010-03-05 : 16:43:55
|
| Use CASE Statement to write a QueryWith RegardsSR |
 |
|
|
Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)
7020 Posts |
|
|
dlh
Starting Member
28 Posts |
Posted - 2010-03-05 : 18:42:06
|
| Thank you, Michael. I had been trying to do it without creating a function. That makes it much easier. |
 |
|
|
|
|
|