Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Number of records
Message
De
03/05/2011 12:41:49
 
 
À
03/05/2011 09:41:37
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Scripting
Versions des environnements
SQL Server:
SQL Server 2008
Application:
Web
Divers
Thread ID:
01509194
Message ID:
01509246
Vues:
35
for the reccount in all tables of a database, I use that view:
CREATE VIEW [dbo].[v_reccount]  AS 
SELECT        o.name                 AS NomTable ,
              ddps.row_count         AS Reccount
       FROM   sys.indexes            AS i
              INNER JOIN sys.objects AS o
              ON     i.object_id = o.object_id
              INNER JOIN sys.dm_db_partition_stats AS ddps
              ON     i.object_id = ddps.object_id
                 AND i.index_id  = ddps.index_id
       WHERE (
                     i.index_id < 2
              )
          AND (
                     o.is_ms_shipped = 0
              )
It relies on statistics, so you need to set the stats auto
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform