Viewing 15 posts - 886 through 900 (of 2,636 total)
The named instance will not become a default instance automatically, nor can it be renamed. The way to make the SQL 2005 instance the default instance would be to...
July 28, 2008 at 10:56 am
I think your method of exporting or copying a table before modifying it is the quickest and easiest method. It's what I do if I'm making table schema or...
July 17, 2008 at 3:16 pm
Does the message say UID doesn't exist or you don't have permission? Anything run in a job is executed as the login that runs SQL Agent. If that's...
July 17, 2008 at 2:29 pm
You don't need to restore all the differential backups, just the last one before the time of the crash, because each one contains all the changes since the last full...
July 17, 2008 at 10:59 am
karen.rogers (7/17/2008)
July 17, 2008 at 9:58 am
Sure. You can use DENY ALL on each table although you'll get the same result if you don't explicitly grant table permissions to a user. For example, you...
July 17, 2008 at 9:54 am
Those are called ophaned users because they're not connected to any logins. You can use sp_change_users_login to report on ophaned users and connect them with the proper logins.
July 16, 2008 at 12:49 pm
set nocount on
select 'exec sp_grantdbaccess ' + 'create user ' + a.name + ' for login ' + b.name
from
...
July 16, 2008 at 12:42 pm
Once you've created a user in the database mapped to the login, GRANT EXECUTE on each stored procedure that you want the user to run.
In SSMS, you can open the...
July 16, 2008 at 12:03 pm
I just noticed that the title of your original post says you're doing log shipping. I recommend you stop the log backups until you can find more space on...
July 16, 2008 at 11:53 am
As far as I can tell, there isn't a way to differentiate between a real orphaned user and one purposely created without a login.
Here's an interesting blog about the usefulness...
July 16, 2008 at 10:44 am
You have to restore the full backup with norecovery before restoring the log backup anyway. You can specify a new physical location for the database files by using "WITH...
July 16, 2008 at 9:44 am
In Enterprise Mangager -> Management -> SQL Server Agent -> Jobs: right-click on the job and select "view job history...". Check the "Show step details" box on the Job...
July 16, 2008 at 9:34 am
SQL Agent database role members can only change or delete jobs they own.
July 15, 2008 at 2:19 pm
1. A log file is the physical location that holds the transaction log data.
2. A full backup will backup enough of the transaction log to allow recovery of the database...
July 15, 2008 at 12:43 pm
Viewing 15 posts - 886 through 900 (of 2,636 total)