Viewing 15 posts - 16 through 30 (of 259 total)
Do a "winver" or "msinfo32" from run for exact information on OS version. Nope, this hardware is not going to play well with latest versions of OS and SQL. Intel...
October 7, 2019 at 8:33 pm
I don't think you can open a report created in Data tools(VS) 2017 using VS 2010,2012 or 2013 (As far as I know).
October 7, 2019 at 7:50 pm
Sounds like you are running on Windows 2008 OS based on the information provided. If you are looking for SQL 2016/2017, you might want to consider spinning up a machine...
October 7, 2019 at 7:42 pm
Login with sid = 0x01 from sys.logins is the original 'sa' account that gets created during install and this cannot be dropped. In your case, They might have just renamed...
October 4, 2019 at 3:25 pm
Glanced over your log and it is clearly stating that WSFC was unhealthy - lost Quorum. AGs are heavily dependent on health of your cluster. Below are the events which...
September 30, 2019 at 8:30 pm
Are you aware of sp_help_revlogin?? If not, check this
September 24, 2019 at 5:10 pm
Should be fine if it's just for learning/POC/Experimental purposes. As far as I know, you should not run into any issues with installs.
July 30, 2019 at 5:33 pm
You should get that information in detail in your cluster logs.
BTW, SQL tiger team released an outstanding utility which can be used to analyze (including the Cluster Logs, SQL Error...
May 23, 2019 at 1:59 pm
How about this?
DECLARE @qry NVARCHAR(max);
SET @qry = 'SELECT * into ContactLog_' + cast(year(getdate()) AS VARCHAR(4)) + cast(month(getdate()) AS VARCHAR(2)) + cast(day(getdate()) AS VARCHAR(2)) + ' FROM ContactLog'...
April 16, 2019 at 5:22 pm
As Sue mentioned, you need to use [ ]. In your case that would be " Alter database [ENR Access DB] "
March 27, 2019 at 12:30 pm
February 1, 2019 at 10:30 am
Good write up Deepak. Never knew it's that simple to implement. Any pitfalls/limitations and GOTCHAs to be aware of based on your experience?
January 16, 2019 at 8:50 am
You can't use SSMS to connect and manage IIS, You need something called IIS Manager for that. If you are referring to SSIS, I would not use SSMS 17.9.1 to...
December 18, 2018 at 10:21 am
End to End (E2E) migration experience.
December 13, 2018 at 1:40 pm
Viewing 15 posts - 16 through 30 (of 259 total)