Viewing 15 posts - 31 through 45 (of 293 total)
My guess is your log is set to auto-grow in 10% chunks, and it started at 1 Mb. So the first time it grew it went to 1.1 mb,...
September 15, 2011 at 10:48 am
I fixed this by moving the code into the Execute SQL task
DECLARE @sql varchar(8000)
--Create dynamic SQL to be inserted into...
September 4, 2011 at 7:56 am
Thanks for the input Perry, but I'm afraid that's not it. I run the code in a For Each container and iterate through the databases that way. The...
September 2, 2011 at 7:24 am
Is accountdb.dbo.accounts a view? And is *it* using old style joins? If so you need to re-write it.
HTH
Dave J
August 22, 2011 at 9:51 am
I've resolved this. I turned OFF Keep together on one page if possible in the properties of the Tablix where the data sits. Why this caused the server...
August 10, 2011 at 8:36 am
raj-211912 (6/20/2011)
even it was not working for me too. as it is showing 0 mb growth rate.
I've amended my version, please see the updated comments section.
HTH
Dave J
June 21, 2011 at 5:34 am
Found this thread and thought I'd post my version for anyone still following it
HTH
Dave J
/****** Object: StoredProcedure [dbo].[usp_Check_DB_growth] Script Date: 06/14/2011 10:14:18 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER...
June 13, 2011 at 6:28 am
SQL Server Youngling (5/27/2011)
"For an optional solution, please refer to the following URL"
Optimal, perhaps?
And...
May 27, 2011 at 11:24 am
Steve Jones - SSC Editor (5/18/2011)
May 19, 2011 at 3:35 am
This is the code needed at the start of block 6, move the balances across. This handles negative amounts.
select acc_no, sum(band_1) b1T, sum(band_2) b2T, sum(band_3) b3T, sum(band_4) b4T, sum(band_5)...
April 7, 2010 at 5:38 am
Phew Paul, that's some proof of concept. 😉
I have persevered with mine and while it's not as elegant as yours, it seems to do the job, and as a bonus...
April 7, 2010 at 4:50 am
lmu92 (4/1/2010)
Based on your vague description it is unclear whether you would have missing rows in #customers for a...
April 2, 2010 at 4:49 am
Jeff Moden (4/1/2010)
April 2, 2010 at 4:36 am
Kind of. I have jumped on his suggestion but Lutz doesn't move the balances over in the way that I need. Run it for a single account...
April 1, 2010 at 7:26 am
Thanks Gianluca,
if you looks closely, that's where my cursor code is adapted from 🙂
The difficulty is moving balances across bands for a given period, so I can't work...
March 31, 2010 at 8:06 am
Viewing 15 posts - 31 through 45 (of 293 total)