Viewing 15 posts - 1,996 through 2,010 (of 4,745 total)
if you are looking to consolidate your servers then a good pointer is the amount if IO activity per database so use dmv sys.dm_io_virtual_file_stats to track those values.
It's a no...
---------------------------------------------------------------------
January 11, 2011 at 3:53 pm
This I believe is the code based way to delete maint plan after a msdb move. Never tried it myself as I tend to avoid copying system databases around.
-- steps...
---------------------------------------------------------------------
January 10, 2011 at 4:20 am
are these maintenance plan jobs? these are created as SSIS packages and the server name is hardcoded within them. You will have to delete the plans and recreate them. (via...
---------------------------------------------------------------------
January 9, 2011 at 3:54 am
Just to clarify in SQL2000 it is called 'Index tuning wizard' rather than database tuning advisor
---------------------------------------------------------------------
January 8, 2011 at 1:56 pm
Steve Jones - SSC Editor (1/7/2011)
I would guess that depending on your volume, you might get better/worse performance with...
---------------------------------------------------------------------
January 7, 2011 at 8:22 am
Tom.Thomson (1/7/2011)
---------------------------------------------------------------------
January 7, 2011 at 7:24 am
for restores you need to use table msdb..restorehistory
--returns info on when databases were restored and from which backup file
SELECT [rs].[destination_database_name],
[rs].[restore_date],
[bs].[backup_start_date],
[bs].[backup_finish_date],
[bs].[database_name] as [source_database_name],
[bmf].[physical_device_name] as [backup_file_used_for_restore]
FROM msdb..restorehistory...
---------------------------------------------------------------------
January 6, 2011 at 6:51 am
OS error 5 means 'access denied'. You have a permissions problem
---------------------------------------------------------------------
January 6, 2011 at 6:43 am
If you want those databases to be updateable why not just automate the overnight restore, or perhaps use snapshot replication.
If the databases only need to be readable then you could...
---------------------------------------------------------------------
January 5, 2011 at 3:04 pm
Janie.Carlisle (1/5/2011)
---------------------------------------------------------------------
January 5, 2011 at 2:52 pm
no its not scary, just research files and filegroups (start with books on line) and make sure you take a database backup before you start.
If you want to keep it...
---------------------------------------------------------------------
January 5, 2011 at 10:35 am
you cannot explicitly move a specific object between files in the same filegroup, but you could add another file to the filegroup and data would begin to be written to...
---------------------------------------------------------------------
January 4, 2011 at 3:40 pm
you will be able to restore a user database between these versions. As long as both are SQL2008R2 (which there are as 10.50.xxxx).
edited to clarify my meaning in second sentence
---------------------------------------------------------------------
December 31, 2010 at 3:43 pm
I second Avatar, but it must be in HD, stunning visual quality. good story as well.
---------------------------------------------------------------------
December 31, 2010 at 7:32 am
http://msdn.microsoft.com/en-us/library/ms189573(v=sql.90).aspx
---------------------------------------------------------------------
December 30, 2010 at 11:59 am
Viewing 15 posts - 1,996 through 2,010 (of 4,745 total)