Difference between sql server 2000 and sql server 2005?

Answer Posted / rajneesh hajela

datatype:
2000
1. new datatype 2005
varchar(8000 character) varchar(Max)(2^31 Character)

2.
nvarchar(4000 character) nvarchar(max)(2^30 character)


3.
varbinary(8000 byte) nvarbinary (2^31 byte)

4. xml --> stored xml data

---------------------

SSIS (SQLSERVER Integration service)
-----------

try/ catch

------------
Pivot,Unpivot

--------

2000
select top 10 *
2005

select top(10) *

-----------

Rajneesh Hajela

Is This Answer Correct ?    23 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is @@rowcount in sql?

562


Where can you add custom error messages to sql server?

583


Tell me what is a linked server?

564


What are the authentication modes in sql server? How can it be changed?

601


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

586






What command is used to delete a table from the database in the sql server and how?

540


Is resultset an interface?

554


How will you optimize a stored procedure optimization?

517


Do you know sql server 2008 introduces automatic auditing?

513


What is a mutating table error and how can you get around it?

536


How do I connect to sql server database?

476


What is a not null constraint?

595


what is a schema in sql server 2005? : Sql server database administration

513


Can you explain about buffer cash and log cache in sql server?

502


What is the difference between SQL notification and SQL invalidation?

589