Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating temp tables for an export....

Status
Not open for further replies.

eyetry

Programmer
Oct 2, 2002
560
US
I need to export rows from 6 tables that will be imported to a new DB. The first part of this works fine. I create a temp table from file_config with the appropriate rows...

create table file_config_export
as (select *
from user01.file_config config
where config.business_segment in(403,404,405,406,407,408)
and end_date is null);

The second step is failing. I'm trying to extract data to the next temp table based on column data found in file_config_export.

create table eep_customer_set_export
as (select *
from user01.eep_customer_set eepcs, file_config_export config
where eepcs.eep_customer_set_id config.eep_customer_set_id );

The error message:

where eepcs.eep_customer_set_id config.eep_customer_set_id
*
ERROR at line 4:
ORA-00920: invalid relational operator

Is this a punctuation thing or am I too simple???

I need to export rows from 6 tables that will be imported to a new test environment.....


 
never mind I see I missed some punctuation. I think my other problem might be autho...

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top