Viewing 15 posts - 1 through 15 (of 2,435 total)
if RAID 5 - multiple spares. RAID 10 will have better read performance - 2x over RAID5.
Also, are these local disk arrays of is this SAN storage. This is...
April 20, 2018 at 2:29 pm
maybe this will work for you:
---
--- get successful logon messages
---
use master
go
select *
from sys.sysmessages
where msglangid = 1033
March 21, 2018 at 3:53 pm
no alias is needed - use a fixed port number for each instance
e.g. SQL2008\SQL1 uses fixed port 1433 and SQL2016 uses fixed port 2433
Just add the...
March 21, 2018 at 3:17 pm
the needed parameter for START is /WAIT
November 2, 2017 at 3:32 pm
you just need the char(10) for a newline !
(I use this all the time)
January 12, 2017 at 3:36 pm
declare @CoverUp varchar(16)
select @CoverUp = ['True'|'False'] --> make your choice
if CoverUp = 'True'
...
July 26, 2016 at 3:02 pm
My advice is to dump maintenance plans.
The two word solution is - Ola Hallengren
January 7, 2016 at 11:21 am
I just 'dare' to be 'dull' !
December 6, 2014 at 6:39 pm
As a DBA we are kind of the last line of defense unfortunately.
All of the issues that happen, especially as of late (subscribe to Krebs on Security) are usually not...
October 30, 2014 at 10:22 am
Try this:
declare@max_attachment_sizeint,-- in bytes
@average_rowsizeint,-- in bytes
@number_of_rowsint,-- used for the TOP in the dynamic select
@dynamic_selectvarchar(8000)-- dynamic select statement
select @max_attachment_size=paramvalue
from msdb.dbo.sysmail_configuration
where paramname = 'MaxFileSize'
select@average_rowsize=used_page_count*1024/row_count
from sys.dm_db_partition_stats
where object_id=object_id('sysmaintplan_log')
select @number_of_rows=@max_attachment_size/@average_rowsize
IF EXISTS(SELECT TOP 1 1 FROM...
October 29, 2014 at 1:29 pm
you'll need to up the attachment size in your database main configuration.
exec msdb.dbo.sysmail_configure_sp 'MaxFileSize', '10000000'
October 28, 2014 at 2:20 pm
I would start looking here first: procname=SCHApiOrder.SCHOrder.SCHOrdersSave_v3 line=198
Next I would change your table variable, @ReturnOrders_TEMP_TABLE, to a real #temp_table.
August 7, 2014 at 11:30 am
I am curious about "insufficient buffer memory" ...
August 7, 2014 at 11:18 am
My advice is to contact the source provider of the EDI file - plain and simple.
August 7, 2014 at 11:14 am
Viewing 15 posts - 1 through 15 (of 2,435 total)