how we can store the value like that 001,003,023 etc in sql
server 2005
Answer Posted / laxman r
UPDATE [APPPARAM] SET [APPPARAM_VALUE] = Replicate('0', 3 -
Len(convert(varchar, (@DATABASE_IDENTITY_NO + 1)))) +
convert(varchar, (@DATABASE_IDENTITY_NO + 1)) FROM
[APPPARAM] a WHERE a.[APPPARAM_KEY] = @AppParamKey
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are the options which must be set to allow the usage of optimistic models?
What is spid in sql server profiler?
Tell me about joins in database system and explain each in detail.
What are the different sql server versions?
What is compound operators?
Can foreign key be deleted?
Differentiate between a having clause and a where clause.
How can I tell if sql server is 32 or 64 bit?
Where cross join is used?
Every night you run a full backup after every 3 three hours you make a differential backup every hour you make an incremental backup in a worst-case scenario, how much work you can lose?
How to use "if ... Else if ... Else ..." Statement structures in ms sql server?
Define left outer join in sql server joins?
What does it mean to normalize data?
How to create percentile function?
What the different components of Replication and what is their use?