Viewing 15 posts - 61 through 75 (of 227 total)
I would focus upon "Encryption not supported on the client" message, where the "client" is Server A. Inspect ServerA's system event log (at very least, during the restart of the...
December 28, 2015 at 8:19 am
I am unsure what your application's "update conflict process" does - are you referring to SQL Server's internal process? If the application's, how does its code handle a Msg 3960,...
December 28, 2015 at 7:43 am
Was SQL Server raising an exception, assertion, or high severity error to its errorlog at the time?
December 27, 2015 at 4:21 pm
To receive an accurate and quick answer, please offer us a script that creates tables, inserts sample data, and shows the SQL attempted. Also offers us the expected results. Use...
December 27, 2015 at 1:40 pm
Hard to say without the complete verbatim error message. Connection failures go through Winsock, and if it raises an error (such as Network Name Not Found) the problem does not...
December 27, 2015 at 12:38 pm
Can't help you much on the specifics in their current state. But has the required reboot been done? If unsure, filter the system event log by event ID 6009. And...
December 27, 2015 at 12:28 pm
I don't have a list. However, https://support.microsoft.com/en-us/search?query=kbhotfixrollup%20%22database%20mirroring%22 should get you close to an answer.
I also suggest you very carefully review https://support.microsoft.com/en-us/kb/2729953, consider there are at least two issues...
December 27, 2015 at 1:11 am
Ensure SQL Server's Facets is configured to audit login failures. Look at the SQL Server errorlog for the user's account, at the time when the login failed error is raised....
December 27, 2015 at 12:15 am
Error is likely being raised due to an implicit cursor conversion - see https://msdn.microsoft.com/en-us/library/ms131660.aspx. Consider URL's discussion of SQL_SUCCESS_WITH_INFO and
The application can determine what type of cursor is now...
December 26, 2015 at 11:54 pm
Instead of rebuilding, see whether UPDATE STATISTICS, by itself, improves performance.
December 26, 2015 at 10:41 pm
Temporary tables have session-level scope. A new connection will be unable to see temporary objects created in another connection. It is possible to use global temporary tables, but I would...
December 26, 2015 at 10:35 pm
Open
SQL Server Configuration Manager | SQL Server Network Configuration | Protocols for <InstanceName>
and verify TCP/IP protocol is Enabled. Enable it if not enabled, and restart SQL Server. Double...
December 26, 2015 at 10:17 pm
EXECUTE syntax (https://msdn.microsoft.com/en-us/library/ms188332.aspx) states
@parameter
Is the parameter for module_name, as defined in the module.
Key phrase being "in the module", where "module" refers to an object in sys.all_sql_modules. In contrast to...
December 26, 2015 at 9:49 pm
Implicit conversion due to data type precedence, forcing a scan (AKA Make sure data types match). Avoidable uses of temp tables, when a CTE or a derived table is equivalent...
December 25, 2015 at 8:44 pm
COPY ONLY is useful when differential backups are taken. A differential backup cannot be restored unless its full backup is restored first. A COPY ONLY backup will not change the...
December 25, 2015 at 4:06 pm
Viewing 15 posts - 61 through 75 (of 227 total)