You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,3 +12,10 @@ There are two files that make up this project.
12
12
The first is [Schema.sql](https://github.com/Fortee2/SQL-Serer-Database-Copy/tree/master/ExtractDB/Schema.sql) in the ExtractDB folder. This script extracts the schema information from your source database using the SQL Server system table and generates the necessary create statements.
13
13
14
14
The second file is a Powershell script, [CopyDatabase.ps1](https://github.com/Fortee2/SQL-Serer-Database-Copy/tree/master/Powershell/CopyDatabase.ps1), that executes Schema.sql against the source database and take the output and applies it to a destination database. The CopyDatabase script also includes calls to the Bulk Copy tool, BCP, to transfer data after the table structure has been created.
15
+
16
+
## Version 2019年08月10日
17
+
* Fixed - Adds brackets around column names when generating table create statements.
18
+
* Adds Foreign Key Constraints.
19
+
* Adds support User Defined Table Types.
20
+
* Orders Functions, Procedures, and Views by create date to attempt to create parent objects before dependent objects.
21
+
* Increased max characters in powershell script to 150,000 characters to accommodate large scripts.
0 commit comments