Viewing 6 posts - 16 through 21 (of 21 total)
I have read both your articles. second one is more useful for me. Will be waiting for future articles from you.
Thank you.
July 17, 2006 at 9:08 am
Good article! Could learn some new things.
July 17, 2006 at 7:18 am
You got me there!
Yes, Celko is referring to primary keys.
That was my favorite...
May 31, 2006 at 6:19 am
Good article! very informative. Thank you.
Explanation was very clear. neat examples.
May 17, 2006 at 9:12 am
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...
April 19, 2006 at 7:32 am
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...
March 23, 2006 at 5:49 am
Viewing 6 posts - 16 through 21 (of 21 total)