Error screenshots and resolution.
Issue from SSMS 2017 – Click here to download SSMS 2017
SQLMint
Error screenshots and resolution.
Issue from SSMS 2017 – Click here to download SSMS 2017
Issue:
SQL Server 2016 would not send mail on a new server migration to Windows Server 2016
Solution:
By default, Windows Server 2016 installs .net framework 4.7
The database mail feature needs .Net 3.5
Install this windows feature and this issue gets resolved.
“R is a free software environment for statistical computing and graphics” – source click here.
Useful links:
Quick notes:
Highlights and useful links.
Below is an error that showed up while trying to execute a stored procedure on instance X from SQL server instance y. MYSERVER here represents the name of SQL Server instance X
Msg 7411, Level 16, State 1, Line 1
Server ‘MYSQLSERVER′ is not configured for RPC.
Solution to this was to set RPC in/out to true. Below are the T-SQL commands used.
exec sp_serveroption @server=’MYSQLSERVER′, @optname=’rpc’, @optvalue=’true’
exec sp_serveroption @server=’MYSQLSERVER′, @optname=’rpc out’, @optvalue=’true’
Below shows how to do this graphically , using SSMS – SQL Server Management Studio.
Click here for the download link for Microsoft SQL Server Data Tools – Business Intelligence for Visual Studio 2013 – this installs Microsoft SQL Server Data Tools Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2013, SSIS 2012/2014 etc.
Click here for a download link for this useful SQL Server 2012 System Views Map – in PDF and XPS file format(s)
Below are reference links to Microsoft documentation web pages listing deprecated database features from SQL 2005 to SQL 2014….
2005 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.90).aspx
2008 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.100).aspx
2012 http://technet.microsoft.com/en-us/library/ms143729(v=sql.110).aspx
2014 http://msdn.microsoft.com/en-us/library/ms143729(v=sql.120).aspx