Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

pregress/SqlServerBulkCopyTool

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SqlServerBulkCopyTool

🚄 Command line tool, to bulk copy data between a source an destination SQL server.

When you need to move data between 2 SQL server instances you can do this with SqlBulkCopy. These tool eliminates the coding and allows for passing in the arguments to copy the data between the 2 servers.

CI Release

You can download the single exe from the release page

Arguments

Argument Description Required Default
source-connectionstring The connection string of the source database. yes
source-query The tSQL query to retrieve data from the source database. yes
destination-connectionstring The connection string of the destination database. yes
destination-tablename The name of the table in the destination database where the data is inserted. yes
bulk-insert-timeout A timeout in seconds to execute the bulk insert. no 60
bulk-copy-options The SqlBulkCopyOptions as provided by Microsoft. no Default

Examples

Bulk copy from localhost to a remote sql server with integrated security

SqlServerBulkCopyTool.exe --source-connectionstring "Server=localhost;Database=TestDb;Integrated Security=SSPI;" --source-query "SELECT * FROM MySourceTable" --destination-connectionstring "Server=tcp:remote.sample-server.com,1433;Database=TestDb;Integrated Security=SSPI;" --destination-tablename "MyDestinationTable"

Bulk copy from localhost to a remote sql server with bulk copy options: TableLock and CheckConstrains

Executes the bulk copy with table lock and check constraints.

SqlServerBulkCopyTool.exe --source-connectionstring "Server=localhost;Database=TestDb;Integrated Security=SSPI;" --source-query "SELECT * FROM MySourceTable" --destination-connectionstring "Server=tcp:remote.sample-server.com,1433;Database=TestDb;Integrated Security=SSPI;" --destination-tablename "MyDestinationTable" --bulk-copy-options TableLock,CheckConstraints

❌ Known limitations

  • Table definition between the 2 instances/databases should be the same.
  • There is no error handling, assuming the user can understand the exceptions.

About

Command line tool, to copy data between a source an destination SQL server.

Topics

Resources

License

Stars

Watchers

Forks

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.