How to get more than 1000 rec from Oracle?

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default How to get more than 1000 rec from Oracle?

    Hi

    i got this issue from 1 of my fnd.
    can any one tell me how to over come this issue?

    I need help in solving the issue

    This is the oracle error coming when we try to export
    the records to the excel sheet.

    Macromedia]ORA-01795:
    maximum number of expressions in a list is 1000

    This error is due to the limitation in oracle db list
    query.

    example:

    select * from FEEDBACK_IN Where feedback_in.case_id
    IN ( (param 1) , (param 2) , (param 3) , (param 4) ,
    (param 5) , (param 6) , (param 7) , (param 8) , (param
    9) , (param 10) , (param 11) , (param 12) , (param
    13)?????????.(param 5000))

    If the list exceeds 1000, we will get the following
    error from the database. And there is a limitation in
    oracle db to 1000.

    We need to rewrite the query to avoid the list error
    if the list exceeds more then 1000 records.


    vkunirs Guest

  2. Similar Questions and Discussions

    1. Would I buy a Canon EOS 1000
      Hello, I've just written a very long mail and noticed it was so boring that probably noone would want to read it, so I'll try to make it short...
    2. Umax Powerlook 1000 ???
      I think the (new?) Umax "Powerlook 1000" with their "UTA-1000" transparency adapter will allow me to scan my 8x10 negs and transparencies. Can...
    3. $1000 to spend
      I am fairly new to the list and am in no way a pro. I am thinking of pouring some hobby money into photo equipment. I would like to get a 35mm...
    4. VTK-1000 error
      Having problem connecting to management server through OEM console. The username and password worked earlier and now for some reason not...
  3. #2

    Default Re: How to get more than 1000 rec from Oracle?

    You must work with the guy who asked the same question yesterday.
    [url]http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=6&threadid=1149324&enterthre ad=y[/url]
    Dan Bracuk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139