Viewing 15 posts - 3,601 through 3,615 (of 4,745 total)
sounds like you are tying yourself in knots trying to acheive this, which is always risky.
This might be one of those cases where looking into a third party tool which...
June 5, 2009 at 4:36 am
Can you take the hit of the full backup at weekends only and then go for differential backups during the week, or filegroup backups if you have more than one...
June 4, 2009 at 3:59 pm
you cannot disable windows authentication, only sql authentication, which then precludes using the 'sa' account.
closest you can come to it is set up a domain account, use EM to alter...
June 4, 2009 at 3:30 pm
hydbadrose (6/4/2009)
Hello,I have a question regarding 'SA' password in sql 2000. Is is possible to change the SA password without having to reschedule the jobs on a sql 2000 server?
yes
Also,...
June 4, 2009 at 3:19 pm
A Joy (6/4/2009)
June 4, 2009 at 7:49 am
That should only happen with SQL authenticated ids and restoring onto a different SQL instance. I presume this is your scenario.
use sp_change_users_login 'update_one','username','login' to tie the user up to its...
June 4, 2009 at 6:35 am
Books OnLine will be your best resource here.
search on these keywords:
authentication modes
create login
create user
fixed database roles
fixed server roles
sp_addrolemember
grant
USe a windows authenticated ID if you can. SQL authenticated ids have improved...
June 4, 2009 at 6:27 am
the leaf node of the clustered index is the actual data, so when you rebuild the clustered index you are effectively moving the table data around. Hence the large amount...
June 4, 2009 at 6:11 am
In a nutshell Its not worth the effort.
To expand on that:
mssqlsystemresource you cannot move anyway in 2008
master database has very little updating, so no performance requirement to separate logs
ditto for...
June 4, 2009 at 4:36 am
If you can afford the risk of it not working might be worth trying just restarting SQL, would be interesting to know if thats enough to clear the problem.
June 4, 2009 at 4:18 am
This gives the owner of the database
select suser_sname(sid),name from master..sysdatabases
just add the relevant where clause for a particular database
Retrieving who originally created the database (if different) I dont think...
June 3, 2009 at 6:41 am
a quick test shows db_datawriter does not have select permissions.
June 2, 2009 at 6:11 am
Gursethi, nice one, I did not realise that would work onto a new database.
June 1, 2009 at 5:25 am
My apologies , there is an error in the above post. You cannot use express edition as a logshipping monitor as it does not come with SQLAgent.
I was thinking mirror...
May 30, 2009 at 2:59 pm
My script for detach/attach in SQL2005, doesn't work for SQL2000, so I thought there might be some with the knowledge to multi detach/attach the databases
what error do you get? the...
May 29, 2009 at 5:23 pm
Viewing 15 posts - 3,601 through 3,615 (of 4,745 total)