If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Getting "BandP not pushed down" while running a query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-11-11, 10:00
debayan debayan is offline
Registered User
 
Join Date: Sep 2007
Posts: 23
Getting "BandP not pushed down" while running a query

Hi all,

I am currently using DB2 V8.2 (fixpack 7) on Solaris. I am trying to run the following query:

Code:
SELECT B.ID, C.LOCATION, A.SYSID, A.OPTIONS 
FROM PRISM.OPTIONS A, ACTIVITY.MASTER B, CONTROL.LOCATIONS C 
WHERE A.SYSIS = B.SYSID AND B.ID = C.ID
AND C.location = '011';
I got the following error:

SQL0901N The SQL statement failed because of a non-severe system error. Subsequent SQL statements can be processed. (Reason "BandP not pushed down ".)

Explanation:

An error has occurred which is due to a system error. Processing
of the SQL statement has ended for reason "<reason>" (this is in
English only and is useful only to IBM support personnel).

sqlcode : -901

sqlstate : 58004


Now if I run the same query for a different location, the query completes successfully:

Code:
SELECT B.ID, C.LOCATION, A.SYSID, A.OPTIONS 
FROM PRISM.OPTIONS A, ACTIVITY.MASTER B, CONTROL.LOCATIONS C 
WHERE A.SYSIS = B.SYSID AND B.ID = C.ID
AND C.location = 'B25';
I am not sure what is causing this error. Any help is greatly appreciated.

Thanks in advance,
Dave
Reply With Quote
  #2 (permalink)  
Old 02-11-11, 10:27
Marcus_A Marcus_A is offline
Registered User
 
Join Date: May 2003
Location: USA
Posts: 5,198
Upgrade to the latest 8.2 fixpack. The fixpack upgrade can be downloaded free of charge.
__________________
M. A. Feldman
IBM Certified DBA on DB2 for Linux, UNIX, and Windows
IBM Certified DBA on DB2 for z/OS and OS/390
Reply With Quote
  #3 (permalink)  
Old 02-11-11, 11:01
debayan debayan is offline
Registered User
 
Join Date: Sep 2007
Posts: 23
Quote:
Originally Posted by Marcus_A View Post
Upgrade to the latest 8.2 fixpack. The fixpack upgrade can be downloaded free of charge.
Thanks Marcus. Upgrading DB2 is our long term goal. Is there any short term fix for this?
Reply With Quote
  #4 (permalink)  
Old 02-11-11, 11:06
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Quote:
Originally Posted by debayan View Post
Upgrading DB2 is our long term goal. Is there any short term fix for this?
Make the fixpak installation your short-term goal.
Reply With Quote
  #5 (permalink)  
Old 02-11-11, 12:15
db2girl db2girl is offline
∞∞∞∞∞∞
 
Join Date: Aug 2008
Location: Toronto, Canada
Posts: 1,816
If you search for sql0901n and bandp on google, you'll find APAR IY65288. You could be running into this one.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On