Viewing 15 posts - 211 through 225 (of 231 total)
i found the answer, I had to create a credential and a proxy. thank you though!
http://msdn2.microsoft.com/en-us/library/ms187901.aspx
😀
March 7, 2008 at 3:51 pm
Try checking out the scripts here...
http://www.sqlservercentral.com/Forums/Topic459785-146-1.aspx
March 7, 2008 at 1:16 pm
Scott's worked perfectly. Thank you so much!
😀
February 29, 2008 at 11:40 am
so far I have this but it only seems to bring back public role.
SELECT DISTINCT sysdatabases.name AS [Database], sysxlogins.name AS [User], sysusers.name AS role
FROM ...
February 28, 2008 at 3:43 pm
It looks like the proc fixed itself transferring from 2000 to 2005. This is the script output.
February 28, 2008 at 1:03 pm
You can try this script and change the order by if needed
select convert(varchar(30),
object_name(id)) [Table Name],
rows
from sysindexes
where object_name(id) not like 'sys%' and indid = 1
order by...
February 28, 2008 at 12:59 pm
You have to have permissions to create objects in master or try logging in as sa...
February 27, 2008 at 7:45 am
Found something that works!
Thanks all!
1) Expand Schemas(should be like a folder under Security) .
2) Delete the unwanted "userSchema".
3) Then, go back to the User(a folder like thing) and...
February 26, 2008 at 9:10 am
Here is the exact error I get when I try to delete.
TITLE: Microsoft SQL Server Management Studio
------------------------------
Drop failed for User 'asava'. (Microsoft.SqlServer.Smo)
------------------------------
ADDITIONAL INFORMATION:
An exception...
February 26, 2008 at 9:07 am
I get nothing returned when I run that... strange. I receive a list of orphaned users, try to delete, can't because it owns schema, but when I run the select...
February 26, 2008 at 9:06 am
This article when the script is run shows 'sys' as an orphaned user. Be careful...
February 26, 2008 at 8:32 am
It might be something as simple as clicking on the actual file group name in the select list.
February 25, 2008 at 3:32 pm
Even though it says it is used for sql 2000, I used the sp_helprevlogin and sp_hexadecimal to go from 2000 to 2005.
February 25, 2008 at 3:27 pm
I'm not sure what else it could be, you might want to double check all the above mentioned... making sure both servers are on the same security, both servers have...
February 25, 2008 at 8:23 am
Viewing 15 posts - 211 through 225 (of 231 total)