Viewing 15 posts - 1,036 through 1,050 (of 2,636 total)
You could list permissions for sysdts... tables and stored procedures with dts in their names in msdb database.
May 16, 2008 at 8:49 am
Unless the packages use Microsoft Data Link files (.udl) or pass the connection info in a global variable to the child packages, you'll have to change the connection in each...
May 15, 2008 at 9:21 am
What you see listed under Management--Legacy--Data Transformation Services are the DTS packages. Open one by right-clicking and select "Open...". Note: the SQL 2000 DTS Designer components must be...
May 15, 2008 at 9:03 am
You can select data from INFORMATION_SCHEMA.VIEWS to use in your script.
May 14, 2008 at 2:19 pm
There apparently is a value in the source column that won't convert to smalldatetime. You'll have to find it and either correct it or remove it. Try designating...
May 14, 2008 at 10:49 am
You can create a script that contains a series of sp_add_login (or sp_grantlogin if adding Windows logins), sp_add_user, and grant statements.
Example:
EXEC master..sp_addlogin 'App_Login1' ,'passwd', 'TempDB'
use yourdb
EXEC master..sp_adduser 'App_Login1','App_User1'
Grant SELECT on...
May 14, 2008 at 10:31 am
You have to either open each package or save them to files and search. Search SSC for something like "script all packages" or "save all packages" for scripts...
May 14, 2008 at 10:15 am
While sp_add_maintenance_plan and sp_add_maintenance_plan_db still work in SQL 2005, they'll be removed in a future version (maybe SQL 2008?) so MS recommends using the interface in SSMS to create them....
May 14, 2008 at 10:06 am
You've got it a bit backward. A member role inherits the permissions of the role it's a member of. Using your example, HRUser role can select and update...
May 14, 2008 at 9:27 am
Yep. Add that to the SELECT list and remove the WHERE clause.
May 14, 2008 at 9:12 am
GilaMonster (5/13/2008)
The sp_adduser/sp_addrole are deprecated in SQL 2005Rather use CREATE USER ... and CREATE ROLE ...
Oh yeah. Old habits... Thanks, Gail
May 14, 2008 at 8:48 am
Add the user to master and grant EXECUTE on xp_servicecontrol. It won't have any other sysadmin permissions.
May 13, 2008 at 5:15 pm
There must be ParcelID values in GIS_Data that don't exist in Field_Data so you can't create the foreign key because the data violates the foreign key constraint. You'll have...
May 13, 2008 at 5:08 pm
It's a secutity catalog view rather than a table. You can't add rows to it directly, but all it lists are database users and roles so you when you...
May 13, 2008 at 12:53 pm
Viewing 15 posts - 1,036 through 1,050 (of 2,636 total)