Excuting the line of SQL: SELECT * INTO assignment_20081120 FROM assignment ;
against a database in oracle to back up a table called assignment gives me the following ORACLE error: ORA-00905: Missing keyword
|
feedback
|
|
Unless there is a single row in the Assuming you are trying to create a new table and copy the existing data to that new table
| |||
|
feedback
|
|
You can use select into inside of a PLSQL block such as below.
This code will only work when there is exactly 1 row in assignment. Usually you will use this kind of code to select a specific row identified by a key number.
| |||
|
feedback
|
|
First, I thought:
But after manually generating a table, it still did not work, still showing the "missing keyword" error. So I gave up this time and solved it by first manually creating the table, then using the "classic"
Which worked as expected. If anyone come up with an explanaition on how to use the | |||
|
feedback
|
|
Late answer, but I just came on this list today! CREATE TABLE assignment_20101120 AS SELECT * FROM assignment; Does the same. | |||
|
feedback
|