Viewing 15 posts - 2,086 through 2,100 (of 2,900 total)
yulichka (11/12/2008)
November 12, 2008 at 7:46 am
Redgate makes tools to compare the databases, but I don't know if it will also apply the changes. How about using replication to keep them in sync ?
November 11, 2008 at 12:04 pm
[font="Courier New"]SELECT Job.[name], Hst.[sql_message_id], Hst.[message] , Hst.[run_date], Hst.[run_time], run_duration
FROM [msdb].dbo.sysjobhistory Hst
INNER JOIN [msdb].dbo.sysjobs Job ON Hst.[job_id] = Job.[job_id]
where convert(varchar(8), GETDATE()-1,112)= Hst.[run_date]
and name not...
November 11, 2008 at 11:22 am
If there aren't too many, you could save them to the new server.
Open the package, "Save As", Maybe prefix the name like "OldServer_DTS_Name", then save it to the new server....
November 10, 2008 at 10:18 am
TRACEY (11/7/2008)
If so just do backup and restore....no need to do system databases they are different in SQL 2005.
Just go get the...
November 7, 2008 at 12:48 pm
What change to the database ?? That might help direct the responses.
November 6, 2008 at 3:05 pm
Did you determine the count of 19,410,958 by using rowcount, or by "right click" -> "Properties" ?? The "properties" is not always accurate.
November 6, 2008 at 2:12 pm
madhu.arda (11/6/2008)
What happens in below scenarios:
1.If mdf file exist and ldf file deleted can we do the point in time recovery?
2.If ldf file exist and mdf file deleted can we...
November 6, 2008 at 11:56 am
But if you're doing a lot of work in the database, either go FULL with T-log backups like a Production DB, or do more frequent FULLs while the work is...
November 6, 2008 at 11:52 am
But back up your table first !!!
Select * into TeamBase_20081106
from TeamBase
Then use the select statement to get a count of how many you will delete. When you delete, the count...
November 6, 2008 at 11:39 am
Correct. If you delete the entire database, then there is no database of which to take a backup, so you can only recover up to the last t-log before the...
November 6, 2008 at 11:22 am
Make sure you compare "apples to apples" if some tools have different versions such as Standard & Enterprise.
Also, get a real quote from each, not MSRP. Some will give discounts....
November 6, 2008 at 8:06 am
100 G in 20 minutes ?? You must have some huge transactions taking place. Did someone accidentally schedule index rebuilds to run all day long ?
November 6, 2008 at 7:36 am
Viewing 15 posts - 2,086 through 2,100 (of 2,900 total)