1

I am using sql server 2005 and i want to transfer my all stored procedures and functions to another newly created database. How i can do this by writing one stored procedure. Can any one tell me help me regarding this?

Raghuveera
  • 320
  • 3
  • 9
  • 27
  • Not sure if this is could help: http://stackoverflow.com/questions/945325/syncing-stored-procedures-between-two-databases?rq=1 – Mad Dog Tannen Oct 28 '13 at 10:40

1 Answers1

0

You can use generate script feature and run it on another database. Right click on your database --> tasks--> generate script choose your objects and get the scrip then run it on the other database.

Amir Keshavarz
  • 3,050
  • 1
  • 19
  • 26