i want to create procedure for create table in sql server
2005
for example
create procedure create_table
@table varchar(20)
as
create @table(
id int,
name char(20)
)
but it will get error
what is solution?
Answer Posted / monty
hello Saravanan Sankar
thank you for your answer
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is 2nf in normalization?
What is data compression? : sql server database administration
What are the methods used to protect against sql injection attack?
What is use of dbcc commands?
How to turn off warning messages during php execution?
Can we run Reporting Services with SQL Server express edition, which is a free version of SQL Server?
What is the default sql server instance name?
What is a mutating table error and how can you get around it?
How to add additional conditions in SQL?
Define constraints and give an example of their use?
What is the most common type of join?
How is table type constraint applied to a table?
Tell me what are cursors and when they are useful?
How to drop an existing schema in ms sql server?
How to achieve Paging of records in SQL SERVER?