Viewing 15 posts - 256 through 270 (of 1,129 total)
ScottPletcher (1/13/2015)
DECLARE @BatchSize int
DECLARE @RowRount int
DECLARE @TableRowCount int
DECLARE @TableRowLimit int
SET @BatchSize = 10000
SELECT @TableRowCount = COUNT(*)
FROM PtActs WITH (NOLOCK)
SET @TableRowLimit =...
January 13, 2015 at 1:47 pm
Jeff Moden (1/12/2015)
curious_sqldba (1/12/2015)
January 13, 2015 at 8:36 am
My apologies, should have specified this. We already have a in-house alerting system, i just need the syntax...
December 4, 2014 at 10:39 am
I want this to be scheduled so i can't use SSMS's feature .
December 4, 2014 at 7:30 am
Evil Kraig F (11/7/2014)
Queries are what puts the pressure on systems. Knowing which queries hurt...
November 7, 2014 at 7:53 pm
homebrew01 (11/7/2014)
Server, Instance & database settings will will depend on the environment, and once set don't change.So, I'm not clear on what you are looking for.
If you are given...
November 7, 2014 at 2:33 pm
max_scalf (10/30/2014)
i am new to SQL Server and same goes for t-sql as well.
I am trying to write a simple procedure that does a backup, i understand there is...
October 30, 2014 at 1:57 pm
ScottPletcher (10/17/2014)
For example, change tracking would allow you to determine the rows in each table...
October 19, 2014 at 8:34 pm
Are there any other reasons except maintenance overhead if I split my partitions to separate file group? Reason I say that is if I have multiple file groups I can...
August 19, 2014 at 7:11 am
GilaMonster (8/15/2014)
curious_sqldba (8/15/2014)
August 15, 2014 at 4:35 pm
GilaMonster (8/15/2014)
curious_sqldba (8/15/2014)
In total there will be 10,000 commits per hour on the same log file
10 000 an hour? Unless my log file's on a 3.5" floppy disk, I'm pretty...
August 15, 2014 at 4:17 pm
SQLRNNR (8/15/2014)
curious_sqldba (8/15/2014)
August 15, 2014 at 4:04 pm
Lets say you have database partitioned, all the transactions need to commit to same log file. In total there will be 10,000 commits per hour on the same log file,...
August 15, 2014 at 3:52 pm
Makes sense. Thanks
August 8, 2014 at 12:09 pm
Viewing 15 posts - 256 through 270 (of 1,129 total)