Interview Questions

How to Change SQL Server Compatibility level

  Changing Database compatibility level will be required when you upgrade your database from one version to another and you…

5 years ago

View Compatibility level of Database

To know what is compatibility Level check this post link. You can view the compatibility of SQL Server Database in…

5 years ago

SQL Server Compatibility Level

SQL Server Compatibility level will be used to decide how SQL will use it features. By setting compatibility level will…

5 years ago

View in SQL server

A view is a virtual table.  View will not store any data physically. The data is pulled from the underlying…

6 years ago

how to add new row data in power bi

  If you have loaded a table manually in Power BI and you want to add a new row to…

6 years ago

What You Know About Maximum Number Of Non Clustered Index In Sql Server

What You Know About Maximum Number Of Non Clustered Index In Sql Server ? You may not be creating so…

7 years ago

What is the limit of columns that can be included in an index

For SQL Server 2012 the limit of columns that can be included in the index is 16. SQL Server 2016…

7 years ago

What is the limit of index size for non clustered index?

In SQL Server 2014 version the limit of index size is 900 bytes. In SQL Server 2016 version the limit…

7 years ago

Can we fire a trigger Manually

No we cannot fire a trigger manually. It will only occur when an event occurs like insert,update or delete.

7 years ago

What is a heap table

A HEAP table in a sql server is a table without a clustered index. It can have non clustered index…

7 years ago