IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to delete large data.


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Mounika Nemani

New User


Joined: 25 May 2018
Posts: 5
Location: India

PostPosted: Wed Jun 13, 2018 1:58 pm
Reply with quote

Hi All,

I tried to run a delete query in SPUFI.

Code:
DELETE                               
FROM     HIST_QUANTITY         
WHERE    TERMINAL_ID = 'SPRLOD' 


the above query was suppose to delete 1574180 rows from the table.

but I am getting a -904 error with the following reason.
Code:
SQLCODE = -904, ERROR:  UNSUCCESSFUL EXECUTION CAUSED BY AN         
UNAVAILABLE RESOURCE. REASON 00C90096, TYPE OF RESOURCE 00000302, AND
RESOURCE NAME TCPUD1PK.PK000070.X'00004E8A'


need help on how to increase the page locks. or is there any optimization needed for the query to be executed so, that the table doesn't throw -904.

Thanks in Advance
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Wed Jun 13, 2018 3:49 pm
Reply with quote

The table did not 'throw' anything. Nothing gets thrown on the mainframe. Your query abended.
Back to top
View user's profile Send private message
jerryte

Active User


Joined: 29 Oct 2010
Posts: 202
Location: Toronto, ON, Canada

PostPosted: Fri Jun 29, 2018 10:19 pm
Reply with quote

You can use the below to lock the entire table prior to the delete. You need to be sure no one else needs the table
LOCK TABLE HIST_QUANTITY IN EXCLUSIVE MODE
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Sat Jun 30, 2018 4:06 am
Reply with quote

Such things are always discussed with DBAs.
Please do that
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts How to save SYSLOG as text data via P... All Other Mainframe Topics 2
No new posts Store the data for fixed length COBOL Programming 1
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts DELETE SPUFI DB2 1
No new posts DSNTIAUL driven delete IBM Tools 0
Search our Forums:

Back to Top