Viewing 15 posts - 226 through 240 (of 700 total)
Select * FROM A
WHERE
If Status =...
January 26, 2017 at 10:23 pm
All of this is absolutely terrible advice, and can only make a bad situation worse:
johnwalker10 (12/6/2016)
> Create new...
December 7, 2016 at 1:33 pm
Redesign the refresh to finish every night, no matter what.
Instead of blast-refreshing all of the rows, do it in smaller, fully-COMMITted batches, walking each source table in some key...
December 1, 2016 at 11:09 pm
Page (1:2090354), slot 34 in object ID 1811133843, index ID 7, partition ID 72057594060275712...
1. Index ID #7 is a non-clustered index. It contains copies of table data (the index keys),...
November 29, 2016 at 7:08 pm
When you connected to your instance over the VPN with SSMS, did you ensure you are also using Named Pipes for communication, and not TCP/IP, so you're attempting the same...
November 2, 2016 at 7:43 pm
That will not break the transaction log chain, because you still have every transaction log backup you've taken. The oldest of them reside in one location, the newest reside in...
September 20, 2016 at 4:15 pm
Describe 'in two backup paths'.
Are you backing up to two locations at the same time using the MIRROR TO keyword of the BACKUP command? If that's what you mean, then...
September 19, 2016 at 5:33 pm
Fun with recursion 🙂
CREATE TABLE #t (a tinyint NOT NULL, b VARCHAR(10), c VARCHAR(10))
GO
INSERT #t (a, b,c) VALUES (1, 'ab', 'cd')
INSERT #t (a, b,c) VALUES (1, 'ef', 'gh')
INSERT #t (a,...
September 19, 2016 at 5:18 pm
Each new row will go to the page in each index where it belongs, based on its new place in the index. If there happens to be enough room on...
July 14, 2016 at 8:15 pm
MiguelSQL (7/8/2016)
However, two days later, the fragmentation levels are again at 37% and we are having the same issue.
What can I do to narrow down the issue?
The index is
CREATE NONCLUSTERED...
July 8, 2016 at 5:51 pm
It could simply be a standard step in creating an exception to a security rule. Just document a few relevant specific tasks that require the level of sysadmin status to...
July 4, 2016 at 4:52 pm
What is 'a problem'? Why did you have to restart? Was it to fix access to a cluster disk?
June 23, 2016 at 3:05 pm
I looked at the image you posted.
Wait time = 0ms. It's a disk read. That's what they look like. PAGEIOLATCH_* waits occur during disk reads. With that as both your...
June 13, 2016 at 12:43 pm
If this is an interview, then 'the needful' means "admit you don't know".
June 11, 2016 at 4:10 pm
Viewing 15 posts - 226 through 240 (of 700 total)