SQL SERVER INTERVIEW QUESTIONS - PART 1
What is the significance of NULL value and why should we avoid permitting null values?
What is SQL whats its uses and its component ?
The DML component of SQL comprises four basic statements:
* SELECT to get rows from tables
* UPDATE to update the rows of tables
* DELETE to remove rows from tables
* INSERT to add new rows to tables
What is DTS in SQL Server ?
What is the difference between SQL and Pl/Sql ?
What is the significance of NULL value and why should we avoid permitting null values?
Difference between primary key and Unique key?
Both constraints will share a common property called uniqueness. The data in the column should be unique. The basic difference is,
· Primary key won’t allow null value. Whereas, unique key will accept null value but only one null value.
· On creating primary key, it will automatically format the data inturn creates clustered index on the table. Whereas, this characteristics is not associated with unique key.
· Only one primary key can be created for the table. Any number of Unique key can be created for the table.
Null
means no entry has been made. It implies that the value is either
unknown or undefined.We should avoid permitting null values because
Column with NULL values can't have PRIMARY KEY constraints. Certain
calculations can be inaccurate if NULL columns are involved.
What is SQL whats its uses and its component ?
The
Structured Query Language (SQL) is foundation for all relational
database systems. Most of the large-scale databases use the SQL to
define all user and administrator interactions. It enable us to retrieve
the data from based on our exact requirement. We will be given a
flexibility to store the data in our own format.
The DML component of SQL comprises four basic statements:
* SELECT to get rows from tables
* UPDATE to update the rows of tables
* DELETE to remove rows from tables
* INSERT to add new rows to tables
What is DTS in SQL Server ?
Data
Transformation Services is used to transfer the data from one source to
our required destination. Considering am having some data in sql server
and I need to transfer the data to Excel destination. Its highly
possible with dialogue based tool called Data Transformation services.
More customization can be achieved using SSIS. A specialized tool used
to do such migration works.
What is the difference between SQL and Pl/Sql ?
Straight
forward. SQL is a single statement to finish up our work.Considering, I
need some data from a particular table. “Select * from table” will
fetch the necessary information. Where as I need to do some row by row
processing. In that case, we need to go for Procedural Logic / SQL.
What is the significance of NULL value and why should we avoid permitting null values?
Null
means no entry has been made. It implies that the value is either
unknown or undefined.We should avoid permitting null values because
Column with NULL values can't have PRIMARY KEY constraints. Certain
calculations can be inaccurate if NULL columns are involved.
Difference between primary key and Unique key?
Both constraints will share a common property called uniqueness. The data in the column should be unique. The basic difference is,
· Primary key won’t allow null value. Whereas, unique key will accept null value but only one null value.
· On creating primary key, it will automatically format the data inturn creates clustered index on the table. Whereas, this characteristics is not associated with unique key.
· Only one primary key can be created for the table. Any number of Unique key can be created for the table.
No comments:
Post a Comment
Hmmmmm... what are you thinking? Do not forget to comment,It helps us to improve this blog and help us to make better. on