Convert NOT IN to NOT EXISTS if possible

Hi,
I have this query which is returning the correct results
SELECT hdr.order_num
               ,hdr.business_unit_id
               ,dtl.item_class_id
           FROM xxx.dd_ddhdr hdr
               ,xxx.dd_dddtl dtl
          WHERE hdr.order_num = dtl.order_num
            AND hdr.business_unit_id = dtl.business_unit_id
            AND dtl.item_class_id NOT IN
               SELECT cfl1.filtered_column_value
                 FROM sdds.ai_client_filter_list cfl1
                WHERE cfl1.client_id = 'XXT'
                  AND cfl1.filtered_column_name = 'ITEM_SUBCLASS'
                  AND cfl1.business_unit_id = hdr.business_unit_id
            AND hdr.order_datetime
            BETWEEN to_date('3/28/2007 13:21','mm/dd/yyyy hh24:mi:ss')
                AND to_date('3/28/2007 13:26','mm/dd/yyyy hh24:mi:ss');I converted the above query to use NOT EXISTS instead of NOT IN as follows:
SELECT hdr.order_num
               ,hdr.business_unit_id
               ,dtl.item_class_id
           FROM xxx.dd_ddhdr hdr
               ,xxx.dd_dddtl dtl
          WHERE hdr.order_num = dtl.order_num
            AND hdr.business_unit_id = dtl.business_unit_id
            -- AND dtl.item_class_id NOT IN
            AND NOT EXISTS
               select 1
                 from sdds.ai_client_filter_list cfl1
                where cfl1.client_id = 'XXT'
                  and cfl1.filtered_column_name = 'ITEM_SUBCLASS'
                  and hdr.business_unit_id = cfl1.business_unit_id
            AND hdr.order_datetime
            BETWEEN to_date('3/28/2007 13:21','mm/dd/yyyy hh24:mi:ss')
                AND to_date('3/28/2007 13:26','mm/dd/yyyy hh24:mi:ss');The 2nd query does not return any row after converting to NOT EXISTS.
Any idea to solve this?.
Thanks!

You can try this
SELECT hdr.order_num
               ,hdr.business_unit_id
               ,dtl.item_class_id
           FROM xxx.dd_ddhdr hdr
               ,xxx.dd_dddtl dtl
          WHERE hdr.order_num = dtl.order_num
            AND hdr.business_unit_id = dtl.business_unit_id
            AND NOT EXISTS
               SELECT noll
                 FROM sdds.ai_client_filter_list cfl1
                WHERE cfl1.client_id = 'XXT'
                  AND cfl1.filtered_column_name = 'ITEM_SUBCLASS'
                  AND cfl1.business_unit_id = hdr.business_unit_id
                  AND dtl.item_class_id = cfl1.filtered_column_value --<<--- you missed out this
            AND hdr.order_datetime
            BETWEEN to_date('3/28/2007 13:21','mm/dd/yyyy hh24:mi:ss')
                AND to_date('3/28/2007 13:26','mm/dd/yyyy hh24:mi:ss');Please keep in mind NOT IN and NOT EXISTS acts differently when it comes to NULL values
Check this out
select * from emp where empno not in (select mgr from emp)
select *
  from emp e
where not exists(select null from emp e1 where e.empno = e1.mgr)We expect the both to return the same result but they dont. Its because of the null value in the mgr column.
Now modify the NOT IN query like this and check
select * from emp where empno not in (select mgr from emp where mgr is not null) Edited by: Karthick_Arp on Sep 14, 2009 12:37 AM

Similar Messages

  • CS4 will not open NEF files. I installed DNG converter and it did not help.

    CS4 will not open NEF files. I installed DNG converter and it did not help. Also, I tried to just "update" photoshop and it did not work. It is a new camera (Nikon 1).

    Yes, you need CS6. DNG Converter is just a standalone tool to convert RAW to DNG files which then may be possible to open in older versions of Adobe tools.
    Mylenium

  • I have a western digital external hard drive that needs to be re formatted for use on my but iMac but I do not want to lose existing data

    I have a Western Digital external hard drive that needs to be re formatted for use on my iMac, but I do not want to lose existing data, is this possible ?

    Formatting a disk always erases all the data on it. Your only option is to back it up elsewhere and restore it once formatted.

  • OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.

    OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.
    Appreciated if you could able to help as soon as possible as I don' have back up for these disappeared reports.
    Pleas let me know if any additional information needed.

    Hi
    Thank you for the reply.
    Here one thing I would need to mention that those are created by me on last week, but when I check those today, I could not able to see or even admin also not able to see those. For sure no migration and updations happend over the week end, really not able to debug whats the issue around. Unfortunately I haven't taken back up as well.
    Please could you help and let me know whats the root cause and how I could able to restore.
    Best regards,
    Kumar

  • Converted file is pic not text - how to make text?

    Converted file is pic not text - how to make text?

    Hi,
    I am moving your posting to Adobe ExportPDF forum as you posted this at Acrobat.com forum.
    It seems that you did not turn on "OCR" when you convert your PDF file or your PDF file contains too small text/graphics/complex layout. 
    Please send your file to us if possible using below site so that we can look into the problem:
    https://adobeformscentral.com/?f=qJiclooYWGGNFtWfj8g3wg#
    Thank you.
    Hisami

  • Elements 9 w/ RAW converter 6.5 will not convert files from Canon S100.

    Elements 9 with upgraded RAW converter 6.5 will not download (or convert) files from my Canon S100.

    Thank you for the reply.  I have struggled with this problem for about 6 weeks.  Got bum information from both Canon and Adobe.  Grew discouraged.
    As a “test” after reading the discussion, I downloaded the trial version of Elements 10.  It contained RC 6.6, which would not do the S100.  I “updated”
    to 6.7 which finally did the job.  I’m really curious as to why the download of Elements 10 doesn’t “ship” with the latest RC?  I guess just to maintain
    confusion for as long as possible.
    Thanks again.  Only your reply enabled a final solution.
    Graden Harger
    Houston

  • Not in and Not Exists

    Hi everyone,
    I need some explanation on why the index is not being used in one of my queries.
    Here are the queries:
    SELECT COUNT (1)
    FROM (SELECT hdr.ALLOC_HDR_SEQ_NBR hdrnbr
    FROM sm_vda_allocation_header hdr
    INNER JOIN
    sm_vda_type vdatype
    ON hdr.vda_typ_cd = vdatype.vda_typ_cd
    WHERE
    vdatype.SAP_POST_TYP_CD = 'JE'
    AND vdatype.vda_alloc_flg = 'Y'
    AND hdr.vda_liab_flg IS NULL
    AND hdr.sap_extrct_dt IS NULL
    AND hdr.ALLOC_HDR_SEQ_NBR NOT IN
    (SELECT alloc_hdr_seq_nbr
    FROM sm_vda_allocation_detail));
    return 0 rows.
    explain plan::
    Plan
    SELECT STATEMENT CHOOSECost: 671 Bytes: 26 Cardinality: 1                          
         8 SORT AGGREGATE Bytes: 26 Cardinality: 1                     
              7 HASH JOIN Cost: 671 Bytes: 293,254 Cardinality: 11,279                
                   1 TABLE ACCESS FULL SM_APPL.SM_VDA_TYPE Cost: 5 Bytes: 56 Cardinality: 7           
                   6 MERGE JOIN ANTI Cost: 665 Bytes: 281,106 Cardinality: 15,617           
                        3 TABLE ACCESS BY INDEX ROWID SM_APPL.SM_VDA_ALLOCATION_HEADER Cost: 496 Bytes: 241,860 Cardinality: 20,155      
                             2 INDEX FULL SCAN UNIQUE SM_APPL.SM_VDA_ALLOCATION_HEADER_PK Cost: 438 Cardinality: 20,450
                        5 SORT UNIQUE Cost: 169 Bytes: 417,480 Cardinality: 69,580      
                             4 INDEX FAST FULL SCAN NON-UNIQUE SM_APPL.SM_VDA_ALLOCATION_DETAIL_FK_I Cost: 86 Bytes: 417,480 Cardinality: 69,580
    2nd query::
    SELECT COUNT (1)
    FROM (SELECT hdr.ALLOC_HDR_SEQ_NBR hdrnbr
    FROM sm_vda_allocation_header hdr
    INNER JOIN
    sm_vda_type vdatype
    ON hdr.vda_typ_cd = vdatype.vda_typ_cd
    WHERE
    vdatype.SAP_POST_TYP_CD = 'JE'
    AND vdatype.vda_alloc_flg = 'Y'
    AND hdr.vda_liab_flg IS NULL
    AND hdr.sap_extrct_dt IS NULL
    AND NOT exists
    (SELECT 1
    FROM sm_vda_allocation_detail b where
    hdr.ALLOC_HDR_SEQ_NBR = b.ALLOC_HDR_SEQ_NBR));
    explain plan:::
    Plan
    SELECT STATEMENT CHOOSECost: 831 Bytes: 20 Cardinality: 1                     
         6 SORT AGGREGATE Bytes: 20 Cardinality: 1                
              5 FILTER           
                   3 HASH JOIN Cost: 828 Bytes: 14,560 Cardinality: 728      
                        1 TABLE ACCESS FULL SM_APPL.SM_VDA_TYPE Cost: 5 Bytes: 56 Cardinality: 7
                        2 TABLE ACCESS FULL SM_APPL.SM_VDA_ALLOCATION_HEADER Cost: 822 Bytes: 12,096 Cardinality: 1,008
                   4 INDEX RANGE SCAN NON-UNIQUE SM_APPL.SM_VDA_ALLOCATION_DETAIL_FK_I Cost: 3 Bytes: 90 Cardinality: 15      
    In the 2nd query with NOT EXISTS, I see FULL table scan for SM_APPL.SM_VDA_ALLOCATION_HEADER
    In the first query, the index is used in the same place:
    2 INDEX FULL SCAN UNIQUE SM_APPL.SM_VDA_ALLOCATION_HEADER_PK Cost: 438 Cardinality: 20,450
    ALLOC_HDR_SEQ_NBR is a primary key column.
    Actually NOT IN and NOT EXISTS both used index for the second inner table (SM_APPL.SM_VDA_ALLOCATION_DETAIL).
    But NOT exists is not using the index for the first table but not in is using.
    how come.

    872605 wrote:
    Hi everyone,
    I need some explanation on why the index is not being used in one of my queries.
    Here are the queries:
    SELECT COUNT (1)
    FROM (SELECT hdr.ALLOC_HDR_SEQ_NBR hdrnbr
    FROM sm_vda_allocation_header hdr
    INNER JOIN
    sm_vda_type vdatype
    ON hdr.vda_typ_cd = vdatype.vda_typ_cd
    WHERE
    vdatype.SAP_POST_TYP_CD = 'JE'
    AND vdatype.vda_alloc_flg = 'Y'
    AND hdr.vda_liab_flg IS NULL
    AND hdr.sap_extrct_dt IS NULL
    AND hdr.ALLOC_HDR_SEQ_NBR NOT IN
    (SELECT alloc_hdr_seq_nbr
    FROM sm_vda_allocation_detail));
    return 0 rows.
    explain plan::
    Plan
    SELECT STATEMENT CHOOSECost: 671 Bytes: 26 Cardinality: 1                          
         8 SORT AGGREGATE Bytes: 26 Cardinality: 1                     
              7 HASH JOIN Cost: 671 Bytes: 293,254 Cardinality: 11,279                
                   1 TABLE ACCESS FULL SM_APPL.SM_VDA_TYPE Cost: 5 Bytes: 56 Cardinality: 7           
                   6 MERGE JOIN ANTI Cost: 665 Bytes: 281,106 Cardinality: 15,617           
                        3 TABLE ACCESS BY INDEX ROWID SM_APPL.SM_VDA_ALLOCATION_HEADER Cost: 496 Bytes: 241,860 Cardinality: 20,155      
                             2 INDEX FULL SCAN UNIQUE SM_APPL.SM_VDA_ALLOCATION_HEADER_PK Cost: 438 Cardinality: 20,450
                        5 SORT UNIQUE Cost: 169 Bytes: 417,480 Cardinality: 69,580      
                             4 INDEX FAST FULL SCAN NON-UNIQUE SM_APPL.SM_VDA_ALLOCATION_DETAIL_FK_I Cost: 86 Bytes: 417,480 Cardinality: 69,580
    2nd query::
    SELECT COUNT (1)
    FROM (SELECT hdr.ALLOC_HDR_SEQ_NBR hdrnbr
    FROM sm_vda_allocation_header hdr
    INNER JOIN
    sm_vda_type vdatype
    ON hdr.vda_typ_cd = vdatype.vda_typ_cd
    WHERE
    vdatype.SAP_POST_TYP_CD = 'JE'
    AND vdatype.vda_alloc_flg = 'Y'
    AND hdr.vda_liab_flg IS NULL
    AND hdr.sap_extrct_dt IS NULL
    AND NOT exists
    (SELECT 1
    FROM sm_vda_allocation_detail b where
    hdr.ALLOC_HDR_SEQ_NBR = b.ALLOC_HDR_SEQ_NBR));
    explain plan:::
    Plan
    SELECT STATEMENT CHOOSECost: 831 Bytes: 20 Cardinality: 1                     
         6 SORT AGGREGATE Bytes: 20 Cardinality: 1                
              5 FILTER           
                   3 HASH JOIN Cost: 828 Bytes: 14,560 Cardinality: 728      
                        1 TABLE ACCESS FULL SM_APPL.SM_VDA_TYPE Cost: 5 Bytes: 56 Cardinality: 7
                        2 TABLE ACCESS FULL SM_APPL.SM_VDA_ALLOCATION_HEADER Cost: 822 Bytes: 12,096 Cardinality: 1,008
                   4 INDEX RANGE SCAN NON-UNIQUE SM_APPL.SM_VDA_ALLOCATION_DETAIL_FK_I Cost: 3 Bytes: 90 Cardinality: 15      
    In the 2nd query with NOT EXISTS, I see FULL table scan for SM_APPL.SM_VDA_ALLOCATION_HEADER
    In the first query, the index is used in the same place:
    2 INDEX FULL SCAN UNIQUE SM_APPL.SM_VDA_ALLOCATION_HEADER_PK Cost: 438 Cardinality: 20,450
    ALLOC_HDR_SEQ_NBR is a primary key column.
    Actually NOT IN and NOT EXISTS both used index for the second inner table (SM_APPL.SM_VDA_ALLOCATION_DETAIL).
    But NOT exists is not using the index for the first table but not in is using.
    how come.WHY MY INDEX IS NOT BEING USED
    http://communities.bmc.com/communities/docs/DOC-10031
    http://searchoracle.techtarget.com/tip/Why-isn-t-my-index-getting-used
    http://www.orafaq.com/tuningguide/not%20using%20index.html

  • MFL: The dependency is not configured in schema resource. Possible reason one or more import/include is not set   correctly.

    HI Friends,
    I have a created a MFL to transform XML to Non XML format. When am generating a XSD out of this MFL am getting this Error:
    The dependency is not configured in schema resource. Possible reason one or more import/include is not set
    correctly.
    Here is the snippet of the XSD:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns="http://www.w3.org/2001/XMLSchema"
              targetNamespace=""
              xmlns:mfl="http://www.bea.com/mfl"
              elementFormDefault="qualified">
        <xsd:import namespace="http://www.bea.com/mfl"/>........
    Later Part i have searched for mfl.xsd in com.bea.wli.core.mflengine_1.x.x.x.jar in my.........../Oracle_OSB1/modules  and imorted this XSD into my eclipse workspace.
    Then i added the schemalocation attribute to the Import element. which looks something like below:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns="http://www.w3.org/2001/XMLSchema"
              targetNamespace=""
              xmlns:mfl="http://www.bea.com/mfl"
              elementFormDefault="qualified">
        <xsd:import namespace="http://www.bea.com/mfl" schemaLocation="../../mfl.xsd" />......
    After doing these changes also am getting the same error... can anyone help me out of this????

    Hi Arun,
    Also in SB console we can refer xsds from other projects but again OEPE doesnt seem to support that we will have to make duplicate copies of the resources in each project.It is not like that if you are using OEPE then you can not refer resources from other projects. Just what you need to do is that give relative path of the resource which is there in the file system. It does not matter that to which project it belongs. Yes, now with OEPE, you have to do this manually.
    Regards,
    Anuj

  • My iPad Air 16 gb wifi  not open and asking for an address and not mine and I am the owner of this device and I can not pave if there is a possibility of me to help me open it with my address as I opened before

    asking for an address and not mine and I am the owner of this device and I can not pave if there is a possibility of me to help me open it with my address as I opened before

    Read the following about, "Activation Lock".
    http://support.apple.com/kb/ht5818

  • I'm trying to clean up my mailbox and when I delete an item(s) I get a message that say's "operation could not be completed- file exists. Further, when I do this one message is copied (not deleted) to the trash folder. Can someone help me through this?

    I'm trying to clean my mailbox and when I click on delete or highlight and move to trash I get a message that says "operation could not be completed - file exists. Further, when I select a message or group of messages, one of them is copied (not deleted) to the trash folder. Can someone help me through this?
    Thanks.

    It's a POP account. I decided to clean up my mailbox today after noticing the computer was real slow after USA Today started sending their daily top stories with new graphics. Also before I noticed the problem with mail deletion - two things happened. 1) I updated security sofware as prompted by Apple and 2) downloaded Mackeeper and went throught some preliminary scans but did not buy their package. Thanks forn nstaying with me.

  • I need to connect my Imac 27'' (newest version) up to 3/4 monitors (all 40'' LCD tv's with VGA and HDMI connections) with extended display to all external screens, not duplicate images. Is this possible?

    i need to connect my Imac 27'' (newest version) up to 3/4 monitors (all 40'' LCD tv's with VGA and HDMI connections) with extended display to all external screens, not duplicate images. Is this possible?

    I would suggest you visit an Apple dealer, preferably an Apple Store if there's one in your city, and ask for assistance in determining what you need. The questions and issues you bring up are rather complex to address in a technical support forum and would be better addressed in person where you and the salesperson can ask questions back and forth to arrive at the optimal setup.
    Regards.

  • Adobe Pdf Converter Print Driver Will not install

    Acrobat V9.0
    Vista Utimate Service Pack 1
    I have not been able to print to the PDF Printer. I get the following error when I select the PDF printer.
    "The 'Adobe PDF Converter' printer driver is not installed on this computer. Some printer properties will not be accessible unless you install the printer driver. Do you want to install the driver now?"
    When I say yes and select version 8.5.0.0 printer since it is the latest version. I get a Add Printer Driver Wizard window that says. "Unable to install adobe pdf converter, Type 3 - User Mode, x86 driver. Access is denied.
    I went through all the recommended steps on the web site listed below with no success.
    Thanks in advance for you help.!!!!!!!!!!!!!!
    Jim
    Solution 1: Use a supported installation.
    The following are unsupported installations, and the supported solutions:
    If you install Acrobat (Professional or Standard) on a 64-bit operating system, then you may
    see this error. Please update Acrobat to version 8.1 or later. You can update from within
    Acrobat via the help pull-down menu, or download the updater from the following location:
    http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows.
    If you install Acrobat to a shared network disk instead of a local hard disk, then the Adobe PDF
    printer is not installed. Install Acrobat on a local hard disk.
    TechNote Details
    PRODUCTS AFFECTED:
    DID THIS RESOLVE
    YOUR PROBLEM?
    Yes
    No
    300 characters
    Acrobat Professional
    Acrobat Standard
    Acrobat 3D
    TechNote
    Home / Support /
    Your account o Y Contact United States (Change)
    Home Solutions Products Support Communities
    Company Downloads Store
    Error "Warning 20225..." or no Adobe PDF printer appears (Acrobat 8.0 and Acrobat 3D 8.0 on Windows)
    http://kb.adobe.com/selfservice/viewContent.do?externalId=333221&sliceId=1[10/4/2008 2:04:17 PM]
    If you install Acrobat to a directory with a path that contains extended ASCII or double-byte
    characters, then English installations will display the error message. Install to a path that does
    not contain extended ASCII or double-byte characters.
    Solution 2: Ensure that the Print Spooler process is running and set to
    Automatic, and then repair Acrobat.
    1. Select Start > Settings > Control Panel.
    2. Double-click Administrative Tools and then double-click Services.
    3. Locate the service Print Spooler.
    4. If the Startup Type is not Automatic, then set it to Automatic:
    a. Right-click the Print Spooler.
    b. Choose Properties.
    c. Choose the General tab.
    d. Choose Automatic in the Startup Type menu.
    e. Click OK.
    5. If the Print Spooler service is not running, then start it.
    a. Right-click the Print Spooler line.
    b. Select Start from the menu.
    6. Start Acrobat, and choose Help > Detect And Repair.
    Solution 3: Ensure that the Print Spooler process has no additional
    dependencies.
    Only the Remote Procedure Call dependency is required for Print Spooler to operate.
    Additional Services can attach to the process but will interfere with restarting the service.
    If the Print Spooler process has additional dependencies, then please refer to the steps
    below.
    To remove all services listed under "This service depends on the following system
    components":
    1. Choose Start > Settings > Control Panel.
    2. Double-click Administrative Tools and then double-click Services.
    3. Right-click Print Spooler and choose Properties.
    4. Click the Dependencies tab.
    5. Record services under "This service depends on the following system components" and click
    OK.
    Imporatnt: Remote Procedure Call is a system service and should not be removed.
    6. Temporarily remove associated programs for the listed services.
    7. Contact the service vendor for removal information if removal of associated software does
    not remove the service.
    8. Start Acrobat, and choose Help > Detect And Repair.
    To disable all services listed under "The following system components depend on this
    service":
    1. Choose Start > Set

    I am having similar problems. After years of successful use, about a year ago, my printer (Epson stylus Photo R300) stopped working. After much investigation, it appears my computer no longer recognizes my printer. I've followed resets, safe boots, uninstalls, reinstalls, etc. This happened so long ago, I don't recall what I was doing when it happened. I'm figuring it happened shortly after a Software Update... So far none of the fixes recommended to me have solved the problem. I've been using Epson customer support, but they've stopped responding. None of their suggestions have seemed to work either.

  • I have purchased a new iPad2 and I was wondering if there is a way to get iPod content onto this new device. I am having difficulty finding any information on this kind of transfer and I am not sure if it is even possible. Thanks

    I have purchased a new iPad2 and I was wondering if there is a way to get iPod content onto this new device. I am having difficulty finding any information on this kind of transfer and I am not sure if it is even possible. Just not looking forward to loosing my progress in games and information in notes and other apps. Thanks

    Have you been syncing the iPod with iTunes? Then you just connect the iPad and set it up through iTunes and sync any content you want onto it.
    http://support.apple.com/kb/ht1386
    In terms of games/apps. If they are not universal (you will see a + symbol next to them) or made for iPad (you would see an HD in the name, usually) then they won't look good on an iPad as those apps will open in a iPod sized window, giving you the option to enlarge.

  • Hi. Its exactly what it means I can now convert but it's not letting me do...

    Hi. Its exactly what it means I can now convert but it's not letting me do
    anything with it and all the words have gone once CONVERTED & Saved  can
    this be sorted or can I just get my MONEY back and I will try other avenues
    to get what I want.
    Kind Regards
    Hugh Sneddon
    Director
    E: [email protected]
    O: 01772 797904
    M:  07447475117
    N W Energy Management Solutions Ltd
    Company logo 2
    P Please consider the environment before printing this email

    Please post in the right forum, and stop spamming this forum with new threads on the same issue. And don't forget that you are not addressing Adobe here, just fellow users who cannot give you your money back.
    Finally, I don't think it's very wise to post all that personal information in a public forum such as this...

  • Job  ZINF_TRANS_ACK_FILE_CITI is not active- Cancellation not possible!

    hi,
    one job is in ready state from long time and unable to stop/delete.
    Error is like job is not active- cancellation not possible.
    Kindly someone suggest me how to cancel the job on priority.
    Thanks in advance!!
    Regards,
    Jeevan Reddy

    Hello Bala,
    This is not a PI question. You should have raised the question in different forum.
    Anyways, You can delete a JOB.
    Place cursor on the Job , goto JOB in the top right and delete the JOB.
    Thanks,
    Kalyan

Maybe you are looking for

  • Please help undo damage done by bad software download

    How do I find out what settings a download changed to my MacBook Air?  How do I permanently expunge all related files? I downloaded what I thought was Flip4Mac and it was some piece of junk that polluted my computer; how extensively, I don't know, bu

  • How to fill out multiples of the same form without having to input e-mail every time?

    I am making a almost check list for my boss while he inspects die cast machines. He would also like to use the form so clients can fill the form out themselves and send them to us. Problem is if my boss is inspecting 10 machines it doesn't make sense

  • Unable to expand...

    hi, i've just installed sqldeveloper 1.2.1-32.13 on mac os x 10.4.11. it's the first install for me, first install on this machine. when connected to a database, in the left column of the main window i'm unable to expand virtually all of those nodes

  • Flv Video inserted into page by Dreamweaver won't play or show up on page??

    The following code was inserted into a web page for a site I am trying to build in Dreamweaver CS5.5, but the video clip does not show up when I try to view the page in browser: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="202"

  • IPod borken... need help

    For some reason, my ipod just keeps crashing and resteting defaults... i didnt drop it or push force onto it. Ive had it for at least 2 weeks, and the videos played fine till now.