Here's where I'm at with this issue...
I'd like to view the PLAN_TABLE (or some variant of it) via Access or Excel, so I can more easily view it.
When I try to import the table (ODBC) into MS Access, I get the field headers, but no data.
So, I thought I'd try Excel to see... in Excel, same ODBC connection, I get nothing... it acts like it's going to work, and then gives me no data.
So I thought, well, I'll just copy PLAN_TABLE into another table, and when I do, then I can see the data from THAT table.
Well, apparently not so... b/c now when I try something like:
Then I get this error:
I get the same error message if I do not include the 1 - 0 portion..
Any thoughts?
I'd like to view the PLAN_TABLE (or some variant of it) via Access or Excel, so I can more easily view it.
When I try to import the table (ODBC) into MS Access, I get the field headers, but no data.
So, I thought I'd try Excel to see... in Excel, same ODBC connection, I get nothing... it acts like it's going to work, and then gives me no data.
So I thought, well, I'll just copy PLAN_TABLE into another table, and when I do, then I can see the data from THAT table.
Well, apparently not so... b/c now when I try something like:
Code:
[CODE]CREATE TABLE TESTPLAN AS (SELECT * FROM PLAN_TABLE WHERE 1 = 0)
Then I get this error:
ERROR at line 1:
ORA-00997: illegal use of LONG datatype
I get the same error message if I do not include the 1 - 0 portion..
Any thoughts?