Forum Replies Created

Viewing 6 posts - 16 through 21 (of 21 total)

  • RE: Analyzing Memory Requirements for SQL Server

    I have read both your articles. second one is more useful for me. Will be waiting for future articles from you.

    Thank you.

     

     

     

  • RE: Analyzing Memory Requirements for SQL Server

    Good article! Could learn some new things.

  • RE: Foreign Keys

    You got me there!

    Yes, Celko is referring to primary keys.

     

    That was my favorite...

  • RE: Bookmark Lookups

    Good article! very informative. Thank you.

    Explanation was very clear. neat examples.

     

  • RE: Customer Database Update A Practical Solution

    Excellent article by Serhiy Snisarenko !!

    I was looking for a such an automation script for some time. Liked the first part of the article and learned some good DOS...

  • RE: An Identity Crisis

    I use the following script to get the tables having identity values....

    SELECT table_name

          ,column_name

          ,IDENT_CURRENT(table_name) as Identity_value

          ,data_type

     FROM information_schema.columns

    WHERE COLUMNPROPERTY(OBJECT_ID(table_name),column_name,'IsIdentity')=1

    ORDER BY table_name

    Why bother with system tables, when you can...

Viewing 6 posts - 16 through 21 (of 21 total)