Viewing 15 posts - 4,906 through 4,920 (of 19,564 total)
When you start SQL Server, it is the data file that is locked and not the folder.
When an instance is started, the master db is locked by the process of...
March 11, 2013 at 5:03 pm
You don't happen to have an alias for that archive instance do you?
In services control panel, do you have the services for both instances running?
March 11, 2013 at 3:41 pm
Yes - many records can impact performance.
If your primary activity is only against the most recent couple of years, then I would look to archive the data into a different...
March 11, 2013 at 3:38 pm
I have done similar with the derived columns. That is what I would recommend.
March 11, 2013 at 2:52 pm
the master database can only be used by one instance. Each instance would have its own master database.
March 11, 2013 at 12:00 pm
Sometimes you may continue to see that index because the query that needs it has columns using a different sort order than the index. And sometimes it is a...
March 11, 2013 at 10:37 am
Lynn Pettis (3/10/2013)
March 11, 2013 at 10:30 am
george sibbald (3/11/2013)
m.rajesh.uk (3/10/2013)
Hi, any one has any idea .....I have had posts ignored before but this is getting ridiculous.................:-)
Did you say something ;-):-D
March 11, 2013 at 10:27 am
m.rajesh.uk (3/11/2013)
Through script it went fine. so how to solve this issue in maintenance plan.....
Please provide the exact script you used to backup the database via script.
March 11, 2013 at 10:26 am
crookj (3/11/2013)
SQLRNNR (3/9/2013)
john.arnott (3/8/2013)
Revenant (3/8/2013)
SQLRNNR (3/8/2013)
opc.three (3/8/2013)
JAZZ Master (3/8/2013)
crookj (3/8/2013)
SQLRNNR (3/7/2013)
crookj (3/7/2013)
Daniel Bowlin (3/7/2013)
HelpSupport
Truss
Tether
Tie
Bolo
Whip
Rawhide
Eastwood
West Side
Story
TOY
March 11, 2013 at 9:51 am
Welsh Corgi (3/11/2013)
SQLRNNR (3/11/2013)
Jeff Moden (3/11/2013)
David Burrows (3/11/2013)
SELECT DISTINCT j.name as job_name,
msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],
DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]
FROM msdb..sysjobhistory h
INNER JOIN msdb..sysjobs j ON h.job_id = j.job_id
WHERE j.name...
March 11, 2013 at 9:09 am
Jeff Moden (3/11/2013)
David Burrows (3/11/2013)
SELECT DISTINCT j.name as job_name,
msdb.dbo.agent_datetime(run_date, run_time) AS [run_datetime],
DATEADD(second,DATEDIFF(second,0,msdb.dbo.agent_datetime(19000101, run_duration)),msdb.dbo.agent_datetime(run_date, run_time)) AS [run_endtime]
FROM msdb..sysjobhistory h
INNER JOIN msdb..sysjobs j ON h.job_id = j.job_id
WHERE j.name NOT LIKE 'Backup%'
AND...
March 11, 2013 at 8:56 am
I'd convert from maintenance plan backups and use script based backups.
But, even in the maintenance plan, you can type out the path for a UNC rather than rely on what...
March 10, 2013 at 11:59 pm
If you run a manual backup for that database via script to that folder location, does it work?
March 10, 2013 at 11:47 pm
Viewing 15 posts - 4,906 through 4,920 (of 19,564 total)