viernes, 4 de mayo de 2018

Listar las tablas y las columnas identity de una base de datos sql server

Posted by InfoTacticas Soluciones  |  No comments

Cuando necesitamos saber cuáles tablas de una base de datos tienen campos identity y cuáles son esos campos, podemos usar el siguiente script:

--
--
SELECT
distinct TABLE_SCHEMA,TABLE_NAME,COLUMN_Name
FROM INFORMATION_SCHEMA.COLUMNS,
sys.Objects so
WHERE
--TABLE_SCHEMA = 'dbo' and
 COLUMNPROPERTY(object_id(TABLE_NAME), COLUMN_NAME, 'IsIdentity') = 1 and
so.Type = 'U' 
ORDER BY TABLE_NAME

5/04/2018 02:30:00 p. m. Share:

0 comentarios:

Get updates in your email box
Complete the form below, and we'll send you the best coupons.

Deliver via FeedBurner
back to top