Viewing 15 posts - 121 through 135 (of 432 total)
When I receive the "Cannot generate SSPI context" it is when my domain account is locked out for some reason (another story) and cannot be authenticated. Was the...
December 17, 2013 at 9:46 am
Is there already an earlier backup of the same name at that location?
December 16, 2013 at 12:23 pm
I hope that's not the actual password you're using other places.
December 13, 2013 at 11:14 am
I undersand what you're going through. While my fellow DBA and I have admin access to all the servers we need, it is not unusual for a network...
December 12, 2013 at 5:22 pm
I don't like the idea of killing jobs midway. Depending on what they do, partially completed jobs might be problematic.
I'd prefer to disable in advance any jobs that might...
December 12, 2013 at 5:10 pm
Be careful with log drive space when upgrading VCenter. Our adventure last week was a VCenter upgrade that kept growing the VIManage.ldf file until it filled the drive. ...
December 12, 2013 at 5:00 pm
Perry,
The steps I used were pretty much what you have in your article except that I used sp_helpdb <databasename> rather than sys.master_files. Does this make a difference?
I looked at...
December 9, 2013 at 10:23 am
I was pleased to discover that while SQL Server R2 Express cannot create compressed backups, it can restore compressed backups created on Standard ot Enterprise Edition.
December 9, 2013 at 9:52 am
I would add that if a default backup directory was not deliberately set when SQL Server was installed, then the default backup location is on the C: drive. ...
December 6, 2013 at 11:00 am
Attached a series of messages from SQL Log. All I did was take the DB offline, run an ALTER DATABASE command to change the location of the log...
December 6, 2013 at 10:50 am
Then why would my simple recovery model databases not come online with copies of the original log files in the new location?
December 6, 2013 at 8:26 am
If one or both of the database is very large you might get better performance by having two databases and putting them on separate drives. You can probably...
December 5, 2013 at 2:00 pm
To minimize read-only time, I'd change the order a little.
1. Full Backup
2. Copy backup to new server & restore with NORECOVERY
3. Set to read only
4. Differential Backup
5. Copy differential...
December 4, 2013 at 4:58 pm
Question: If you run this command
RESTORE DATABASE databasename WITH RECOVERY
after a RESTORE WITH NORECOVERY as shown in GilaMonster's post, the database will change to a normal state and you're ready...
December 3, 2013 at 12:22 pm
Here is a script I use to look at available drive space where database files are located:
sp_helpdb databasename --< Name of DB here
/* This runs on SQL 2008...
December 3, 2013 at 10:30 am
Viewing 15 posts - 121 through 135 (of 432 total)