Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
12k views

Rename Oracle Table or View

What is the syntax to rename a table or view in Oracle?
4
votes
2answers
713 views

sql:need to change constraint on rename table?

i have change name of table through procedure sp_rename.Do i need to change fk constraint of child table?
2
votes
2answers
197 views

can't rename mysql table

I'm trying to rename my table using this SQL. I'm using MySQL 5.1.41 on Windows XP. USE 'bobby_tables'; ALTER TABLE gc_acompte_fournisseur RENAME TO GC_Acompte_Fournisseur; And the ...
2
votes
2answers
377 views

Oracle - drop table constraints without dropping tables

I'm doing some bulk migration of a large Oracle database. The first step of this involves renaming a whole load of tables as a preparation for dropping them later (but I need to keep the data in them ...
1
vote
1answer
79 views

web2py: How to rename a table?

How do I rename a database table in web2py? If there is not a direct way, what is the best workaround to do this? All I found was this thread ...
0
votes
0answers
25 views

rename mysql partitioned table?

With MySQL 5.1, can you safely (and quickly) rename a partitioned InnoDB table named xxx to xxx_old via RENAME TABLE xxx xxx_old ... or will MySQL do something stupid, like lock the table for 3 days ...
0
votes
2answers
467 views

Change A Database's Table's Name (SQL Server 2008)

Title says it all I got a table named tblHello and I wanna rename it to Hello
0
votes
5answers
176 views

The Ghost of a Renamed Table

I have renamed a table in a SQL Server 2008 database, from eL_CourseStepUserNotes to StepUserNotes. I renamed the table using the SSMA. The table is used in a ASP.NET 4.0 app. I use LINQ to SQL for ...