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 the main purpose of having conversation group?

662


What is difference between rownum and rowid?

671


What is Command line parameters in PLSQL.?

762


How do I partition a table in sql server?

713


What is a domain constraint give an example?

780






Does a sql server 2005 select statement require a from?

776


How do I find query history in sql server?

672


How to connect a database with sql express.?

752


What are blobs, tables, and Queues? Is SQL is the standard way to query blobs, tables, and queues?

131


What is a trigger and its types?

732


How to transfer an existing table from one schema to another schema in ms sql server?

701


What is temporary table in sql server? Why we use temp table?

703


What is a data collection table?

728


What are sql server procedures?

733


How do you rename a table in sql server?

644