Long Running Insert - Please help identify the Bottleneck

SQL> insert into item_loc SELECT
rstyst.style item,
2 3 rstyst.store loc,
4 im.item_parent item_parent,
5 null item_grant_parent,
6 'S' loc_type,
7 il.unit_retail unit_retail,
8 il.unit_retail regular_unit_retail,
9 null multi_units,
10 null multi_unit_retail,
null multi_selling_uom,
11 12 il.unit_retail selling_unit_retail,
13 'EA' selling_uom,
14 null promo_retail,
15 null promo_selling_retail,
16 null promo_retail_uom,
17 il.clear_ind clear_ind,
18 il.taxable_ind taxable_ind,
19 im.item_desc item_description,
20 im.short_desc short_description,
21 1 ti,
22 1 hi,
23 il.store_ord_mult store_ord_mult,
24 'A' status,
25 il.status_update_date status_update_date,
null daily_waste_pct,
26 27 il.meas_of_each meas_of_each,
28 il.meas_of_price meas_of_price,
29 il.uom_of_price uom_of_price,
30 null primary_variant,
31 null primary_cost_pack,
32 rstyst.primary_supplier primary_supplier,
33 'US' primary_country,
34 'E' receive_as_type,
35 sysdate create_datetime,
36 sysdate last_update_datetime,
37 'CONV' last_update_id,
38 null inbound_handling_days,
39 'W' source_method,
40 null source_wh,
41 'Y' store_price_ind,
42 'N' rpm_ind
43 FROM r8_rag_style_st rstyst,
44 item_master im,
45 item_loc il
46 WHERE
47 il.item = (
48 SELECT MIN(imc.item)
49 FROM item_master imc
50 WHERE imc.item_parent = im.item
51 )
52 AND im.item NOT IN
53 (
54 SELECT item
55 FROM item_loc
56 WHERE loc = 120--L_store
57 )
58 AND rstyst.store = 120--L_store
59 AND rstyst.style = im.item
60 AND im.item_level < im.tran_level
61 AND rstyst.store = il.loc ;
insert into item_loc SELECT
ERROR at line 1:
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
Elapsed: 02:07:31.93
Trace File OUtput
insert into item_loc
SELECT
rstyst.style item,
rstyst.store loc,
im.item_parent item_parent,
null item_grant_parent,
'S' loc_type,
il.unit_retail unit_retail,
il.unit_retail regular_unit_retail,
null multi_units,
null multi_unit_retail,
null multi_selling_uom,
il.unit_retail selling_unit_retail,
'EA' selling_uom,
null promo_retail,
null promo_selling_retail,
null promo_retail_uom,
il.clear_ind clear_ind,
il.taxable_ind taxable_ind,
im.item_desc item_description,
im.short_desc short_description,
1 ti,
1 hi,
il.store_ord_mult store_ord_mult,
'A' status,
il.status_update_date status_update_date,
null daily_waste_pct,
il.meas_of_each meas_of_each,
il.meas_of_price meas_of_price,
il.uom_of_price uom_of_price,
null primary_variant,
null primary_cost_pack,
rstyst.primary_supplier primary_supplier,
'US' primary_country,
'E' receive_as_type,
sysdate create_datetime,
sysdate last_update_datetime,
'CONV' last_update_id,
null inbound_handling_days,
'W' source_method,
null source_wh,
'Y' store_price_ind,
'N' rpm_ind
FROM r8_rag_style_st rstyst,
item_master im,
item_loc il
WHERE
il.item = (
SELECT MIN(imc.item)
FROM item_master imc
WHERE imc.item_parent = im.item
AND im.item NOT IN
SELECT item
FROM item_loc
WHERE loc = 120--L_store
AND rstyst.store = 120--L_store
AND rstyst.style = im.item
AND im.item_level < im.tran_level
AND rstyst.store = il.loc
call count cpu elapsed disk query current rows
Parse 1 0.04 0.06 0 0 0 0
Execute 0 0.00 0.00 0 0 0 0
Fetch 0 0.00 0.00 0 0 0 0
total 1 0.04 0.06 0 0 0 0
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 57
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
call count cpu elapsed disk query current rows
Parse 2 0.04 0.06 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.00 0 0 0 10
total 6 0.04 0.07 0 0 0 10
Misses in library cache during parse: 2
Misses in library cache during execute: 2
OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
call count cpu elapsed disk query current rows
Parse 98 0.01 0.01 0 0 0 0
Execute 99 0.01 0.05 0 0 0 0
Fetch 99 0.02 0.01 1 200 0 96
total 296 0.04 0.08 1 200 0 96
Misses in library cache during parse: 3
Misses in library cache during execute: 3
3 user SQL statements in session.
99 internal SQL statements in session.
102 SQL statements in session.
0 statements EXPLAINed in this session.
Trace file: rmscnv01_ora_2601206.trc
Trace file compatibility: 10.01.00
Sort options: default
1 session in tracefile.
3 user SQL statements in trace file.
99 internal SQL statements in trace file.
102 SQL statements in trace file.
6 unique SQL statements in trace file.
896 lines in trace file.
24 elapsed seconds in trace file.
Plan_output
SELECT STATEMENT ALL_ROWS Cost: 25,137 Bytes: 219,555 Cardinality: 1,071
     14 NESTED LOOPS Cost: 25,137 Bytes: 219,555 Cardinality: 1,071
          10 HASH JOIN Cost: 23,997 Bytes: 155,541 Cardinality: 1,119
               6 HASH JOIN ANTI Cost: 11,071 Bytes: 188,256 Cardinality: 1,696
                    3 HASH JOIN Cost: 9,948 Bytes: 1,850,044 Cardinality: 18,878
                         1 TABLE ACCESS FULL TABLE RETEK.R8_RAG_STYLE_ST Cost: 1,629 Bytes: 264,292 Cardinality: 18,878
                         2 TABLE ACCESS FULL TABLE RETEK.ITEM_MASTER Cost: 8,312 Bytes: 52,684,212 Cardinality: 627,193
                    5 PARTITION HASH SINGLE Cost: 470 Bytes: 5,967,832 Cardinality: 459,064 Partition #: 7 Partitions accessed #4
                         4 INDEX FAST FULL SCAN INDEX (UNIQUE) RETEK.PK_ITEM_LOC Cost: 470 Bytes: 5,967,832 Cardinality: 459,064 Partition #: 8 Partitions accessed #4
               9 VIEW VIEW SYS.VW_SQ_1 Cost: 12,920 Bytes: 13,433,392 Cardinality: 479,764
                    8 HASH GROUP BY Cost: 12,920 Bytes: 11,994,100 Cardinality: 479,764
                         7 TABLE ACCESS FULL TABLE RETEK.ITEM_MASTER Cost: 8,214 Bytes: 23,519,725 Cardinality: 940,789
          13 PARTITION HASH SINGLE Cost: 2 Bytes: 66 Cardinality: 1 Partition #: 12 Partitions accessed #4
               12 TABLE ACCESS BY LOCAL INDEX ROWID TABLE RETEK.ITEM_LOC Cost: 2 Bytes: 66 Cardinality: 1 Partition #: 13 Partitions accessed #4
                    11 INDEX UNIQUE SCAN INDEX (UNIQUE) RETEK.PK_ITEM_LOC Cost: 1 Cardinality: 1 Partition #: 14 Partitions accessed #4

insert into item_loc SELECT
ERROR at line 1:
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP[url http://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01652+temp&objID=f61&dateRange=all&userID=&numResults=15]http://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01652+temp&objID=f61&dateRange=all&userID=&numResults=15
If you think your query is inefficient (how much rows do you expect to insert?), then please edit your post and put the explain plan and tkprof output between the tags [pre] and [/pre].
Regards,
Rob.

Similar Messages

  • Please help identify the meaning of this beep

    HEADLESS MSI P55-GD80
    it beeps twice, really short beeps, then it does nothing, i don't have a monitor therefore i can't see whats on the screen. I've tried different memory and video cards to no avail. please if anyone can identify the problem. I uploaded the a video on youtube.
    youtu.be/DGyOTPthJpQ
    Thanks in advance

    Quote from: technogfunk on 16-October-12, 18:11:21
    i don't have a monitor therefore i can't see whats on the screen.
    Do you expect to fix a computer hearing beeps?
    p.s.
    Two short beeps means "memory parity error"

  • Error message - "You need to restart your computer". With Kernel Panic Logs. Please help identify the problem.

    Hi, just now my computer just popped out an error message saying that "You need to restart your computer". I was able to power the iMac back (and i'm typing from my iMac). I did some research about it and it has something to do with the kernel panic..either hardware or software. Since i was able to power back my iMac, i supposed it was software-related problem? Here's the log from /Library/Logs/DiagnosticReports/
    I'm sorry it was quite long and i have no idea how to attach the text file which i have saved. What could be the problem here? And any suggestions to avoid this from happening again? My heart skipped a beat just now.. Hopefully it was no something serious such as hardware problems..
    thank you!
    [quote]
    Mon Jan  7 04:41:39 2013
    panic(cpu 1 caller 0xffffff8000545709): "complete() while dma active"@/SourceCache/xnu/xnu-1504.15.3/iokit/Kernel/IOMemoryDescriptor.cpp:2273
    Backtrace (CPU 1), Frame : Return Address
    0xffffff8060213ba0 : 0xffffff8000204d15
    0xffffff8060213ca0 : 0xffffff8000545709
    0xffffff8060213ce0 : 0xffffff7f80e90e34
    0xffffff8060213d30 : 0xffffff7f80e8aac2
    0xffffff8060213d80 : 0xffffff7f813c6b84
    0xffffff8060213df0 : 0xffffff7f80d740ff
    0xffffff8060213e20 : 0xffffff7f80d7ec07
    0xffffff8060213e50 : 0xffffff7f80d7ed70
    0xffffff8060213ea0 : 0xffffff7f80d7fb39
    0xffffff8060213ef0 : 0xffffff7f80d7c076
    0xffffff8060213f10 : 0xffffff800053b31f
    0xffffff8060213f60 : 0xffffff800053afc5
    0xffffff8060213fa0 : 0xffffff80002c8527
          Kernel Extensions in backtrace (with dependencies):
             com.apple.iokit.IOAHCIBlockStorage(1.6.6)@0xffffff7f813c4000->0xffffff7f813d8ff f
                dependency: com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000
                dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xffffff7f80e83000
             com.apple.driver.AppleAHCIPort(2.2.0)@0xffffff7f80d79000->0xffffff7f80d90fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)@0xffffff7f80826000
             com.apple.iokit.IOAHCIFamily(2.0.7)@0xffffff7f80d72000->0xffffff7f80d78fff
             com.apple.iokit.IOStorageFamily(1.6.3)@0xffffff7f80e83000->0xffffff7f80e9cfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 16972898800986
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI          4.2.5 (addr 0xffffff7f81330000, size 0x65536) - last unloaded 96015086516
    loaded kexts:
    com.google.filesystems.fusefs          2.1.9 - last loaded 8029647925508
    com.bresink.driver.BRESINKx86Monitoring          9.0
    com.avatron.AVExFramebuffer          1.6.1
    com.Cycling74.driver.Soundflower          1.5.2
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    com.avatron.AVExVideo          1.6.1
    com.squirrels.airparrot.framebuffer          3
    com.squirrels.driver.AirParrotSpeakers          1.7
    com.rim.driver.BlackBerryUSBDriverInt          0.0.74
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          2.0.8f3
    com.apple.driver.AppleMikeyDriver          2.0.8f3
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AudioAUUC          1.57
    com.apple.kext.ATIFramebuffer          6.4.2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPort.Atheros9388          426.35.3
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.48
    com.apple.ATIRadeonX3000          6.4.2
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.driver.AppleIntelHDGraphics          6.4.2
    com.apple.driver.AppleIntelSNBGraphicsFB          6.4.2
    com.apple.iokit.SCSITaskUserClient          2.6.9
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.6
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleFWOHCI          4.7.7
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleUSBHub          4.2.5
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.2.6
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleBluetoothHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.DspFuncLib          2.0.8f3
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.0.4
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAController          2.0.8f3
    com.apple.iokit.IOHDAFamily          2.0.8f3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.17
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.17
    com.apple.driver.AppleBacklightExpert          1.0.2
    com.apple.driver.AppleThunderboltEDMSink          1.1.3
    com.apple.driver.AppleThunderboltEDMSource          1.1.3
    com.apple.kext.ATI6000Controller          6.4.2
    com.apple.kext.ATISupport          6.4.2
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.AppleThunderboltDPOutAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.9
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOUSBHIDDriver          4.2.5
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.driver.AppleUSBMergeNub          4.2.5
    com.apple.driver.XsanFilter          402.1
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOFireWireFamily          4.2.7
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.9
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.9
    com.apple.iokit.IOUSBFamily          4.2.6
    com.apple.driver.DiskImages          289.1
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.3.0
    [/quote]

    Suggest you uninstall SoundFlower, LogMeIn and AirParrot and see if that changes anything.
    Allan

  • I want to delete my payment information on iPhone 4 but the the NONE option is no longer there. Please help

    I want to delete my payment information on iPhone 4 but the the NONE option is no longer there. Please help

    As provided:
    You need a payment method. If you don't have a credit card, then redeem an iTunes gift card. You'll then get the "None" option.

  • How do I remove an email account from iPhoto on an iMac? I set it up with the incorrect password and can no longer send photos, please help!

    "Removing email account from iPhoto"
    How do I remove an email account from iPhoto on an iMac? I set it up with the incorrect password and can no longer send photos, please help!

    To follow Larry's advice, select your email account in the list of accounts and click the "-" button to remove the account:

  • Okay so i bought a movie on apple tv and it says over 2 hours of waiting time! also, it said to lower the resolution so i did, but it didn't help it only made it longer... please HELP!

    okay, so i bought a movie on apple tv and it says over 2 hours of waiting time! also, it said to lower the resolution so i did, but it didn't help it only made it longer... please HELP!

    Sounds as though you have a slow internet connection.
    Check on a computer at speedtest.net.
    For near instant playback, you need:
    2.5 Mbps for SD
    6 Mbps for 720p HD
    8 Mbps for 1080p HD
    Any slower for a given quality and it has to buffer in order to playback without interruption.
    The buffering could be minutes or hours depending on how much of teh movie has to buffer.
    AC

  • Hi, ı have a problem once I push the power button and it starts to opening but small symbol turning and turning, it really lasts so long. could you please help me? is it so slow to open a mac pro.

    Hi, ı have a problem once I push the power button and it starts to opening but small symbol turning and turning, it really lasts so long. could you please help me? is it so slow to open a mac pro.

    OS X Version Number?
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836

  • Hi i want to upload my music from my i-phone to i-tunes so i can then transfer to my new samsung phone. However my i-tunes is linked to another computer which i no longer have. PLEASE HELP!!!

    Hi i want to upload my music from my i-phone to i-tunes so i can then transfer to my new samsung phone. However my i-tunes is linked to another computer which i no longer have. PLEASE HELP!!!

    The iphone is not a storage/backup device.  The sync is one way - computer to iphone.  The only exception is itunes purchases.  File>Devices>Transfer Purchases

  • Please Help for the Query

    Please Help for the Query
    Hi frds please help me for the below query.What I want to do is to pull out the data from below table :-
    date ticker indicator
    03/13/2008 3IINFOTECH -8
    03/18/2008 3IINFOTECH -4
    03/25/2008 3IINFOTECH -5
    03/27/2008 3IINFOTECH -3
    as such :-
    date ticker indicator
    03/13/2008 3IINFOTECH -8
    03/25/2008 3IINFOTECH -5
    03/27/2008 3IINFOTECH -3
    Here I want to find the Trend i.e either asc or desc order from the lowest indicator.
    In the above sample data -8, -4, -5, -3 out of which I want the asc order data -8, -5, -3 and exclude -4 data.Because the asc order -8, -5, -3 will not follow.
    So I want the data
    date ticker indicator
    03/13/2008 3IINFOTECH -8
    03/25/2008 3IINFOTECH -5
    03/27/2008 3IINFOTECH -3

    SQL> CREATE TABLE BORRAME(FECHA DATE, INDICA VARCHAR2(100));
    Tabla creada.
    SQL> INSERT INTO BORRAME VALUES(TO_DATE('03/13/2008','MM/DD/YYYY'), '3IINFOTECH -8');
    1 fila creada.
    SQL> INSERT INTO BORRAME VALUES(TO_DATE('03/18/2008','MM/DD/YYYY'), '3IINFOTECH -4');
    1 fila creada.
    SQL> INSERT INTO BORRAME VALUES(TO_DATE('03/25/2008','MM/DD/YYYY'), '3IINFOTECH -5');
    1 fila creada.
    SQL> INSERT INTO BORRAME VALUES(TO_DATE('03/27/2008','MM/DD/YYYY'), '3IINFOTECH -3');
    1 fila creada.
    SQL> COMMIT;
    Validación terminada.
    SQL>
    SQL> SELECT FECHA, INDICA
      2  FROM BORRAME
      3  WHERE SUBSTR(INDICA,INSTR(INDICA,'-',1)+1,LENGTH(INDICA)) <> '4'
      4  ORDER BY SUBSTR(INDICA,INSTR(INDICA,'-',1)+1,LENGTH(INDICA)) DESC;
    FECHA                                                                
    INDICA                                                               
    13/03/08                                                             
    3IINFOTECH -8                                                        
    25/03/08                                                             
    3IINFOTECH -5                                                        
    27/03/08                                                             
    3IINFOTECH -3                                                        
                    

  • Hi, please help with the installation of Lightroom 4, I bought a new Mac (Apple) and I want to install a software that I have on the album cd. My new computer does not have the drives. Can I download software from Adobe? Is my license number just to be ab

    Hi, please help with the installation of Lightroom 4, I bought a new Mac (Apple) and I want to install a software that I have on the album cd. My new computer does not have the drives. Can I download software from Adobe? Is my license number just to be able to download the srtony adobe.

    Adobe - Lightroom : For Macintosh
    Hal

  • I'm trying to setup a printer go wireless through my airport extreme, but every time I try to print the printing file gets paused. I'm in loop. PLEASE HELP! (The printer is a Brother 7020  monochrome)

    I'm trying to setup a printer go wireless through my airport extreme, but every time I try to print the printing file gets paused. I'm in loop. PLEASE HELP! (The printer is a Brother 7020  monochrome)

    I had the exact same problem
    It turns out I was using a 20 foot USB cable between the printer and the Airport Extreme and the signal had become to weak to work. Try using nothing more than a 6 foot cable or try a new cable

  • Urgent, please help. why the ListSelectionListener() called twice?

    I had two JList, and every time, I click value in list1, it will call the ListSelectionListener() twice, and when I click on value in List2, it called the list2 actionListener twice also, I don't know why?
    Please help.
    The part of the code list below:
    jList1 = new JList(words1);
    JScrollPane scrollPane1 = new JScrollPane(jList1); jList1.setBackground(Color.lightGray);
    jList1.setBorder(BorderFactory.createLoweredBevelBorder());
    jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
    public void valueChanged(ListSelectionEvent e) {
         jList1_valueChanged(e){
    /* add Column_Name to the jList2*/
    JScrollPane scrollPane2 = new JScrollPane(jList2);
    jList2.setBackground(Color.lightGray);
    jList2.setBorder(BorderFactory.createLoweredBevelBorder());
    jList2.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
    public void valueChanged(ListSelectionEvent e) {
    jList2_valueChanged(e);
    void jList1_valueChanged(ListSelectionEvent evt)
    void jList2_valueChanged(ListSelectionEvent evt)
    {     }

    You can call ListSelectionEvent.getValueIsChanging() to find out if the selection is in progress or if has been finished. You will get an event both when the user starts the selection (presses the button) and when he/she finishes it (lets go of the betton).
    /Michael

  • I cannot restore my Iphone 4, I keep getting the error code 1611, please help and the Iphone keeps displaying the "Plug-In Itunes Symbol!??

    I cannot restore my Iphone 4, I keep getting the error code 1611, please help and the Iphone keeps displaying the "Plug-In Itunes Symbol!??

    http://tinyurl.com/nyj36v

  • My IPOD menus suddenly appear in Japanese or Chinese and are impossible to understand for me who is european. Has somebody else had this problem? Please help? The song titles are still in the language they were entered though. /Jane

    My IPOD menus suddenly appear in Japanese or Chinese and are impossible to understand for me who is european. Has somebody else had this problem? Please help? The song titles are still in the language they were entered though. /Jane

    Fingers crossed, the following document might be of some assistance:
    iPod: Changing the display language

  • I have proubleam with string to date conversion, i out put date fromat is 2012-04-30T23:48:55.727-07:00 . so please help me the format conversion

    i have proubleam with string to date conversion, i out put date fromat is 2012-04-30T23:48:55.727-07:00 . so please help me the format conversion.
    i wrote the method but it not workig
    My method is
    -(NSDate *)dateformstr:(NSString *)str
    NSString *date = [str stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        NSDateFormatter *dateFormate = [[NSDateFormatter alloc] init];
      [dateFormate setDateFormat:@"yyyy-MM-dd'T'HH:mm:sssZZZZ"]
    // NSDate *formatterDate = [dateFormate  dateFromString:str];
        return formatterDate;
    but i did not the value and if i try othere formate i is working but my requiremet format is 2012-04-30T23:48:55.727-07:00.
    can any help it out in this senario.

    Sorry Butterbean, but I'm interested in the answer to your question myself.
    I've spent a few hours transfering my library from one computer to another and then find out that my ratings didn't transfer. Like you, I've spent many hours rating my 2000+ songs. I'm sure you have more, nevertheless, I want to find out how to get those ratings. They still show in my iTunes on my laptop but, when I go to the iTunes folder and display the details of at song, no rating is there. If you find out how to get them to display there in the iTunes folder, it seems that would be the key.
    Hope you get your answer soon.

Maybe you are looking for

  • Different pages in a portal aplication

    Hi all, I am using EP on Abap site and want to develop different tabs(Pages Eg. Home, forum, wiki etc..). I already created a page, Iview and a page laout and it's working fine. Now my query is: 1) How to create different tabs on ep and assign differ

  • Managed Bean in Task Form

    Hi!Oracle Fusion Middleware 11.1.1.5.0, Oracle JDeveloper 11g. I post this thread in this section because of the type of project I am working in (SOA Application). I am trying to customize a BPEL Task Form. After I made a project using Fusion Web App

  • Transferring Time Sheet Data to Controlling/Financial Module

    All: I have an issue I am entering data via CAT2 and have supplied a receiver cost center, using wage type MI10 and entered times 8 hours per day.  I have entered salary data into the basic pay via Personnel Management.  I have approved the time shee

  • Keep keyboard layout at login

    Hi, after upgrade my iMac to Mavericks I'm unable to keep the right keyboard layout at login, at every restart or logout I need to pick up my preferred layout, even if I try to remove the default one. The default layout set at boot is "Italian Typewr

  • Timeline beach ball o' death?

    Hi, I'm having severe problems with FCPX right now. I'm trying to start a project and I can get past importing, and draging into the timeline but whenever I press the space bar to preview what I just dropped it the program freezes and shows the dread