-
Archives
- May 2018
- April 2018
- December 2017
- September 2017
- August 2017
- July 2017
- June 2017
- March 2017
- February 2017
- January 2017
- October 2016
- September 2016
- August 2016
- October 2015
- July 2015
- March 2015
- January 2015
- December 2014
- August 2014
- July 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
-
Meta
Category Archives: SQL Server
[SQL Server] – Enable Mixed Mode authentication when sa account is disabled and Windows authentication unavailable
Hi, Consider a particular scenario where sa account gets disabled (by any reason) and windows authentication doesn’t have the rights to connect to the database server; basically windows authentication is not available. In such a case, you will not be able … Continue reading
Selecting all unique rows from duplicate rows in table in SQL Server
Hi, This post will show how you can write a select query to select only unique rows from a table that has many duplicate rows. In other words, this post will show the query to select distinct rows from a … Continue reading
Posted in SQL Server
Tagged eliminate duplicate rows, eliminate duplicate rows from table sql server, eliminate duplicate rows without deleting, retrieve first rows from group of duplicate rows, retrieve unique rows from sql server, row number, select by eliminating duplicate rows, select distinct rows, select first row from all groups in sql server, select first rows from group of duplicates, select unique rows in sql server, sql server, unique rows in sql server
Leave a comment
[Question – Help required] SQL Server 2008 R2 installation missing “Integration Services” Shared feature in features selection step
Hi, I’m installing SQL Server 2008 R2 Enterprise Edition in my system. The installation process is working perfectly except that in one of the steps where we are supposed to select the features, I observe that “Integration Services” shared feature … Continue reading
Posted in .NET, General, SQL Server
Tagged installation, Integration Services, integration services shared features not present, missing integration services, Missing integration services in sql server 2008 r2 installation, shared features missing integration services in sql server 2008 r2, sql 2008 r2 shared features missing integration services, sql server 2008 R2, SQL Server 2008 R2 Enterprise, sql server 2008 r2 integration services, sql server 2008 r2 missing integration services
4 Comments
[Error-Resolved]Could not find the database engine startup handle – SQL Server 2008 R2 installation
Hi, This post describes how to resolve the error that one might encounter while installing SQL Server 2008 R2 from an ISO. I had the setup for SQL Server 2008 R2 in an ISO file. I assumed that extracting the … Continue reading
Posted in .NET, General, SQL Server
Tagged could not find the database engine startup handle, could not find the database engine startup handle sql server 2008 installation, could not find the database engine startup handle sql server 2008 r2, database engine startup handle, database engine startup handle sql 2008 r2, iso file, r2, sql 2008 r2 installation, sql 2008 r2 installation error, sql server, sql server 2008, sql server 2008 R2, sql server 2008 r2 installation, sql server 2008 r2 installation error, virtual clone drive
Leave a comment
Retrieving column values as a comma separated string in SQLServer
Hi, This post is quite the opposite of the previous post. That is, in the previous post, We inserted a comma separated string into separate rows. Here we will return a single comma separated string by concatenating values from separate rows. … Continue reading
Adding items in comma-separated string into separate rows in SQLServer
Hi, In this post, I’ll show how to insert a items in a comma-separated string into separate rows in a table. Consider for example we have a comma-separated string such as “amogh, anish, anvesh, uday”. after inserting into the table, … Continue reading