-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSqlDataComparison.nuspec
51 lines (45 loc) · 1.96 KB
/
SqlDataComparison.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<package>
<metadata>
<id>SqlUtils.SqlDataComparison</id>
<version>0.0.0</version>
<authors>Mike Beaton</authors>
<owners>Mike Beaton</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Pure SQL data comparison and reconciliation utility for SQL Server
Example usage:
* EXEC sp_CompareData 'MyTable', 'RemoteDb..TheirTable'
* EXEC sp_ExportAll 'MyTable', 'RemoteDb..TheirTable'
* EXEC sp_ExportDeleted 'MyTable', 'RemoteDb..TheirTable'
* EXEC sp_ImportChanged 'MyTable', 'RemoteDb..TheirTable', @ids = '43-44'
Supports:
* Column name remapping
* Columns filter
* Automatic primary key based or manual join columns spec
* And more...
</description>
<tags>SQL Server;SQL;compare data;data comparison</tags>
<copyright>Copyright (c) 2020 Mike Beaton</copyright>
<projectUrl>https://github.com/SqlUtils/SqlDataComparison</projectUrl>
<license type="expression">MIT</license>
<icon>logo\logo_128x128.png</icon>
<contentFiles>
<!-- new style projects -->
<files include="**/SqlDataComparison/*.*" buildAction="None" />
</contentFiles>
</metadata>
<files>
<!-- new style projects -->
<file src="build\Install.sql" target="contentFiles\any\any\SqlDataComparison" />
<file src="build\InstallMaster.sql" target="contentFiles\any\any\SqlDataComparison" />
<file src="build\CleanMaster.sql" target="contentFiles\any\any\SqlDataComparison" />
<file src="build\README.txt" target="contentFiles\any\any\SqlDataComparison" />
<!-- old style projects -->
<file src="build\Install.sql" target="content\SqlDataComparison" />
<file src="build\InstallMaster.sql" target="content\SqlDataComparison" />
<file src="build\CleanMaster.sql" target="content\SqlDataComparison" />
<file src="build\README.txt" target="content\SqlDataComparison" />
<!-- logo -->
<file src="build\logo\logo_128x128.png" target="logo\logo_128x128.png" />
</files>
</package>