Viewing 15 posts - 16 through 30 (of 49 total)
Below are the environments we use for the last 2 GA releases plus the version under development of our software product. The Test, Performance, and QA environments for the...
August 14, 2015 at 5:31 am
It's amazing what one can do with SQL Server on bare-metal commodity hardware with a well architected system and attention to detail. I've been a staunch advocate of the...
June 28, 2015 at 6:41 am
Install or upgrade? I assume both. Is this happening often?
The QA databases as well as databases used for automated unit and performance testing are upgraded nightly with the latest check-in...
June 13, 2015 at 1:40 pm
Yes, I sometimes rename objects and columns. Our development process is Agile with Continuous Integration. Database changes checked into source control are deployed to QA every night. ...
June 12, 2015 at 6:18 am
IMHO, Express Edition is fine for a production environment as long as meets performance and availability SLAs. 4 cores is more than enough for many workloads. The 10GB...
February 27, 2015 at 5:30 am
For starters, check the execution log in the MDW database for the problem collection set to see if any issues are logged:
SELECT *
FROM syscollector_execution_log
WHERE collection_set_id = <specify-collection_set_id-here>
ORDER BY finish_time;
You...
November 23, 2014 at 7:37 pm
File tables don't allow local memory-mapped file access, which may explain the "request is not supported" error with BULK INSERT. I would expect a technique that performs the bulk...
November 21, 2014 at 5:22 am
How much did the choppy video and connection errors really cost Apple in terms of lost revenue or reputation? Testing their CDN performance using a world-wide bot network...
September 23, 2014 at 6:11 am
Directory permissions are not inherited for SQL trace files. SQL Server sets permissions such that only the service account, local administrators, and the owner can access the file because...
July 25, 2014 at 8:28 pm
Any thoughts to using PowerShell instead of VBScript?
May 2, 2014 at 5:51 am
The trace scripts included in this Stairway are compatible with SQL Server 2005 through 2012. However, note that the GroupID event column (returned as the last column by fn_trace_gettable)...
January 18, 2014 at 6:09 pm
majinbao (11/7/2013)
the only information I can get is object:alert, but it doesn't tell me the TextData is null. I can not tell...
November 8, 2013 at 6:40 am
I've become a fan of agile (sic lower-case) development methodologies for this exact reason. It is up to the team to decide how good is good enough by balancing...
November 7, 2013 at 4:30 am
My manager thinks, due to previous experience using the profiler GUI on a production stock market-related database, that profiler doesn't "always hose production."
A properly filtered Profiler trace...
July 25, 2013 at 6:55 am
Indianrock (7/24/2013)
July 25, 2013 at 5:48 am
Viewing 15 posts - 16 through 30 (of 49 total)