查看生产环境数据库有哪些表的自增列值可能超过INT的最大值,还剩余多少量

 

SELECT B.NAME table_name, A.NAME AS column_name, d.name AS data_type, C.rowcnt, IDENT_CURRENT(B.NAME) AS IDENT_CURR, POWER(CAST(2 AS BIGINT),31)-1-IDENT_CURRENT(B.NAME) AS remaining,1.*IDENT_CURRENT(B.NAME)/(POWER(CAST(2 AS BIGINT),31)-1) AS usage_rate
FROM sys.columns a
JOIN sys.types d ON a.system_type_id = d.system_type_id
JOIN sys.objects b ON A.object_id = B.object_id
JOIN sys.sysindexes c ON c.id = b.object_id AND c.indid IN (0,1)
WHERE is_identity = 1
AND d.name='int'
ORDER BY IDENT_CURR DESC 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-24
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-31
  • 2021-11-20
  • 2021-07-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-20
相关资源
相似解决方案