Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: Audit quesiton.

    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...

  • RE: Finding Field dependencies within all tables of a SQL Database

    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...

  • RE: delete without transaction

    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...

  • RE: delete without transaction

    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...

  • RE: Question of the Day for 02 Mar 2004

    Have to make my first post by putting in my 2c that the one line answer is the one in BOL...

     --N.O.

Viewing 5 posts - 1 through 5 (of 5 total)