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
List out the different types of locks available in sql server?
How to enter binary string literals in ms sql server?
do you know how to configure db2 side of the application? : Sql server database administration
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?
What is standby servers? Explain types of standby servers.
Can you index views?
What are different types of constraints?
How can you append an identity column to a temporary table?
How can we solve concurrency problems?
What kind of problems occurs if we do not implement proper locking strategy?
What is sql or structured query language?
What are the kinds of subquery?
What is normalization and what are the advantages of it?
Disadvantages of the indexes?
what is the difference between openrowset and openquery?