Is there any way that I can copy all the data and database tables (and other objects) from one server table to other server?
To make those things as automated. so that e
You could:
You could also try out ApexSQL Script, a database migration tool, to script objects and data from one instance and execute it on another instance.
Also you can use ApexSQL Diff and ApexSQL Data Diff, SQL schema and data compare tools, to copy structure and data from a source to destination.
Disclaimer: I work for ApexSQL
Hope this helps
You can use SSIS import and export to do that. It asks for the source server name, source dbName and Destination server name, destination dbName.
OR
you can use the back-up and restore process.
But I always prefer SSIS.
I suggest you to take a look at "Visual Studio 2010 SQL Server Database Project". It provides you with great features to manage database team work. It allows you to create a local database and import the production database into the local database. From now on, you and your team can work on local database and when you are ready to deploy your changes to production database, Visual Studio 2010 synchronizes the local database with production database, So the production database will get the latest changes.
Alright, I found it, completely in visual studio. This can be from local (.mdf) files to server files and visa versa.
At this point, you will be able to kind of 'mirror' the source database with the target database. For instance: If you have added more records to the Target database then there are in the source database, then these records will be deleted once you click Update Target Take a close look at what will happen when you hit that button!
Unfortunately, after writing this, I found out that this is only available in VS Ultimate and Premium, that is what they say on the following link about visual studio 2010, I have tested this in Visual Studio 2015 Enterprise. MSDN: https://msdn.microsoft.com/en-us/library/aa833428(v=vs.100).aspx
you can create a DTS job to copy database and its contents on timely basis.
http://msdn.microsoft.com/en-us/library/cc917688.aspx