Viewing 15 posts - 2,611 through 2,625 (of 4,745 total)
as alluded to above those values are all configurable in the gui. Just go back and edit the logshipping properties and relate thresholds to your job frequencies.
If you don't restore...
April 28, 2010 at 3:08 am
jlennartz (4/27/2010)
April 27, 2010 at 2:58 pm
The one you already have on server B is the version you want so use that one.
It is vital that the resource db files are in the same directory as...
April 27, 2010 at 9:41 am
This is just for fun but here goes anyway................
I wouldn't do it this way
Unless you have lots of linked servers (which won't decrypt anyway), user error massages, SPs in master,...
April 27, 2010 at 7:48 am
You are checking tempdb after the cause of the growth has been and gone. Tempdb stores TEMPORARY objects, so they have been created, used up 36Gb space, and been deleted...
April 27, 2010 at 6:49 am
If you have enterprise edition also take a look at snapshots with database mirroring.
April 26, 2010 at 3:56 pm
you could do this with log shipping but you would have to have the space on the reporting server to store two weeks worth of log backups. Hard to say...
April 26, 2010 at 3:52 pm
depends how much space you have for your transaction log.
Principal will continue to function but log will not be able to be backed up. so would eventually run out of...
April 26, 2010 at 3:37 pm
sorry, forgot the code for the two views used in there.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[all_session_usage]
AS
SELECT R1.session_id,
...
April 26, 2010 at 7:22 am
Set up a sQLAgent job to run the following SQL every 3-4 mins and output to a file. the file will grow by about 20MB an hour and will contain...
April 26, 2010 at 7:15 am
Nope, the good old SQL 2000 update sysjobs set originating_server = 'newservername' does not work in SQL2005 and up.:(
Have you tried editing the jobs to run under a different user
You...
April 26, 2010 at 6:58 am
Full or diffs no. But don't set up tran log backups through the maintenance plans , just use the log shipping log backups
April 25, 2010 at 3:59 pm
First of all use the 2008 upgrade advisor to give you an idea of the DTS issues you might face.
when you install 2008 also install the Microsoft SQL Server 2005...
April 24, 2010 at 5:44 pm
sorry just spotted you said SQL is installed as part of your application, must be SQL Express edition then. That does not come with SSMS but it can be downloaded...
April 24, 2010 at 5:27 pm
Viewing 15 posts - 2,611 through 2,625 (of 4,745 total)