Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-02-26 : 12:16:03
|
| Pandurang writes "Can anybody there tell me how to change name of the table using Query Analyser. I know that we can do this from Enterprise Manager.It will be gr8 help for meRegardsPandurangpandurang@manas-solutions.com" |
|
|
JamesH
Posting Yak Master
149 Posts |
Posted - 2002-02-26 : 12:21:02
|
| sp_rename [ @objname = ] 'object_name' , [ @newname = ] 'new_name' [ , [ @objtype = ] 'object_type' ]Books On Line should be your first resource.JamesH. |
 |
|
|
|
|
|