Události
SQL ve společnosti FabCon Vegas
31. 3. 23 - 2. 4. 23
Největší událost učení SQL, Fabric a Power BI. 31. března – 2. dubna. Pomocí kódu FABINSIDER uložte $400.
Zaregistrovat se ještě dnesTento prohlížeč se už nepodporuje.
Upgradujte na Microsoft Edge, abyste mohli využívat nejnovější funkce, aktualizace zabezpečení a technickou podporu.
Applies to:
SQL Server
Deletes information about the specified database from the backup and restore history tables.
Transact-SQL syntax conventions
sp_delete_database_backuphistory [ @database_name = ] N'database_name'
[ ; ]
Specifies the name of the database involved in backup and restore operations. @database_name is sysname, with no default.
0
(success) or 1
(failure).
None.
sp_delete_database_backuphistory
must be run from the msdb
database.
This stored procedure affects the following tables:
You can grant EXECUTE
permissions on this procedure, but these permissions might be overridden during a SQL Server upgrade.
The following example deletes all entries for the AdventureWorks2022
database in the backup-and-restore history tables.
USE msdb;
GO
EXEC sp_delete_database_backuphistory
@database_name = 'AdventureWorks2022';
Události
SQL ve společnosti FabCon Vegas
31. 3. 23 - 2. 4. 23
Největší událost učení SQL, Fabric a Power BI. 31. března – 2. dubna. Pomocí kódu FABINSIDER uložte $400.
Zaregistrovat se ještě dnes