![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
ORA-01400: cannot insert NULL into ("FLOWS_020100"."WWV_FLOW_SW_RESULTS"."FILE_ID" ) |
#3
| |||
| |||
|
|
I have been able to run scripts for a while, but now I am unable to run anything - no matter what user I login as. The errorcode is as follows: ORA-01400: cannot insert NULL into ("FLOWS_020100"."WWV_FLOW_SW_RESULTS"."FILE_ID" ) Unable to submit the script to run. (If I instead of the script try to run my code as a SQL Command, the result is: "The requested URL /apex/wwv_flow.show was not found on this server "). |
#4
| |||
| |||
|
|
peter.koch.larsen (AT) gmail (DOT) com wrote: I have been able to run scripts for a while, but now I am unable to run anything - no matter what user I login as. The errorcode is as follows: ORA-01400: cannot insert NULL into ("FLOWS_020100"."WWV_FLOW_SW_RESULTS"."FILE_ID" ) Unable to submit the script to run. (If I instead of the script try to run my code as a SQL Command, the result is: "The requested URL /apex/wwv_flow.show was not found on this server "). How were you running the scripts before? Via SQL*Plus? The error you mention seems to point to a munged HTMLDB/Apex install. When did it all stop working? |
#5
| |||
| |||
|
|
CREATE TABLE ttt ( id int NOT NULL, PRIMARY KEY ( id ) ) gives the error "ORA-00911: invalid character".. |
|
I also tried to use SQL*Plus, but initially the only command I could make work was "EXIT". Not even HELP worked. Removing the "/nolog" option from the startup line did make SQL*Plus perform without any problems (so far!). |
|
All in all my new meeting with Oracle (last visit was version 7.x) has been disappointing. I'm quite confident that Oracle basically is a nice and stable product, but what I've met with 10g simply is so sloppy I'd never recommend it to others. |

#6
| ||||
| ||||
|
|
CREATE TABLE ttt ( id int NOT NULL, PRIMARY KEY ( id ) ) gives the error "ORA-00911: invalid character".. It should not be be a surprise that the above throws an error as this is invalid syntax. Try the following instead: CREATE TABLE ttt ( id NUMBER NOT NULL PRIMARY KEY ); |
|
I also tried to use SQL*Plus, but initially the only command I could make work was "EXIT". Not even HELP worked. Removing the "/nolog" option from the startup line did make SQL*Plus perform without any problems (so far!). If you have not installed help, then it will not work. You will receive the following: SP2-0171: HELP not accessible. |
|
All in all my new meeting with Oracle (last visit was version 7.x) has been disappointing. I'm quite confident that Oracle basically is a nice and stable product, but what I've met with 10g simply is so sloppy I'd never recommend it to others. From what I've seen above, the problem is not Oracle 10g, but rather the usage of it. ![]() |
|
Cheers, Brian /Peter |
![]() |
| Thread Tools | |
| Display Modes | |
| |