Viewing 15 posts - 241 through 255 (of 708 total)
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
Also, once you TDE any database on an instance, then tempdb also automatically becomes a TDE database to prevent any TDE-encrypted data from being written unencrypted to a tempdb file....
June 10, 2016 at 9:50 pm
We use TDE with an HSM for several multi-TB highly-transactional databases.
Once you set up and enable the encryption, it will run silently in the background encrypting the database while normal...
June 9, 2016 at 2:46 pm
The foundation certification for both SQL Server dev and DBA is MCSA:
https://www.microsoft.com/en-us/learning/mcsa-sql-certification.aspx
Once you have passed the three MCSA exams, you may work toward one of the SQL Server MCSE certifications.
-Eddie
June 6, 2016 at 12:22 pm
Why BCP at all? You're adding the expensive steps of converting all of your data into and back out of text while forcing all of it to be written, flushed,...
May 30, 2016 at 7:09 pm
Queries aren't routed, the entire connection is. The connection does not change based on the type of query executing on that connection. You will connect to the Listener in either...
May 30, 2016 at 2:07 pm
If you have a support agreement, call them up and scream at them.
May 27, 2016 at 3:31 pm
What does 'inaccessible' mean?
After the failover, is the database online and available on the second instance?
If the database isn't online, then there's one troubleshooting path.
Have those domain users...
May 26, 2016 at 3:57 pm
Most efficient would be the 3-byte date data type.
Second would be an integer storing the number of days since January 1, 1900 (use DATEDIFF(d, 0, <input_date_value>) to calculate the value,...
May 13, 2016 at 1:52 pm
Viewing 15 posts - 241 through 255 (of 708 total)