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
Explain Geometry datatype in sql server 2008 with example
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.
How to automatically create a log when an exception is being received into SQL Server?
What are the types of processing and explain each? : sql server analysis services, ssas
How to use subqueries with the exists operators in ms sql server?
What are horizontal and vertical scaling?
What are the benefits of normalization?
Explain trigger classes i.e. Instead of and after trigger?
System variable and temporary variables
What is model database in sql server?
How to find Duplicate Records In table?
What is report server project?
How to create a dml trigger using create trigger statements?
What is table-valued sub query?
How to generate create view script on an existing view?