Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

databaseanswers.net Latest Questions

  • 1
Clara
Beginner

I have a requirement to fetch value based on eff_dt and end date. given below sample data. Database : Oracle 11g Example data: id val eff_date end_date 10 100 01-Jan-21 04-Jan-21 10 105 05-Jan-21 07-Jan-21 10 100 08-Jan-21 10-Jan-21 10 100 11-Jan-21 17-Jan-21 10 100 18-Jan-21 21-Jan-21 10 110 22-Jan-21 null output: id val eff_date end_date 10 100 01-Jan-21 04-Jan-21 10 105 05-Jan-21 07-Jan-21 10 100 08-Jan-21 21-Jan-21 10 110 22-Jan-21 null

  • 0
Clara
Beginner

ORA-39112: Dependent object type CONSTRAINT:"xxx7" skipped, base object type TABLE:"xxxx" creation failed ORA-39112: Dependent object type CONSTRAINT:"xxx7" skipped, base object type TABLE:"xxxx" creation failed I am getting the following ORA-39112 error when running an import? How do I fix the ORA-39112 ...

  • 0
Clara
Beginner

I’m using ORACLE 11G database I have a table which have these columns: item, cod_line, business, cod_business, cod_ez_catalog_product_brand, business_unit, last_update_date It is called: products_table Take a look (i’m filtering for a specific product): SELECT item, cod_line, business, cod_business, cod_ez_catalog_product_brand, business_unit, last_update_date from products_table WHERE ITEM = '94TERFERE' I’m ...