Viewing 15 posts - 76 through 90 (of 158 total)
Ninja's_RGR'us (6/9/2011)
Do you have auto_close or auto_shrink on?
Please stop using sa for the connection if possible.
Make sure you have auto_create /...
June 9, 2011 at 12:11 pm
Martin Cairney (6/9/2011)
With PAE enabled then you can make use...
June 9, 2011 at 5:57 am
Good point on TempDB. Can I move tempdb just like I did the User db or is it more involved?
June 2, 2011 at 6:51 am
Ninja's_RGR'us (6/1/2011)
Just move the user databases to the new drive.
quote]
I'm not sure I understand you... I could be mistaken but wouldn't I want to move the...
June 1, 2011 at 12:13 pm
lol thanks Ninja... I figured it out the same time you were posting!
May 25, 2011 at 11:19 am
EXEC isp_Backup @path = "c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup", @dbType = '-AdventureWorks', @bkpType = 'Full', @retention = 5, @liteSpeed = 'N'
Needed double quotes...
May 25, 2011 at 11:19 am
Well I was able to get it to work by specifying a NON-8dot3 path.
c:\Progra~1\Mi6841~1\MSSQL.1\MSSQL\Backup
which eliminates spaces in the path name. Any ideas why this worked?
May 25, 2011 at 11:14 am
Ninja's_RGR'us (5/24/2011)
The free space...
May 24, 2011 at 9:31 am
Steve Jones - SSC Editor (5/24/2011)
http://msdn.microsoft.com/en-us/library/ms188964.aspx
When that runs, it will require space in the...
May 24, 2011 at 8:55 am
GilaMonster (5/24/2011)
Vertigo44 (5/24/2011)
There is also 'Remove unused space from database files and shrink db with it grows beyond 50 MB?? (Does that sound right? 50 MB?)...
There's your database shrink. Turn...
May 24, 2011 at 8:33 am
Thanks Gail!
I am not as familiar with Enterprise Manager but I was able to find the Database Maintenance Plan and there is a tab called optimizations that does have 'reorganize...
May 24, 2011 at 7:41 am
I feel embarrassed now... It has another instance that I was not aware of.
Thanks guys!
Lowell (5/24/2011)
May 24, 2011 at 7:18 am
Pam Brisjar (5/12/2011)
ALTER DATABASE MyDB SET SINGLE_USER WITH ROLLBACK IMMEDIATE
No, users will not become "orphans" by kicking them off the DB. They...
May 12, 2011 at 1:25 pm
sqlapprentice (5/12/2011)
You do have to kick out all those connected users first and foremost:
alter database databasename set offline with rollback immediate
alter database databasename set online
exec sp_detach_db databasename
If I kick...
May 12, 2011 at 1:08 pm
Viewing 15 posts - 76 through 90 (of 158 total)