Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Error:Failed to retrieve data from database [Vendor Code:3001]

user11961230Nov 12 2009 — edited Nov 12 2009
Hello FOlks am trying to run a crystal report but when i try to run it somehow returns this error i.e [Error:Failed to retrieve data from database [Vendor Code:3001], I have no clue wats happening with this.Can anybody please throw some light on this.Am providing the sql behind this report for reference.
 SELECT "CLIENT"."CLIENT_NAME",
        "RECOVERY"."AMOUNT",
        "RECOVERY"."RECOVERY_TRANSACTION_INTERNAL",
        "RECOVERY"."ALLOCATION_CHECK_AMOUNT",
        "RECOVERY"."RECOVERY_DATE"
   FROM "HRI1_OWNER"."CLIENT""CLIENT",
        "HRI1_OWNER"."EVENT_CASE""EVENT_CASE",
        "HRI1_OWNER"."SETTLEMENT""SETTLEMENT",
        "HRI1_OWNER"."RECOVERY""RECOVERY"
  WHERE "CLIENT"."CLIENT_ID" = "EVENT_CASE"."CLIENT_ID"
    AND "EVENT_CASE"."EVENT_CASE_ID" = "SETTLEMENT"."EVENT_CASE_ID"
    AND "SETTLEMENT"."SETTLEMENT_ID" = "RECOVERY"."SETTLEMENT_ID"
    AND "CLIENT"."CLIENT_CODE" <> 'CLIENT  1'
    AND "CLIENT"."MAJOR_CLIENT_ID" in
        (Select major_client_id
           from major_client
          where major_client_code in ('LA', 'PFG'))
  ORDER BY "CLIENT"."CLIENT_NAME"
Edited by: user11961230 on Nov 12, 2009 6:57 AM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 10 2009
Added on Nov 12 2009
3 comments
426 views