Hi ,
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
|
|
|
|
|
|
|
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
|
||
|
|
|
|
Thank you very much I was trying to create a new backup table. |
||
|
|
|
|
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 |
||
|
|
|
|
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.
|
||
|
|