DataJuggler.SQLSnapshot 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package DataJuggler.SQLSnapshot --version 1.0.5
NuGet\Install-Package DataJuggler.SQLSnapshot -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DataJuggler.SQLSnapshot" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DataJuggler.SQLSnapshot --version 1.0.5
#r "nuget: DataJuggler.SQLSnapshot, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DataJuggler.SQLSnapshot as a Cake Addin
#addin nuget:?package=DataJuggler.SQLSnapshot&version=1.0.5

// Install DataJuggler.SQLSnapshot as a Cake Tool
#tool nuget:?package=DataJuggler.SQLSnapshot&version=1.0.5

SQLSnapshot

DataJuggler.SQLSnapshot allows you to export a snapshot of a SQL Server database including all data rows to Excel with a few lines of code (could be written as one if we were charged by the line).

Video<br> https://youtu.be/dOA_8EJ_xWA

<img src=https://github.com/DataJuggler/SharedRepo/blob/master/Shared/Images/SQLSnapshot.png width=540 height=360>

Pass in a connectionstring and a path to save.

using DataJuggler.SQLSnapshot;

// Set a connectionstring - make sure to include Encrypt=False as shown below
string connectionString = @"Data Source=ServerName\SQLExpress;Initial Catalog=DataJuggler;Integrated Security=True;Encrypt=False;";

// Set the export path
string exportPath = @"c:\Temp\DataJugglerExport.xlsx";

// export the result (one line of code. Is this useful, let me know by starring this project please).
SQLExportResult result = SQLExcelBridge.ExportSnapshot(connectionString, exportPath);

The file name for the Excel file will be saved and combined with a partial guid, so it will be unique in a folder.

Future updates and features may include:

  1. Ability to only write changes since last snapshot
  2. Export database schema
  3. Consolidate data to update a Test or Dev server with production data
  4. Pass in a list of tables and / or fields to exclude

The reason I created this project is SQL Backups are great for data protection, however this requires restoring the entire database to lookup values. There are also times I need to discover when data changed to help determine when a new bug was introduced.

If you have any problems, please create an issue and welcome any feedback as to if you think this project is valuable. I am considering building a Windows Service to create a commercial product out of this with more robust features.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0 221 11/17/2023
1.1.2 138 8/14/2023
1.1.1 124 7/24/2023
1.1.0 117 7/17/2023
1.0.11 145 4/10/2023
1.0.10 152 4/10/2023
1.0.9 157 4/5/2023
1.0.8 165 4/5/2023
1.0.7 169 4/2/2023
1.0.6 172 4/2/2023
1.0.5 172 4/2/2023
1.0.4 178 4/1/2023
1.0.2 187 3/28/2023
1.0.1 170 3/28/2023
1.0.0 191 3/28/2023

This project combines two of my Nuget packages, DataJuggler.Net7 for database schema reading
and DataJuggler.Excelerate for Excel exporting.

Here is an 18 minute video to show 3 lines of code. Will remake a new video soon.
https://youtu.be/dOA_8EJ_xWA

Updates 4.2.2023 v1.0.5:
DataJuggler.Excelerate was updated and I am attempting to set date columns as Dates in Excel.

Hopefull this works. Will update this once I test.