Je veux exécuter un rapport de diagnostic sur notre serveur de base de données SQL Server 2008. Je suis en boucle à travers toutes les bases de données, puis pour chaque base de données, je veux regarder chaque table. Mais, quand je vais regarder chaque table (avec tbl_cursor
), il prend toujours les tables dans la base de données 'master'
.SQL Server: Pouvez-vous m'aider avec cette requête?
Je pense qu'il est à cause de ma sélection tbl_cursor
:
SELECT table_name FROM information_schema.tables WHERE table_type = 'base table'
Comment puis-je résoudre ce problème?
Voici le code complet:
SET NOCOUNT ON
DECLARE @table_count INT
DECLARE @db_cursor VARCHAR(100)
DECLARE database_cursor CURSOR FOR
SELECT name FROM sys.databases where name<>N'master'
OPEN database_cursor
FETCH NEXT FROM database_cursor INTO @db_cursor
WHILE @@Fetch_status = 0
BEGIN
PRINT @db_cursor
SET @table_count = 0
DECLARE @table_cursor VARCHAR(100)
DECLARE tbl_cursor CURSOR FOR
SELECT table_name FROM information_schema.tables WHERE table_type = 'base table'
OPEN tbl_cursor
FETCH NEXT FROM tbl_cursor INTO @table_cursor
WHILE @@Fetch_status = 0
BEGIN
DECLARE @table_cmd NVARCHAR(255)
SET @table_cmd = N'IF NOT EXISTS(SELECT TOP(1) * FROM ' + @table_cursor + ') PRINT N'' Table ''''' + @table_cursor + ''''' is empty'' '
--PRINT @table_cmd --debug
EXEC sp_executesql @table_cmd
SET @table_count = @table_count + 1
FETCH NEXT FROM tbl_cursor INTO @table_cursor
END
CLOSE tbl_cursor
DEALLOCATE tbl_cursor
PRINT @db_cursor + N' Total Tables : ' + CAST(@table_count as varchar(2))
PRINT N'' -- print another blank line
SET @table_count = 0
FETCH NEXT FROM database_cursor INTO @db_cursor
END
CLOSE database_cursor
DEALLOCATE database_cursor
SET NOCOUNT OFF
@rib: il n'y a pas de "MS SQL". Le produit s'appelle "SQL Server". "MS SQL" peut être confondu avec "MySQL" trop facilement. –