Merge slow & running out of rollback and tem space

I try to merge temp table to target table everyday.Txt files are loaded in temp table every day( 800000 rows) this need to merge to target table every day
it takes 4 to 5 hrs , temp table dont have index, target tabe have index-- idx_hpp
and it have stats below is the syntax which i am using pls help how i can solve this
problem-- slow, runnnig out of temp space,rollback
merge /*+ index( IDX_hpp) */ /*+ PARALLEL ( hpp,10) APPEND) */ into hpp s
using
(SELECT * FROM hpp_temp) t
on
(s.b_code=t.B_CODE
and s.i_no = t.i_no
and nvl(s.V_TYPE,'X')=nvl(t.V_TYPE,'X')
and nvl(s.s_invoice,'X') = nvl(t.s_invoice,'X'))
--and  nvl(s.I_RECEIVER,'X') = nvl(t.I_RECEIVER,'X'))
--and substr(t.i_no,1,3) not between 'C' and 'Z')
when matched then
update /*+ INDEX (IDX_HPP) */
set s.REF_V_NO = t.REF_V_NO
,s.I_CNOTE=t.I_CNOTE,
s.O_STORNO=t.O_STORNO
where b_code=t.B_CODE and i_no = t.i_no and NVL(V_TYPE,'X')=NVL(t.V_TYPE,'X')
and NVL(s.REF_V_NO,'X') != NVL(t.REF_V_NO,'X') and
nvl(I_RECEIVER,'X') = nvl(t.I_RECEIVER,'X')
and substr(t.i_no,1,3) not between 'C' and 'Z'
WHEN NOT MATCHED then
insert
(s.I_NO,s.B_CODE,s.V_TYPE,s.S_INVOICE,s.I_DATE ,s.I_RECEIVER,s.I_RECEIVER_ADDRESS1
,s.I_RECEIVER_ADDRESS2,s.I_RECEIVER_ADDRESS3,s.I_RECEIVER_ADDRESS4,s.I_RECEIVER_ADDRESS5
,s.I_RECEIVER_ADDRESS6,s.D_C_ACCOUNTNO,s.REF_V_NO,s.I_CREDITNOTE,s.O_STORNO,s.ADDR_FLAG
,s.VAT_NO,s.C_CODE ,s.DEB_CRED_SIGN
,s.DANZAS,s.PAYMENT_TERMS_DAYS,s.DUE_DATE,s.USER_NAME ,s.VAT_COUNTRY_CODE ,s.VAT_PERCENTAGE ,s.ADDTL_VAT_PERCENTAGE ,s.LOCAL_CURRENCY_CODE
,s.AMT_TAXABLE,s.AMT_TAX_FREE,s.AMT_VAT_MWST,s.AMT_ADDTL_VAT ,s.I_CURRENCY_CODE ,s.EXCHANGE_RATE ,s.INV_AMT_TAXABLE,s.INV_AMT_TAX_FREE
,s.INV_AMT_VAT_MWST,s.INV_AMT_ADDTL_VAT ,s.TOTAL_AMT ,s.OTHER_CHARGE_TABLE_ADDRESS,s.CASH_FLAG,s.CHECKNO_CASH_REMARKS ,s.VAT,s.OVB
,s.DOCUMENT_DATE_PAY ,s.ZIP_CODE,s.STATE,s.CITY ,s.INTERFACE_FLAG ,s.AMT_ALLOCATED_LOCAL_CURRENCY,s.VALUTA,s.PAYMENT_REDUCTION_PERCENTAGE
,s.COST_SPEC_NO ,s.CURRENCY_FLAG ,s.LAYOUT_NO,s.A_INVOICE,s.C_SPECIFICATION ,s.M_I_DATE ,s.CREATION_DATE,s.euro_tot_amt )
values(
(t.I_NO,t.B_CODE,t.V_TYPE,t.S_INVOICE,t.I_DATE ,t.I_RECEIVER,t.I_RECEIVER_ADDRESS1
,t.I_RECEIVER_ADDRESS2,t.I_RECEIVER_ADDRESS3,t.I_RECEIVER_ADDRESS4,t.I_RECEIVER_ADDRESS5
,t.I_RECEIVER_ADDRESS6,t.D_C_ACCOUNTNO,t.REF_V_NO,t.I_CREDITNOTE,t.O_STORNO,t.ADDR_FLAG
,t.VAT_NO,t.C_CODE ,t.DEB_CRED_SIGN
,t.DANZAS,t.PAYMENT_TERMS_DAYS,t.DUE_DATE,t.USER_NAME ,t.VAT_COUNTRY_CODE ,t.VAT_PERCENTAGE ,t.ADDTL_VAT_PERCENTAGE ,t.LOCAL_CURRENCY_CODE
,t.AMT_TAXABLE,t.AMT_TAX_FREE,t.AMT_VAT_MWST,t.AMT_ADDTL_VAT ,t.I_CURRENCY_CODE ,t.EXCHANGE_RATE ,t.INV_AMT_TAXABLE,t.INV_AMT_TAX_FREE
,t.INV_AMT_VAT_MWST,t.INV_AMT_ADDTL_VAT ,t.TOTAL_AMT ,t.OTHER_CHARGE_TABLE_ADDRESS,t.CASH_FLAG,t.CHECKNO_CASH_REMARKS ,t.VAT,t.OVB
,t.DOCUMENT_DATE_PAY ,t.ZIP_CODE,t.STATE,t.CITY ,t.INTERFACE_FLAG ,t.AMT_ALLOCATED_LOCAL_CURRENCY,t.VALUTA,t.PAYMENT_REDUCTION_PERCENTAGE
,t.COST_SPEC_NO ,t.CURRENCY_FLAG ,t.LAYOUT_NO,t.A_INVOICE,t.C_SPECIFICATION ,t.M_I_DATE ,t.CREATION_DATE,t.euro_tot_amt)
where substr(t.invoice_no,1,3) not between 'C' and 'Z';
commit;

hi this is my trace after takeout the hint
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 5
Rows Row Source Operation
1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=182 us)
1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=147 us)
1 FIXED TABLE FULL X$KSUXSINST (cr=0 pr=0 pw=0 time=37 us)
1 BUFFER SORT (cr=0 pr=0 pw=0 time=93 us)
1 FIXED TABLE FULL X$KVIT (cr=0 pr=0 pw=0 time=39 us)
1 BUFFER SORT (cr=0 pr=0 pw=0 time=37 us)
1 FIXED TABLE FULL X$QUIESCE (cr=0 pr=0 pw=0 time=15 us)
SELECT substr(name, 0, 512), DECODE(type, 1, 'Boolean', 2, 'String', 3,
'Integer', 4, 'Filename', ' '), substr(value, 0, 512), ISDEFAULT,
ISSYS_MODIFIABLE,substr(description,0,512)
FROM
v$parameter2 ORDER BY name
call count cpu elapsed disk query current rows
Parse 3 0.01 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 9 0.04 0.05 0 0 0 783
total 15 0.05 0.06 0 0 0 783
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 5
Rows Row Source Operation
261 SORT ORDER BY (cr=0 pr=0 pw=0 time=17521 us)
261 HASH JOIN (cr=0 pr=0 pw=0 time=28376 us)
1183 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=3580 us)
1185 FIXED TABLE FULL X$KSPPCV2 (cr=0 pr=0 pw=0 time=5951 us)
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 5
Rows Row Source Operation
261 SORT UNIQUE (cr=0 pr=0 pw=0 time=18603 us)
261 NESTED LOOPS (cr=0 pr=0 pw=0 time=21648 us)
261 HASH JOIN (cr=0 pr=0 pw=0 time=16944 us)
261 FIXED TABLE FULL X$KSPSPFILE (cr=0 pr=0 pw=0 time=17905 us)
1183 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=3562 us)
261 FIXED TABLE FIXED INDEX X$KSPPCV (ind:2) (cr=0 pr=0 pw=0 time=3008 us)
SELECT host_name, instance_name,startup_time,logins,archiver, log_switch_wait
from
v$instance
call count cpu elapsed disk query current rows
Parse 4 0.01 0.00 0 0 0 0
Execute 4 0.00 0.00 0 0 0 0
Fetch 8 0.00 0.00 0 0 0 4
total 16 0.01 0.00 0 0 0 4
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 5
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 5
Rows Row Source Operation
1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=527 us)
1 FIXED TABLE FULL X$KCCDI (cr=0 pr=0 pw=0 time=316 us)
1 BUFFER SORT (cr=0 pr=0 pw=0 time=207 us)
1 FIXED TABLE FULL X$KCCDI2 (cr=0 pr=0 pw=0 time=163 us)
SELECT BANNER
FROM
V$VERSION WHERE BANNER LIKE '%Oracle%'
call count cpu elapsed disk query current rows
Parse 4 0.01 0.01 0 0 0 0
Execute 4 0.00 0.00 0 0 0 0
Fetch 8 0.00 0.00 0 0 0 4
total 16 0.01 0.01 0 0 0 4
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
call count cpu elapsed disk query current rows
Parse 14 0.01 0.01 0 0 0 0
Execute 15 0.00 0.03 0 0 0 0
Fetch 15 0.00 0.00 0 30 0 13
total 44 0.01 0.05 0 30 0 13
Misses in library cache during parse: 2
Misses in library cache during execute: 2
how i can check and trouble shoot and make it faster

Similar Messages

  • Does 'find your iPhone' use a lot of internet? My mobile data is running out ridiculously fast and I need it to slow down!

    Does 'find your iPhone' use a lot of internet? My mobile data is running out ridiculously fast and I need it to slow down! Anyone has suggestions / info?

    You should shut down all the apps running in the background and then reset your phone.  Double tap the home button to open the multitasking drawer (iOS 6.X) or the multitasking screen (iOS 7.X)  if you are on iOS 6.X press and hold one of the app icons and wait for the icon's to start to jiggle, just like when you want to delete an app.  Tap the little x that appears in the upper corner of the icons.  Repeat until all the icons are gone.
    If you are on iOS 7.X once the multitasking screen is open swipe up on all the app images until they are all closed.  Tap on the home screen to close.
    Then press and hold both the Home and Sleep buttons at the same time and wait for the Apple logo to appear then release both buttons.  The phone will restart itself. 
    If this doesn't help try doing a Reset All Settings reset, you will not lose any data or content or media.  But you will have to reset any setting you turned on or off in Settings.  This will reset all settings back to factory default.  Settings => General => Reset => Reset All Settings.

  • If I have a backup on iCloud from my old phone in my new phone will it delete my old information? I'm running out of GB and i'm not sure if I should delete it or not. Please help!

    I had an old iphone 4s that was backed up on icloud. When I got a new iphone 4s, the back up from my old iphone and new iphone stayed. Now i'm running out of GB and my iphone hasnt been backed up in weeks. If I delete the backup from my old iphone on my new iphone to clear space, will it delete the information I had in my old iphone, which is now in my new iphone? help!!! thanks.

    if you go to 'settings - iCloud - storage and backup' and remove an old backup, it won't do anything to the current settings/information on your phone, it will only remove the backup.

  • Thoroughly angry and frustrated. I've run out of room and need to make more to add more songs. Once and for all, how do I, if I even CAN, delete music from my iPod Nano WITHOUT losing them from iTunes?

    Thoroughly angry and frustrated. I've run out of room and need to make more to add more songs. Once and for all, how do I, if I even CAN, delete music from my iPod Nano WITHOUT losing them from iTunes?

    You should take the time to familiarize yourself with the documentation that is available.  You can "uncheck" a song in iTunes, and then do a manual update.

  • My iphone 4 regularly gets stuck on the apple logo screen and stays there until it runs out of battery, and even during charging. what can i do? I have restored it, still it gets stuck on apple logo, anyone pls help.

    my iphone 4 regularly gets stuck on the apple logo screen and stays there until it runs out of battery, and even during charging. what can i do? I have restored it, still it gets stuck on apple logo, anyone pls help.

    Jai141 wrote:
    ... and im not sure as i brought the phone of someone else..  i will have to ask them
    Good Luck.
    Jai141 wrote:
    Thanks
    You're Welcome.

  • I purchased Acrobat pro but am asked to log in each time to use it. when i try to log in it runs out of time and says its an internet error which I know its not

    I purchased Acrobat pro but am asked to log in each time to use it. when i try to log in it runs out of time and says its an internet error which I know its not

    Sign in, activation, or connection errors | CS5.5 and later

  • GC isn't working: WLS runs out of memory and dies

    Periodically webservers just runs out of memory and dies. It looks like the garbage collection isn't working correctly and it never gets kicked off,
    Where can I configure the GC in weblogic?
    Have the min and max set to 512m,on WL92mp1, JDK 150_06. 40 - 50 concurrent users and this is a Financials system.
    Full thread dump Java HotSpot(TM) Server VM (1.5.0_04-b05 mixed mode):
    "NwWriter" daemon prio=5 tid=0x1abc9008 nid=0x1220 in Object.wait() [0x1fbdf000..0x1fbdfc1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x19e40930> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x19e40930> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1d644e48 nid=0x2f8 runnable [0x1fb9f000..0x1fb9fc9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1cf5e388 nid=0x1098 in Object.wait() [0x1f7df000..0x1f7dfa1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0def6e90> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0def6e90> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1ced8be0 nid=0x12c4 runnable [0x1f79f000..0x1f79fa9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1ed1c408 nid=0x1494 in Object.wait() [0x1fadf000..0x1fadfc1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0dee6e30> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0dee6e30> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1abc8b80 nid=0x8ec runnable [0x1fa9f000..0x1fa9fc9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1bf71bd8 nid=0x134 in Object.wait() [0x1fa5f000..0x1fa5fa1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0dee9db8> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0dee9db8> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1c6a7d98 nid=0x10cc runnable [0x1fa1f000..0x1fa1fa9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1c5d2008 nid=0x8b4 in Object.wait() [0x1f6df000..0x1f6dfb1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0dee2370> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0dee2370> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1c88ed98 nid=0x8a0 runnable [0x1f69f000..0x1f69fb9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x006a2b58 nid=0x270 in Object.wait() [0x1f9df000..0x1f9dfc1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0decaf68> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0decaf68> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1c958920 nid=0x1680 runnable [0x1f99f000..0x1f99fc9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1d9c0428 nid=0x17a8 in Object.wait() [0x1f85f000..0x1f85fb1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0decfa98> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0decfa98> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1abede28 nid=0x11d0 runnable [0x1f81f000..0x1f81fb9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1c7b8540 nid=0x11f8 in Object.wait() [0x1fd9f000..0x1fd9fb1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0de98618> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0de98618> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1bf85510 nid=0x370 runnable [0x1fd5f000..0x1fd5fb9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1c391b48 nid=0x1768 in Object.wait() [0x1fd1f000..0x1fd1fa1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0de9ff48> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0de9ff48> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1be90440 nid=0x10d4 runnable [0x1fcdf000..0x1fcdfa9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1d2d0bd0 nid=0x1020 in Object.wait() [0x1f75f000..0x1f75fd1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0de5d3c0> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0de5d3c0> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1d3472d0 nid=0x10e0 runnable [0x1f71f000..0x1f71fd9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1bf71a30 nid=0x1b0 in Object.wait() [0x1f95f000..0x1f95fd1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0de11e90> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0de11e90> (a bea.jolt.OutQ)
         at bea.jolt.NwWriter.run(NwHdlr.java:3980)
    "NwReader" daemon prio=5 tid=0x1ac06ab8 nid=0x17ec runnable [0x1f91f000..0x1f91fd9c]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.DataInputStream.readFully(DataInputStream.java:176)
         at bea.jolt.NwReader.run(NwHdlr.java:3625)
    "NwWriter" daemon prio=5 tid=0x1bddfde8 nid=0x133c in Object.wait() [0x1ff9f000..0x1ff9fb1c]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0d4a71f0> (a bea.jolt.OutQ)
         at java.lang.Object.wait(Object.java:474)
         at bea.jolt.OutQ.getFromQ(OutQ.java:89)
         - locked <0x0d4a71f0> (a bea.jolt.OutQ)
         at bea.jolt.NwWrite

    There's nothing wrong with how GC works. If you don't give it anything to collect, it won't collect anything. You are simply not allowing enough memory to get anything done. As the other responder said, bump up the max mem to at least 1g. If it still fails, set it even higher. I can't tell what platform you're on, but if you're on Windows, you may be limited to about 1536m.

  • My account runs out this month and i want to know what is on offer

    my homebroad runs out this month and the shop would not tell me what was on offer

    More of the same!
    These contracts don't just run out; it's just the min. term that expires. You may either continue as you are, look in your Member's Centre, https://membercentre.orange.co.uk/MCPres/ . for BB plan, if any, that suits you more, migrate to another ISP or stop BB altogether.
    EE shops know nowt about BB; they are just mobile salesmen.

  • TS4006 we have lost an ipod touch over xmas, ive tried find my phone but it wont work as its run out of batterey and is off line . is there anything else i can do?

    we have lost an ipod touch over xmas, ive tried find my phone but it wont work as its run out of batterey and is off line . is there anything else i can do?

    Not really
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • My iPod touch 5 has run out of battery and wont charge what do I do?

    My iPod touch has run out of battery and is failing to charge or turn on! What do i do?!

    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Prompt : running out of start up disc space

    I was downloading from my Canon camcorder and just about the last minute of the tape this prompt comes up, running out of start up disc space. What does this mean? It stopped downloading.
    Thanks

    Hi
    start up disc space
    Does just referes to the hard disk that contain Mac OS and from which You start-up
    Your Mac.
    Even if You store Your movie on an external hard disk - the (often) internal boot hard disk
    can be too full.
    I set for a minimum of 25Gb free space and most things runns OK.
    (1 hour miniDV tape needs 13Gb to be stored and by editing it it can multiply easily
    meaning - movie editing is a very hard disk space demanding task.)
    as external hard disk - for my movies I use a
    • FireWire connected one (USB/USB2 doesn't always perform well)
    • *MUST BE Mac OS Extended formatted* - UNIX/DOS/FAT32/Mac OS Exchange DOESN'T WORK !
    This You can do by Yourself - BUT it ereases the drive - So it's good to start by doing this before doing anything else (on it).
    Yours Bengt W

  • How do I add to my data plan on the iPad once I have run out of time and no longer have an internet connection?

    How do I add to my data plan on the iPad once I have run out  and no longer have an internet connection? I am working out of the country and got a message that I was running low,followed immediatly by a you're out message.

    Should you not be asking your carrier? They are the people supplying your data plan.

  • My mac's run out of memory and I can't find the culprit!

    Hi, I'm in serious need of some help! I'm sure this is simple, but I'm about to break down over it – I use my mac for everything. I've got a 200gb 2009 macbook (running iOS7), and it's told me it's run out of memory. The storage tab in 'about this mac' tells me 108GB is being used for video – but I can't find them! My iPhoto has about 17GB of movies, my iTunes has around 20GB, and I've got maybe another 10GB in files within finder – but that's still only half the videos my mac is saying it has? How do I find the rest? I've got 80GB being used by 'other' as well – is that just pages and numbers documents, along with the iOS? Is there a way of finding exactly what all my memory's being allocated to?
    I've got the entire mac backed up on an external hard drive, but I'm terrified of deleting anything from the mac in case that fails. I plan on getting a second external HD, but even then I think I'll be too worried (I've heard about so many hard drives continuously failing). How does anyone manage all their stuff?!?
    Thank you in advance, for any help you can offer.

    Just a slight correction to start, you're not running iOS 7. You're running a version of OS X, iOS is for mobile devices like iPhones and iPads. To find out which version OS OS X you're running click the Apple menu at the top left and select About This Mac.
    This http://pondini.org/OSX/LionStorage.html should help you understand "Other".

  • Photoshop 2014 keeps running out of ram and I am losing my work.

    When I save a PSD file I get the message "out of ram and cannot save", or cannot clone, use brush, etc. because out of ram.  This is when I first open photoshop too. 
    I have a new machine with 32 gigs of ram and 1 terrabyte SS memory.  Scratch disks are pointed to my hard drive and two external drives.
    I have had Photoshop older versions on much smaller machines in the past and never run out of ram.  This is a bug in photoshop 2014 - no one has been able to fix it so far.
    I am losing work and time when I have deadlines to make.  Photoshop is becoming worthless - I am going to use gimp.......

    jlnsvfx wrote:
    …Scratch disks are pointed to my hard drive and two external drives…
    That is blatant user error.  If you have other drives, UNCHECK your boot drive as a scratch disk.
    The rule of thumb I follow to figure out scratch space says to figure on 50 to 100 times the size of your largest file ever multiplied by the number of files you have open.  I have seen the scratch file exceed 800 GB once, an admittedly rare occurrence, but it often exceeds 200 GB when stitching large panoramas and the like.
    As an example—and stressing that I'm aware that others have even more scratch space than I do—I keep two dedicated, physically separate hard drives as my primary and secondary Photoshop scratch disks and a lot of GB free on my boot drive for the OS which is not checkedlisted as a scratch disk in Photoshop Preferences..  I also have 16 GB of RAM installed.
    Additionally, if you only have a single HD, i.e. your boot drive, you'd need it to be large enough to accommodate both the swap files of the OS as well as Photoshop's scratch.

  • Iphone 5 updated to 7.1.2 and now battery runs out too quick and gets overheated

    Iphone 5 after upgrading from older 6 version straigth to 7.1.2 gets:
    1.  overheated
    2. runs out of charge
    3. WIFI does not connect regulary
    What is the reason and what to do?
    Thx!

    Basics right out of the user guide are restart, reset, restore from backup, restore as new device.

Maybe you are looking for

  • I have Photoshop CS5 and a Epson 3880 . The print setting dialogue box won't open when selecting color output PRINTER MANAGES COLORS

    I have Photoshop CS5 and a Epson 3880 . The print setting dialogue box won't open when selecting color output PRINTER MANAGES COLORS It does ope when selecting PHOTOSHOP MANAGES COLOURS . This is first time in 7 year this has happened. Any one with i

  • Vertical keynote slides

    Is it possible to create vertical slides in Keynote instead of the default horizontal ones? If so, how do I go about doing it? Thanks!

  • Barcode counting over groups

    Hi all, I am working on a barcode for my invoices print. This barcode counts over the invoices from 1 to 16 and then starts over again. For example if i have a set of 6 invoices each of 3 pages the barcode numbering will be as follows: invoice 1 page

  • Layering in InDesign

    Are there pros and cons to assembling a graphic on a page in InDesign vs photoshop? I'm creating a 50 page book, and I often run into not knowing whether something should be done first in photoshop or indesign. There are times when I think the entire

  • Installing dialog instance on cluster.

    Hi , I have installed ASCS, SCS,CI and  DI  , on Unix Cluster Evironment , Now i am trying to install Dialog instance on Node B, but it is looking for Default profile which is available on /sapmnt/sid/profiles, How do i get it on node B, Can anyone g