Viewing 15 posts - 451 through 465 (of 2,636 total)
I don't understand how you could have taken a differential backup of the database without first taking a full backup. You could try restoring the full backup again then...
March 23, 2009 at 5:16 pm
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...
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...
March 23, 2009 at 3:14 pm
This info isn't stored anywhere in SQL 2000.
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
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....
March 20, 2009 at 9:12 am
SELECT * FROM sys.foreign_keys
WHERE is_disabled = 1
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.
March 17, 2009 at 11:55 am
musicman_7 (3/14/2009)
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...
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....
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,...
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...
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...
March 10, 2009 at 4:51 pm
Viewing 15 posts - 451 through 465 (of 2,636 total)