Viewing 5 posts - 1 through 5 (of 5 total)
Interesting that you posted this question today because I'd just been answering the same question here at work yesterday. There are numerous scripts on this site that will give you...
July 13, 2004 at 7:27 am
I've used this for a quick find of like columns:
select
CAST(so.name AS char(25)) 'Table Name',
sc.name 'Column Name'
from
syscolumns as sc
INNER JOIN sysobjects as so
ON sc.id = so.id
where
sc.name like 'site%'
and
so.type...
March 16, 2004 at 10:23 am
Thanks, noeld. I appreciate the input and alternate suggestions. I knew the difference in the two. I just don't understand why truncate would throw a FK error message and delete didn't. On...
March 4, 2004 at 12:34 pm
I agree that No is the answer to your question, however I wanted to see if anyone could give me a clue as to why a
Delete tablename
works and a...
March 4, 2004 at 11:15 am
Have to make my first post by putting in my 2c that the one line answer is the one in BOL...
--N.O.
March 2, 2004 at 8:39 am
Viewing 5 posts - 1 through 5 (of 5 total)