adspace


how we can store the value like that 001,003,023 etc in sql
server 2005

Answer Posted / nadeem

create table t(NUM int(22))
insert into t values(001)
insert into t values(002)
insert into t values(023)

Is This Answer Correct ?    1 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List out the different types of locks available in sql server?

1056


How to enter binary string literals in ms sql server?

1255


do you know how to configure db2 side of the application? : Sql server database administration

1134


You have a stored procedure, which execute a lengthy batch job. This stored procedure is called from a trigger you do not want to slow the data entry process you do not want trigger to wait for this batch job to finish before it completes itself what you can do to speed up the process?

1223


What is standby servers? Explain types of standby servers.

1087


Can you index views?

958


What are different types of constraints?

1007


How can you append an identity column to a temporary table?

1076


How can we solve concurrency problems?

1129


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

1508


What is sql or structured query language?

1232


What are the kinds of subquery?

1117


What is normalization and what are the advantages of it?

1065


Disadvantages of the indexes?

1230


what is the difference between openrowset and openquery?

1207