Viewing 15 posts - 571 through 585 (of 4,745 total)
thanks Perry I thought you would have relevant links to hand.
but i still get my point 🙂
June 21, 2013 at 10:17 am
thanks for feeding back, so many people just don't bother.
perhaps this cluster is the first with mount points?
June 21, 2013 at 8:35 am
it sounds like SQL is starting before that drive is accessible, are your dependencies correct?
June 20, 2013 at 12:34 pm
in the log directory created by SQL under your chosen installation path
June 19, 2013 at 3:27 pm
its all part of the same service pack so yes it will
June 19, 2013 at 3:22 pm
glad to help, thanks for the feedback
June 19, 2013 at 2:36 pm
I just cribbed this from a job I run so amend to your needs, but it backups any databases with no backups
create PROCEDURE [dbo].[usp_FirsttimeBkUp]
AS
set nocount on
declare @dbase_name sysname,
@dbase_dbid int,
@SQLString...
June 19, 2013 at 5:44 am
only by scripting up exactly what you want to do.
June 18, 2013 at 10:41 am
nope, logical and physical names are a one to one relationship
June 18, 2013 at 9:17 am
I would expect space in the ldf file to be reused so it should not grow. But no harm to have the figures as evidence to confirm growth or not.
June 17, 2013 at 10:05 am
447 MB does not tally with your previous information about log activity.
is it the ldf or trn file that is growing?
Scan the default traces for log growth, you can sort...
June 17, 2013 at 9:47 am
I see Redgate have discontinued Hyperbac after buying it up a while back. darn shame.
June 17, 2013 at 9:37 am
how big are the log backups? Any of about 30GB hence leading to the log file growth?
If you right click the database, select reports,standard reports,disk usage you can see if...
June 17, 2013 at 9:30 am
what does the query
select log_reuse_wait_desc from sys.databases where name = 'your database'
return,
that will tell you what is preventing your log from truncating
June 17, 2013 at 7:50 am
this query reverse engineers the sql for the role memberships so alter as necessary, but it returns all role memberships
SELECT 'EXEC sp_addrolemember [' + dp.name + '], [' + USER_NAME(drm.member_principal_id)...
June 14, 2013 at 4:03 pm
Viewing 15 posts - 571 through 585 (of 4,745 total)