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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Rename Table Name

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 me

Regards
Pandurang

pandurang@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.

Go to Top of Page
   

- Advertisement -