Viewing 15 posts - 16 through 30 (of 227 total)
Before following this tip, review the bootstrap folder and strive to determine why the upgrade failed. If you cannot determine why the upgrade failed, the advantage of reinstalling the operating...
September 18, 2017 at 7:13 am
Did a human kill CHECKDB or was CHECKDB unexpectedly killed by a high severity error that was raised to SQL Server's errorlog?
If the latter, you need to inspect...
June 27, 2017 at 8:38 am
Also see this fix
April 24, 2017 at 9:32 pm
Agree that a restart of at least SSRS can be required after running a SP setup, as can be verified by inspecting the C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\<date>\Summary<machine_date>.txt file that...
March 2, 2017 at 1:22 pm
Pass through authentication (already suggested by a few respondents) can solve this problem, if network control allows. But, I have to wonder what is the purpose of the current lack...
December 16, 2016 at 9:57 pm
Implemented before I was hired. Hopefully buried before I retire.
My key lookups are due to a past propensity to add columns without considering normalization, a slavish reliance upon surrogate...
December 14, 2016 at 8:40 pm
Run perfmon /sys and look at process private bytes for SSMS when it OOMs.
November 4, 2016 at 4:04 pm
Is 'sync with backup' set and do you backup the distribution db?
November 4, 2016 at 3:52 pm
What works best depends upon the IO demands of the applications. If the applications have been observed to demand sudden, rapid, and seemingly uncontrollable increases in tempdb data space or...
September 21, 2016 at 10:49 am
SAN replication is a hardware-based solution, which means you need to read your hardware's documentation, especially where it specifically mentions SQL Server. SQL Server uses write-ahead logging (search msdn for...
September 21, 2016 at 9:57 am
Temporarily increase the -outputverboselevel of the distribution job, and inspect results.
September 21, 2016 at 8:37 am
If you must use a cursor, you need to think about whether a static cursor or a dynamic cursor (etc) would more explicitly suit the needs of business/logic. Transact-SQL cursors...
September 13, 2016 at 5:52 pm
Whether jobs are started asynchronously by sp_start_job or sqlagent's call to it, there is a per-sqlagent-subsystem max worker thread limit. Once that limit is reached, SQLAgent.out logs that stall. Best...
September 13, 2016 at 8:50 am
There is a way to suppress inserts, but it is not going to be supported by MS:
use msdb
create trigger NoJobHistory on dbo.sysjobhistory for insert as
rollback
I cannot predict what other...
September 12, 2016 at 7:18 pm
Log files must be sequentially written. The spid that grows the log file by 10GB will have exclusive access, until 10GB is written. Other spids must wait. If SQL...
September 12, 2016 at 7:53 am
Viewing 15 posts - 16 through 30 (of 227 total)