Viewing 15 posts - 451 through 465 (of 2,635 total)
1. If you've got a DBA on staff, there's really no need for developers to be dbo. We'd rather have our DBA staff control backups and security. Developers...
Greg
March 23, 2009 at 4:56 pm
I think I'd drop all the role members then re-add the two logins to the role. Here's a way to script the sp_droprolemember statements:
set nocount on
create table #rolemembers
(Group_name...
Greg
March 23, 2009 at 3:14 pm
This info isn't stored anywhere in SQL 2000.
Greg
March 20, 2009 at 9:49 am
Raju,
Can you post the restore statements that you're running so we can see exactly what you're doing?
Thanks
Greg
March 20, 2009 at 9:36 am
If it's a Windows login, you can use sp_denylogin and sp_grantlogin or you can do it in Enterprise Manager by checking "Deny access" or "Grant access" in the login properties....
Greg
March 20, 2009 at 9:12 am
SELECT * FROM sys.foreign_keys
WHERE is_disabled = 1
Greg
March 19, 2009 at 4:41 pm
Unless developers are members of sysadmin, they wouldn't be able to modify or delete jobs owned by other logins.
Greg
March 17, 2009 at 11:55 am
musicman_7 (3/14/2009)
Greg
March 16, 2009 at 9:50 am
When you open a job in SSMS and go to the "Steps" tab, you can specify the start step but I don't think there's a way to connect that to...
Greg
March 11, 2009 at 10:19 am
I have only migrated DTS packages to SQL 2005 by saving them as files then importing them in SSMS, so I don't know if your method will cause any problems....
Greg
March 11, 2009 at 9:42 am
The only way I can think of depends on there being an encrypted DTSRUN command somewhere in a scheduled job or a batch file. If you can find that,...
Greg
March 11, 2009 at 9:25 am
There are tons of scripts to choose from here. Use the Search box above to look for "script user permissions". I like this one: http://www.sqlservercentral.com/scripts/31776/ which scripts permissions...
Greg
March 11, 2009 at 9:10 am
You could try using the 2008 Upgrade Advisor which will run against a SQL 2005 intance. It's available for download here: http://www.microsoft.com/downloads/details.aspx?familyid=F5A6C5E9-4CD9-4E42-A21C-7291E7F0F852&displaylang=en. I haven't tried it yet, but...
Greg
March 10, 2009 at 4:51 pm
What I mean is the Wizard will run on the machine where the program that starts it resides. So, if you run it on your workstation, the Wizard runs...
Greg
March 10, 2009 at 9:28 am
Viewing 15 posts - 451 through 465 (of 2,635 total)