Viewing 15 posts - 1 through 15 (of 50 total)
SQL Server performs garbage collection of row versions when ever it needs to, i.e. when there is memory-pressure that causes it to do so. Garbage collection for row versions cannot...
October 22, 2017 at 10:58 pm
I realize this post is slightly old, but wanted to give some feedback --
Keep in mind that FK on memory-optimized tables can only reference other memory-optimized tables.
May 18, 2017 at 10:58 am
Just keep in mind that if REDO falls behind for any reason, backups on the Secondary will only capture up to the point of REDO, no matter how far behind...
June 8, 2015 at 3:39 pm
Also note that the compatibility level of a database is not necessarily the same as the version of SQL Server that it is hosted in (please forgive formatting errors in...
March 17, 2015 at 7:12 am
There are two processes that run on the Secondary:
1. hardening of the log
2. REDO (replaying of the log)
Not sure if this is what you're running into, but the Syncronization state...
March 8, 2015 at 11:54 pm
your task will be much simpler if you keep backups in separate files. I would also suggest using Ola Hallengren's backup scripts instead of maintenance plans, which can have some...
February 10, 2015 at 9:11 pm
if you don't know how many clients the web site will have, I don't see how your customer can use CAL.
February 10, 2015 at 9:04 pm
Just found this, which may be viable, but is sort of a brute force way to do it:
http://itknowledgeexchange.techtarget.com/sql-server/deleting-lob-data-and-shrinking-the-database/
sqlnyc
September 19, 2014 at 1:13 pm
Hi Scott and Steve - thanks very much for your replies.
I've emailed Paul Randal about this in the past.
His reply was:
"The issue is that LOB extents are not...
September 19, 2014 at 1:01 pm
Hi Steve,
Thanks very much for your reply.
I will research the link you posted.
Long ago, when this server was running SQL 2008R2 RTM, there was indeed an issue with...
September 19, 2014 at 11:08 am
Hi Luis,
Thanks very much for your reply.
I want it to fail if it's an empty string. Your suggestion of NULLIF() worked.
Much appreciated.
SQLNYC
March 19, 2014 at 1:41 pm
my apologies, that should have been without the IDENTITY:
CREATE TABLE [dbo].[t1]
(
[col1] [int] NOT NULL
,[ProcessedDate] [datetime] NULL
,[col3] [int] NOT NULL
,CONSTRAINT [UQ_T1_Col1_ProcessedDate_Col3] UNIQUE NONCLUSTERED ([col1] ASC, [ProcessedDate] ASC, [col3] ASC)
WITH ( PAD_INDEX...
March 19, 2014 at 12:01 pm
Hey MyDoggieJessie,
Thanks so very much for your replies.
All disks are local to the server, no DAS or SAN yet.
MDFs: 6GB/s SATA SSD
LDFs: 6GB/s SAS 15K spinning
In general, we...
March 7, 2014 at 10:51 pm
Many thanks to all that replied.
I simplified the example to (hopefully) make it easy for others to help me. The code as originally written has the following WHERE clause:
WHERE...
March 14, 2013 at 11:12 am
Viewing 15 posts - 1 through 15 (of 50 total)