Link to home
Start Free TrialLog in
Avatar of kyo3eb
kyo3ebFlag for United States of America

asked on

Import Multiple Stored Procedures

Is there a way to import 50+ stored procedures from 1 database to another?

ASKER CERTIFIED SOLUTION
Avatar of SjoerdVerweij
SjoerdVerweij

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kyo3eb

ASKER

well, I've been trying for the past hour to do that but it keeps crashing, is there another way?
Avatar of SjoerdVerweij
SjoerdVerweij

Crashing how?

And yes, there's another way: right-click on the database in Enterprise Manager, All Tasks -> Generate SQL Scripts. Pick your procs, save it to a file, open that up in Query Analyzer, go to the destination database, run.
Avatar of kyo3eb

ASKER

well, not actually "crashing" per say, but when I click on "Select Object" nothing will happen, I've left it on for the past 30 minutes and still nothing, so I figured it crashed.
Avatar of kyo3eb

ASKER

ok, I have 2 problems

A) I tried using "Copy All Objects" and I get a failed to copy error

B) I can't use GENERATE SQL SCRIPT.. I get a ERROR 229: SELECT permission denied on object 'sysdatabases', database 'master', owner 'dbo'


Any other options before I start wasting time copying 1 by 1?

A) don't copy them all, just select the stored procedures
B) you have to be an administrator to do this
Avatar of kyo3eb

ASKER

Like I said before, I've tried selecting the objects but Enterprise manager crashes/stalls.
- Make sure to install SQL Server Service Pack 3a on both server and client
- What error do you get (if any)?
Avatar of kyo3eb

ASKER

the database source is from a hosting company so I assume they're up to date on patches, and the database target is from another hosting company (which is the development database) so I assume they're also up to date.

I don't get any errors when I click on "Select Objects", it just won't do anything and I can't do anything after that, not even click on the close button.

I called the hosting company that had the source data and they restricted access to the database for "security" reasons, we can't even use the designer wizard if we want to make changes to the tables, anything we want to do with changes have to be done using Query Analizer. On the target company, it's all normal.
Avatar of kyo3eb

ASKER

ok, I solved my problem, I had to highlight all of the SPs in the source DB and paste them in Query Analizer logged in to the target DB and paste them there, I ran the code and it created all of the SPs in the target DB.


Should've thought about that one a long time ago :@, I'm sure your first response will work for most of the users so I'll give you the points, didn't work for me 'cause of the stalling part.
Can you explain the situation ask them to at least do a quick Grant Select On Master..SysDatabases To YourLogin?
Avatar of kyo3eb

ASKER

well, it seems they don't have a DBA on staff so they don't know how to properly set secure limits to the users, then again, I'm not a DBA either so I don't know what security ramifications can come from allowing users designer rights to a table.

On our other host we have designer rights, it makes our job as web developers a whole lot easier and time efficient.