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 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