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
What are the types of table?
Explain what is the use of custom fields in report?
Explain the microsoft sql server delete command? : SQL Server Architecture
Is the primary key column of a table an index in ms sql server?
What is the main difference between ‘between’ and ‘in’ condition operators?
A trigger can reference objects outside the current database? State true or false.
How do you maintain database integrity where deletions from one table will automatically cause deletions in another table?
Differentiate between a primary key and a unique key.
List the data types available in mssql?
How to join two tables in a single query in ms sql server?
1.what are diff types of joins , and explain diff between cross join and full outer join 2.diff types of views 3. Diff types of index 4. What is diff b/w stores procedure and function procedure 5.diff between double and int in SQL 6.diff between char and varchar in SQL. 7.Oracle or SQL whice you will preferred and why.
Where are full-text indexes stored?
What are 3 ways to get a count of the number of records in a table?
Explain atomicity?
If a user does not have permission to a table, but has permission to a view created on it, will he be able to view the data in table?