ASP.NET 2.0 Question:
Download Job Interview Questions and Answers PDF
How to rename a table using sql queries?
Answer:
This done by
exec sp_rename 'oldTableName' , 'newTableName'
Use server side for secure validation. Use client side for fast,user friendly validations.
Execute sp_rename 'oldtablename', 'newtableaname'
exec sp_rename 'oldTableName' , 'newTableName'
Use server side for secure validation. Use client side for fast,user friendly validations.
Execute sp_rename 'oldtablename', 'newtableaname'
Download ASP.NET 2.0 Interview Questions And Answers
PDF
Previous Question | Next Question |
Can a .NET web application consume Java web service? | Web service support a) Data set b) dataReader c) both of above d) none of above |