Viewing 15 posts - 241 through 255 (of 700 total)
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...
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
You have lots of time and the database files are small. This can be easy:
1. Detach each database. This will complete all active transactions and shut down each database in...
May 12, 2016 at 9:36 pm
morleyf (4/19/2016)
... Since this Instance is servicing public facing applications in the DMZ, is it safe to...
April 19, 2016 at 9:13 pm
Ray K (3/30/2016)
Groupthink is a phenomenon that is highly destructive -- and all too common in group...
April 12, 2016 at 1:16 pm
szejiekoh (3/22/2016)
Specifies the TCP/IP authentication requirements for connections for this endpoint.
Does the "for" actually means "to" ?
-- means that client connections to this endpoint must be authenticated with...
March 22, 2016 at 1:33 pm
If the source database is live in production, and the Database Master Key (DMK) has been encrypted by the instance's Service Master Key (SMK), then you can create any number...
March 17, 2016 at 7:46 pm
I would start by looking at the following things:
> <frame procname="" line="89" stmtstart="9704" stmtend="18556" sqlhandle="0x03001200f252954d9248480120a400000100000000000000" />
This 9,000-character-long call looks like it's part of a much-larger batch. Examine that for locks...
February 29, 2016 at 10:27 am
Check the Windows logs on the server where the errors were thrown, because it looks like you lost the transaction log file, or access to it. My gut says you...
February 19, 2016 at 12:26 am
Viewing 15 posts - 241 through 255 (of 700 total)