Afficher la taille d’une table SQL en Transact SQL

Leçon n°1 : Partager cet article pour aider SysKB à se développer

Pour afficher la taille allouée à une table d’une base SQL Server …

  • Aller dans Entreprise manager
  • Ouvrez l’analyseur de requête
  • Exécuter la requête suivante :
USE Nom_Database;
GO
EXEC sp_spaceused N'Nom_Table';
GO

Partagez cet article avec vos amis

Vous avez aimé cet article ? Partagez le avec vos amis en cliquant sur les boutons ci-dessous:

  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server
  • Afficher la taille dune table SQL en Transact SQL kb  transact taille Microsoft SQL Server

  • Marc

    Thank’s