About 50 results
Open links in new tab
  1. sql server - Get last full backup and transaction log backup for each ...

    Jan 14, 2015 · 23 How to write script or a query that will display the last full backup and the last log backup for each database on each of the production servers using the system table "backupset" and …

  2. How to query last restore date in SQL Server?

    Jan 28, 2013 · Is there a T-SQL query that shows the last restore datetime for a certain database? Hi, I have generated the below script which can give you much more detailed information about your query.

  3. sql server - T-SQL query for date of last full backup, size and ...

    Sep 21, 2016 · 3 I'm using the below T-SQL query to determine the date of the last full database backup and also return the size and location of the backup file. My problem is that it won't return any data at …

  4. How can I take backup of particular tables in SQL Server 2008 using T ...

    Dec 15, 2017 · I want to take a backup of particular tables available in my database in a .bak file, and all these should be done using a T-SQL script.

  5. Backup SQL Server databases in Parallel using Ola Hallengren script

    Dec 11, 2024 · In , Ola Hallengren explained that: You need to create multiple jobs with the same parameters, and add @DatabasesInParallel = 'Y'. The jobs will then work together in processing the …

  6. sql server - Setting BUFFERCOUNT, BLOCKSIZE, and …

    Feb 6, 2016 · How It Works: SQL Server Backup Buffer Exchange (a VDI Focus) SQL Backup tuning large databases SQL Server Memory for Backup Buffer A Case Study: Fast and Reliable Backup …

  7. SQL Server BACKUP FULL by variables

    May 26, 2023 · I’m trying to generate a full backup by variables in SQL Server The script I’m using is as follows declare @fecha varchar(50) declare @query varchar(500) declare @dbname varchar(500); …

  8. Taking backup of all the databases in SQL Server

    May 31, 2013 · 21 I have a Microsoft SQL Server 2005 DB server. In the DB server, I have around 250 user databases. I have to take a back up of all these databases. Since, manually taking backup …

  9. Command line tool / script to backup a remote SQL Server database to ...

    Jul 21, 2018 · I'm looking for a command line tool or a script (running under windows) that can backup a remote SQL Server to a local file (.sql, SQL Server backup, even CSV, all formats are acceptable).

  10. sql server - How do I restore multiple transaction log backups after ...

    Jul 26, 2022 · These transaction log backup's are created through an agent job in SQL Server. I have transaction logs from the previous day and well into the week. Ideally I would like to be able to script …