Is it posible to replicate or copy the stored procedure easy from one SQL Server to an other?
A:
yes, you can Data Transformation services to export/import the stored procedure. or you can copy the syntax and execute it again on the other server
Wael Dalloul
2009-09-10 11:19:20
+1
A:
yes you can do this : http://blog.sqlauthority.com/2009/07/29/sql-server-2008-copy-database-with-data-generate-t-sql-for-inserting-data-from-one-table-to-another-table/
Hope this will help you :)
anishmarokey
2009-09-10 11:20:39
Thanks, that's a good way to bulk-copy all the sprocs/functions.
btk
2010-05-06 12:00:31
+1
A:
There are many ways of doing this as mentioned in this excellent article -
- Native replication features;
- Log shipping;
- Manual deployments, and;
- Automated deployments and synchronization.
You'll need to create an account on the site, alternatively you can use username/passwords provided by bugmenot.
Kirtan
2009-09-10 11:24:19