Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is Stored Procedure?

What is Views in sql server?

Difference between a User Defined Function and a Stored Procedure

Difference between a primary key and a unique key?

What is a join and explain different types of joins.

Difference between temp table and table variable

Difference between Triggers and Stored Procedures

Difference between UNION ALL Statement and UNION

What is COALESCE / Why do we use COALESCE?

Why we use SET ROWCOUNT in Sql

How many clustered index can have a table

How many types of local tables in SQL SERVER

Difference between DELETE and TRUNCATE

What is Aggregate Functions?

What is Row_Number()?

What are Ranking Functions?

What is NOLOCK?

What is CTE?

What are the Advantages of using CTE?

What is the STUFF function and how does it differ from the
REPLACE function?

What are the difference between clustered and a non-clustered index?

What are the different index configurations a table can have?

Difference between a HAVING CLAUSE and a WHERE CLAUSE?

Difference between SET and SELECT

Provide all the built in string function of SQL SERVER

Difference between char and varchar data types

Define candidate key, alternate key, composite key.

What are constraints? Explain different types of constraints.

What is a self join? Explain it with an example.


How will you convert table row to a column comma separated value

Answer Posted / jasmeet kaur

What is Views in sql server?
a view is a virtual table,which provides access to a subset of column from one or more table.a view can derive its data from one tables. an output of a query can be stored as a view. view act like a table but it does not physically take any space.view is good way to present data in a particular users from accessing the table directly.

Difference between DELETE and TRUNCATE

delete command
1.DML command
2.can be rollback
3.where clause use
4.slower than truncate
5.trigger can not be fired
6.delete all or selected rows
7.return the number of rows

TRUNCATE command
1.DDL command
2.can not be rollback
3.where clause not use
4.faster than delete
5.trigger can be fired
6.delete all rows
7.does not return the number of rows

What is Stored Procedure?
It is precompiled object stored in the database. It can invoke DDL and DML statement and can return value.

Difference between a HAVING CLAUSE and a WHERE CLAUSE?

where clause="where" is a kind of restriction statement . we use where clause to restrict all data from database. where clause is using before result retrieving.
having clause=having clause is using after retrieving the data. having clause is a kind of filtering command.

What are constraints?
a constraints allows you to apply simple referential checks to a table.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain log shipping and mention its advantages.

1038


How to disable stored procedure sql server?

1598


How to select some specific rows from a table in ms sql server?

998


What is a rownum?

964


What are the differences between lost updates and uncommitted dependencies?

1067


What is the maximum size of a dimension? : sql server analysis services, ssas

1036


What does REVERT do in SQL Server 2005?

949


What is RAID? What are the different types of RAID configurations?

1122


What is the difference between indexing and hashing?

1156


Why use view instead of a table?

940


You want to use bids to deploy a report to a different server than the one you chose in the report wizard. How can you change the server url?

155


What kind of problems occurs if we do not implement proper locking strategy?

1395


Which data types generate inaccurate results if used with an = or <> comparison in a where clause of a sql statement?

1055


Tell me something about security and sql azure?

114


What are “lost updates”?

989