Viewing 15 posts - 5,266 through 5,280 (of 7,191 total)
Why have you posted this question in two places? You won't get an answer any quicker.
Original thread here:
http://www.sqlservercentral.com/Forums/Topic1130242-357-1.aspx
June 23, 2011 at 3:27 am
Kahn
Back up to a separate drive, across the network to a separate server, or direct to tape - whichever works best for you. But don't have your backups on...
June 23, 2011 at 3:25 am
srinath.vanama (6/23/2011)
This is not at all a problem, if there is a free disk space u can un-restrict the file growth of .mdf, and restrict the file growth of .ndf...
June 23, 2011 at 3:07 am
JV
No, it's not a problem, unless, for instance, you have lots of free space in one that is stopping the other from growing. Yes, you can merge them into...
June 23, 2011 at 2:51 am
Andy
(1) Use a WHERE clause
(2) SELECT 'KILL ' + CAST(session_id AS varchar(4))....
Be very careful with (2) - you may find yourself killing stuff that should be allowed to live if...
June 23, 2011 at 2:46 am
Try this for a start... it's amazing what you can find with a simple search!
http://support.microsoft.com/kb/259733
John
June 22, 2011 at 9:25 am
Probably not. You could try DENY CONTROL TO db_owner (that may not be the correct syntax), but that may not work because CONTROL is implicitly granted to db_owner. ...
June 22, 2011 at 8:51 am
Well, the requestor would say that, wouldn't he? If I were you, I would tell him that he's getting EXECUTE permission on all stored procedures, and nothing else that...
June 22, 2011 at 8:41 am
Does the account actually need all those permissions? Why don't you remove it from db_owner and just give it the permissions it needs?
John
June 22, 2011 at 8:27 am
Usually it's the one that would be easier to roll back - that's if DEADLOCK_PRIORITY is the same for each. Search the internet for "deadlock victim" for more information.
John
June 22, 2011 at 7:46 am
You could change the owner to sa or some other login.
John
June 22, 2011 at 7:41 am
I've never had to use it before, but I think you do it through the setup utility. You'll probably need the installation media. I imagine if you use...
June 22, 2011 at 7:34 am
MG Chowdary (6/22/2011)
added all users/groups to that role
Deny select on test_table to public
(all user are denied read perms on test_table as of now)
now,
revoke select on...
June 22, 2011 at 7:06 am
I believe that this error occurs when someone has changed the password on their Windows login but still has a connection to SQL Server from before the change.
John
June 21, 2011 at 8:19 am
You certainly won't be able to use a CTE, since it only lives as long as the batch that creates it. If you can find some way in SSIS...
June 20, 2011 at 8:39 am
Viewing 15 posts - 5,266 through 5,280 (of 7,191 total)