Viewing 15 posts - 1 through 15 (of 529 total)
It could be due to an Always On Availability Group 'Failover'...
Whenever I have a running query, connected to an AG Listener (and to one of the AG databases), and...
May 9, 2018 at 11:11 am
Perry Whittle (3/2/2015)
March 1, 2016 at 5:19 am
Hi, yes, I fear you are right 🙁 I haven't found anything that seems to indicate that I can reuse the original backups and Not take new ones for doing...
December 17, 2015 at 6:41 am
Thanks!
Yes, I specifically would like to try to avoid that. My Full backup is around 1.5 TB and the drives of the new datacenter are slow 🙁
I was thinking, since...
December 12, 2015 at 2:42 am
Hi,
Yes, I had accedentally left out the best part (the SWITCH code) :/
I have now edited my post...
Regards,
Hans
October 25, 2015 at 4:08 pm
In SQL Server 2014 (maybe also in earlier versions) SWITCHing unpartitioned tables is easy.
Example:
(Summary: SWITCHing between T1 and T2)
--Table/Index creation
CREATE TABLE [dbo].[T1] ( [A] [INT] PRIMARY KEY);
CREATE TABLE [dbo].[T2] (...
October 22, 2015 at 1:36 am
When you 'see' it in profiler, might you be experiencing an IMPLICT_CONVERSION of your column type?
I.e. your application passes, for example, an NVARCHAR (for comparison) and the column type is...
June 25, 2015 at 9:03 am
I know this thread is old but maybe this can help someone:
points to the KB in question which, in turn, points to the CU...
August 20, 2013 at 4:18 am
A good summary of 'xp_readerrorlog' can be found here:
http://www.mssqltips.com/sqlservertip/1476/reading-the-sql-server-log-files-using-tsql/
May 29, 2012 at 3:52 am
Thanks guys.
Ok, so RESTORE DATABASE currently works when restoring transaction log backups (I also tested using the STOPAT parameter)...
This is not something I have seen documented anywhere and I fear...
May 2, 2012 at 2:46 am
Well, the theory says that SSDs would also be affected...
I.e. any partition created on an SSD would have to be aligned. Care should here be taken as the specific SSD...
February 21, 2011 at 9:21 am
Very good question!
I hope this raises the awareness of the issue as it has constantly been an uphill struggle, in the past, to enforce partitioning alignment...
February 21, 2011 at 3:21 am
OK for a 'creativity' query but I feel this does not go well with RDBMS theory...
Extract 'Odd' lines from an unsorted list? How can anyone treat the Expected Results as...
February 21, 2011 at 2:18 am
tfifield (5/30/2008)
Can anyone tell me if there is any functional or performance difference between designing a covering index and an index that includes columns that will be queried.
Hi,
I'd like to...
April 13, 2010 at 3:12 am
Matt Miller (#4) (5/30/2008)
CREATE NONCLUSTERED INDEX IX_OrderDetailDateProdSold ON dbo.OrderDetail
( OrderDate ASC, ProductID ASC) INCLUDE (QtySold);
Matt,
Any specific reasons you wouldn't go for:
CREATE NONCLUSTERED INDEX IX_OrderDetailDateProdSold ON dbo.OrderDetail
( ProductID ASC, OrderDate ASC)...
April 13, 2010 at 3:03 am
Viewing 15 posts - 1 through 15 (of 529 total)