Viewing 15 posts - 481 through 495 (of 2,636 total)
Thanks for reminding me about granting permissions at the database level. It's not very well documented and I'd forgotten about it.
As for your concern about restricting the...
March 3, 2009 at 12:35 pm
The query will produce a GRANT statement for each stored procedure in the current database. You have to execute the GRANT statements in a query window to grant the...
March 2, 2009 at 4:58 pm
There isn't a built in database role for EXECUTE permissions. You could script GRANT EXECUTE statements for each database and execute them. Something like this:
select 'GRANT EXECUTE ON...
March 2, 2009 at 2:40 pm
Sorry, I don't have a T-SQL script for this because I've never needed to do it on an on going basis. I've only scripted jobs to as a one-time...
March 2, 2009 at 2:30 pm
Database mirroring only mirrors user databases. The only way I can think of to copy jobs is to build and schedule a script that scripts them and runs the...
March 2, 2009 at 10:35 am
nymgk_75 (3/2/2009)
Ahhh, makes sense. Have a 1:1 relationship for a db_user and a db_login. So...
March 2, 2009 at 10:11 am
First question is where is the package stored - in SQL Server or in the file system? If it's in SQL Server, you can take advantage of the SSIS...
February 27, 2009 at 11:02 am
I'll try to help. There is a Reporting Services group of forums pretty far down the list on the forums "Home" page (click "Forumns" in the list on the...
February 26, 2009 at 4:04 pm
My suggestion is to enable logging in the package then examine the log. The log records are recorded in the order they're executed as the package runs.
Enable...
February 26, 2009 at 3:32 pm
zombi (2/24/2009)
The question i asked is because MSDB database contains job information and master database contains other information. so if i migrate sql agent jobs...
February 25, 2009 at 10:50 am
I'm not sure I have the complete picture. Are the sources of the web databases data all SQL Server databases or some other kind of data store? Does...
February 24, 2009 at 9:35 am
Actually, MS does refer to side-by-side upgrade as "migration". Zombi, if you're really talking about installing a SQL 2005 intance and migrating databases to it with backup/restore or detach/attach,...
February 24, 2009 at 8:50 am
There's something in the script section of SSC that I've used to script out linked servers and recreate them on other servers: http://www.sqlservercentral.com/scripts/Miscellaneous/30620/.
February 23, 2009 at 5:00 pm
SQL ORACLE (2/22/2009)
You may try BIDS (Business Intelligence Development Studio).
That won't help him if he wants to to keep the packages as legacy DTS. I second George's advice. ...
February 23, 2009 at 9:22 am
You'll either have to
1. create an SSIS package that contains a Transfer SQL Server Objects task (not available in the Wizard)
or
2. Script the table CREATE statements...
February 23, 2009 at 9:15 am
Viewing 15 posts - 481 through 495 (of 2,636 total)