UNKNOWN MASK: 001001001

For the operation I did see my previous post: http://technet.oracle.com:89/ubb/Forum41/HTML/000586.html
It got UNKNOWN MASK: 001001001 as result from a sdo_relate, 'determine' operation. Has anyone seen this before, what does it mean and how can I solve it. I tried to enlarge the tolerance, no effect.

I met this problem with 8.1.7 in the following query:
SELECT MDSYS.SDO_GEOM.RELATE(GEOM1, v_AREA_DIMINFO,'equal', GEOM2,v_AREA_DIMINFO) INTO v_OUT FROM DUAL;
If GEOMs are line and they are not equal, I got the message of "UNKNOWN MASK: 000011011'.
But it works for Polygon OR the case of both GEOM are exactly equal even they are lines.
null

Similar Messages

  • Unknown Mask relationships appearing in data

    Dear all
    I have entered some data in MapInfo and then copied the geometries to other rows using Oracle 10.2. Whilst checking the data relationships I came across the following relationship types, amongst others, in my data:
    UNKNOWN MASK: 001001001
    UNKNOWN MASK: 000000111
    UNKNOWN MASK: 000000001
    These must be data errors of some sort but I am not certain what they might be. When I made the table mappable in MapInfo, I set it up so that only regions could be created. This corresponds to SDO_GTYPE 2003 and 2007. All my data is of those types in my table.
    I have checked some of the data in MapInfo, and it states that the regions have no problems. I have even attempted to convert a selected geometry to a region but still no luck. I even tried to see if SDO_UTIL.RECTIFY_GEOMETRY would work resolve the problem but it make no difference.
    If anyone has any ideas I would be grateful.
    Kind regards
    Tim

    Hi Silva
    It looks like I have hit the Oracle Bug 6011024, which you refer to. I am not certain which version of Oracle 10.2 I am using but it is earlier than patch 10.1.2.4. I have left this with my university supervisors.
    I will of course look into the sdo_geom.validate_geometry_with_context() routine, as I had been trying to locate something like that, just to be certain I do not have any other unknown issues.
    Kind regards
    Tim

  • SDO_GEOM.RELATE in 8.1.7

    I got 'UNKNOWN MASK: 110110001' returned when I used SDO_GEOM.RELATE function to check if 2 mutiplelinstrings are equal or not..
    Even I tried to test this function with same geometry, I still got same error message.
    BTW, for other geometry like simple polygon, this function works well.
    Any suggestions?
    Many thanks for your comments and help!
    Jack
    DECLARE
    v_GEOM1                     MDSYS.SDO_GEOMETRY;
    v_GEOM2                     MDSYS.SDO_GEOMETRY;
    v_info                              VARCHAR2(80) ;
    BEGIN
    v_GEOM1:=MDSYS.SDO_GEOMETRY(2006,NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1,11,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(8.07280413276778,53.62639558,8.07354916666667,53.6255908333333,
    8.07360805555555,53.6255119444444,8.07365694444444,53.6254511111111,
    8.073735,53.6253663888889,8.07253709607513,53.62639558,8.07276694444444,
    53.6261461111111,8.07306055555556,53.6258655555556,8.073735,53.6253663888889,
    8.07395,53.6251330555556,8.074015,53.6250625,8.07409694444445,53.6249738888889,
    8.07414888888889,53.6249175,8.07421555555556,53.6248452777778,8.07446527777778,
    53.6245747222222,8.07461333333333,53.6244141666667,8.07469027777778,
    53.6243308333333,8.07517888888889,53.6238011111111));     
    v_GEOM2:=MDSYS.SDO_GEOMETRY(2003, NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1),
    MDSYS.SDO_ORDINATE_ARRAY(8.07109464, 53.62356679, 8.07674003, 53.62356679, 8.07674003, 53.62639558,
    8.07109464, 53.62639558, 8.07109464, 53.62356679));
    SELECT MDSYS.SDO_GEOM.RELATE(v_GEOM1,'EQUAL', v_GEOM1,0.000000000001) INTO v_info FROM DUAL;          
    DBMS_OUTPUT.PUT_LINE(v_info);
    END;

    Handle:  dee
    Status Level:  Newbie (5)
    Registered:  Jun 14, 2010
    Total Posts:  61
    Total Questions:  30 (30 unresolved)
    If its working , Please mark thread as answered why you leave your thread in Open Status

  • Line string validation and ORA-13349 on polygons

    Hi all,
    We are having the following problem:
    Our application accepts linestrings and connects them to create polygons. Each individual line validates TRUE but some polygons validate with ORA-13349. The problem is caused by lines that we call Lightning bolts. These are lines that cut back very sharp on themselves so that one or more points are within tolerance distance of a line segment.
    An example:
    mdsys.sdo_geometry(2002
    ,null
    ,null
    ,mdsys.sdo_elem_info_array(1, 2, 1)
    ,MDSYS.SDO_ORDINATE_ARRAY(258699.59,472878.73
    ,258688.58,472879.66
    ,258688.589,472879.659));
    Oracle spatial seems to be very tolerant in validating these lines but once they are used in a polygon they are not accepted.
    Why is this ?
    Also we are looking for is a way to detect these lines before the polygons are created.
    thanks, Rene

    Hi,
    To detect the "lightning bolts" this procedure seems promising.
    Do a self intersect of the geometry.
    Determine de spatial relationship between the original and the self intersect.
    If the spatial relationship is not "EQUAL" you have you lightning.
    Here is a real life example:
    declare
    l_geo1 mdsys.sdo_geometry := mdsys.sdo_geometry(2002
    ,90112
    ,null
    ,mdsys.sdo_elem_info_array(1, 2, 1)
    ,mdsys.sdo_ordinate_array(258727.255
    ,472853.276
    ,258724.984
    ,472848.338
    ,258714.12
    ,472852.98
    ,258709.61
    ,472854.55
    ,258710.89
    ,472859.11
    ,258712.41
    ,472865.36
    ,258712.3
    ,472868.37
    ,258711.51
    ,472871.47
    ,258709.83
    ,472874.33
    ,258704.77
    ,472877.1
    ,258699.59
    ,472878.73
    ,258688.58
    ,472879.66
    ,258688.589
    ,472879.659));
    l_geo2 mdsys.sdo_geometry;
    l_result varchar2(100);
    l_tolerance number := 0.0005;
    begin
    l_geo2 := mdsys.sdo_geom.sdo_intersection(l_geo1, l_geo1, l_tolerance);
    l_result := sdo_geom.relate(l_geo1, 'mask=determine', l_geo2, l_tolerance);
    dbms_output.put_line(l_result);
    end;
    This example returns an unknown mask 100110001 which I believe should be a OVERLAPBDYDISJOINT. But it is definitely not an EQUAL.
    I will have to go and find some more examples to test this method.
    thanks Rene

  • Want External Phone Number Mask to say "Unknown Caller" Is this Possible?

    When a user dials an external # is it possible to have it show on Caller ID as "Unknown Caller"?
    I have deleted the # that is currently in the External Phone Number Mask, and left it blank, but the Coporate# now shows when he dials out.
    This is something that only needs to be setup for 1 user, not the entire company.

    There will always be some number/name displayed. If you do not put in a number in the outside mask, the number/name associated with the smart trunk will be displayed.
    You might talk to your local phone company and see if they can restrict the numbers or a single phone number. If they can do that on even one number, you can put it into the mask for all of your phones.
    Two other problems you might have with this. One, a lot of people (I do) block calls from phones that do not display a phone numbers.
    Another problem you are going to run into is when someone calls "911" by accident. The Police/fire will try to call back to the number for the smart trunk. And since most often is not on a phone. They will send cars or trucks to the address listed for those smart trunks. Usually the billing address for your company.

  • I tunes could not connect to the i tunes store. An unknown error occurred (0x80092013)

    I have tried completely removing all itunes software and reinstalling, this didn’t work I tried turning on and off my anti virus/firewall, I have tried resetting winsock and restarting pc this didn’t work, I have tried using auto runs to see if there was any conflicting products but only bonjour showed, I have checked the tech specs and meet the minimum requirements, I have the latest version of I tunes, I am able to access secure websites, I have checked proxy settings, ive tried removing pop up blocker, and flushed dns, I have run diagnostics which are below, I also cannot log into the icloud control panel as it says there was a server error, please please please help.
    Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)
    Hewlett-Packard Compaq Presario CQ60 Notebook PC
    iTunes 11.1.1.11
    QuickTime 7.7.4
    FairPlay 2.5.16
    Apple Application Support 2.3.6
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.0.0.117
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0018C0B009E27FC0
    Current user is not an administrator.
    The current local date and time is 2013-10-17 08:03:02.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce 8200M G
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: a8bd6d04c3353d8c18407a83d42a1127
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {835EADBF-AAC5-426C-B52E-7BA09DDE4AE9}
    Description: NVIDIA nForce 10/100/1000 Mbps Networking Controller
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name: {EF8B8266-4C36-4361-A71E-E2E18B282F8F}
    Description: Atheros AR5009 802.11a/g/n WiFi Adapter
    IP Address: 192.168.0.5
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.0.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.0.1
    Lease Obtained: Thu Oct 17 07:46:22 2013
    Lease Expires: Fri Oct 18 07:46:22 2013
    DNS Servers: 192.168.0.1
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Basic

    Hi davwatto thanks for taking the time to reply.
    ok, so tried to open my safari which was version 5.1.7 and i received the error message:
    safari can't connect to the server
    safari can't open the page http://www.apple.com/startpage/ because safari can't connect to the server www.apple.com
    The same error occurred with whatever site I tried to access, so I uninstalled Safari, then reinstalled version 3.2.3 and this time I got the error message:
    The same error message occurred with any website I tried to access. I am able to access all websites including banking etc on IE and firefox.
    Safari can’t open the page.
    Safari can’t open the page “http://www.apple.com/startpage/”. The error was: “unknown error” (kCFErrorDomainWinSock:10013) Please choose Report Bugs to Apple from the Help menu, note the error number, and describe what you did before you saw this message.
    Not sure how to check the logs for itunes though
    If you have any idea how to fix this issue that would be great as im at a total loss.
    Thanks

  • An unknown error occurred (-9808)

    Please help me solve this problem. Every time I try to use the ITunes program to download anything I receive the following message: An unknown error occurred (-9808). When I run the diagnostic program I get the message that Network interfaces verified. ITunes connection verified. And secure link to iTunes failed. What shall I do? When I look at the diagnostic report it states that: Current user is not an administrator. However, I am logged in as the administrator. Also, Windows Firewall is on. iTunes is enabled in Windows Firewall. If iTunes is enabled in Windows Firewall, shouldn’t the problem be solved? I tried restarting the computer, but this doesn’t seem to solve the problem. I will keep trying, but it is very frustrating that I cannot download any of the iTunes/ iPod applications.
    The entire report is:
    Microsoft Windows 7 x64 Home Premium Edition (Build 7600)
    eMachines eMachines E627
    iTunes 9.0.3.15
    QuickTime 7.6.5
    FairPlay 1.6.16
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.6.0.32
    Apple Mobile Device Driver not found.
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number D1A92BD779D6B910
    Current user is not an administrator.
    The current local date and time is 2010-02-16 08:47:06.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc., ATI Radeon HD 3200 Graphics
    ** External Plug-ins Information **
    No external plug-ins installed.
    iPodService 9.0.3.15 is currently running.
    iTunesHelper 9.0.3.15 is currently running.
    Apple Mobile Device service 2.50.39.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {971A443C-6CA8-4533-BBE2-FAA0FBFC72DF}
    Description: Atheros AR5B95 Wireless Network Adapter
    IP Address: 192.168.1.104
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Tue Feb 16 08:36:50 2010
    Lease Expires: Wed Feb 17 08:36:50 2010
    DNS Servers: 209.44.180.53
    209.44.180.53
    209.44.180.58
    Adapter Name: {7EA15B26-1C81-4787-8908-863F775EAAAF}
    Description: Atheros AR8132 PCI-E Fast Ethernet Controller
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: No
    DHCP Server:
    Lease Obtained: Wed Dec 31 18:00:00 1969
    Lease Expires: Wed Dec 31 18:00:00 1969
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    An unknown error occurred (-9808).
    Secure connection attempt to iPhone activation server unsuccessful.
    An unknown error occurred (-9808).
    Last successful store access was 2010-02-16 08:44:30.
    I am an avid PC user, but have been considering purchasing several of Apple’s products, including the iPad. This experience is not helping me continue my desire to purchase these products. I hope you can provide technical assistance. Thank You for your attention.

    Problems connecting to the iTunes Store often stem from issues with the Windows firewall or a firewall in a router, a privacy filter (such as McAfee Internet Privacy Service or Norton Internet Security), an antivirus/antispyware utility, or a download accelerator. Start here:
    iTunes for Windows: iTunes Store Connection Troubleshooting
    iTunes for Windows: Connection Issues when using Internet Filters, Accelerators, or Firewalls
    Tunes for Windows could not establish a secure connection to the iTunes Store
    iTunes for Windows: Possible iTunes Store Errors
    for some basic tips to start isolating the cause of the problem. What you may need to do is temporarily disable any such service and see if that fixes the problem. If so, then if it's a firewall/Internet filter that's causing the problem and you'll need to set the offending service to allow iTunes to connect to the iTunes Store.
    Hope this helps.

  • Itunes unknown error 0x80090330 store connection failed

    Everything else is fine except the secure connection to the store it says it's not enbled but it is and I am an administrator and I am running a anit virus software Kaspersky. This problem has been going on for months didn't care before but now I want this fixed. I really need help with this.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    LENOVO Lenovo IdeaPad N586
    iTunes 11.1.4.62
    QuickTime not available
    FairPlay 2.5.16
    Apple Application Support 3.0
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.0.32
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.4
    iTunes Serial Number 0024BB4801177538
    Current user is not an administrator.
    The current local date and time is 2014-02-06 15:35:16.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Advanced Micro Devices, Inc., AMD Radeon HD 7520G
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.1.4.62 (x64) is currently running.
    iTunesHelper 11.1.4.62 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {CA5E1C16-48B1-4E5F-964A-ECE2AA1DE142}
    Description:    Microsoft Virtual WiFi Miniport Adapter
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Wed Dec 31 16:00:00 1969
    Lease Expires:    Wed Dec 31 16:00:00 1969
    DNS Servers:   
    Adapter Name:    {838962CE-19B3-446A-B518-94E7D62A402F}
    Description:    Broadcom 802.11n Network Adapter
    IP Address:    10.0.0.4
    Subnet Mask:    255.255.255.0
    Default Gateway:    10.0.0.1
    DHCP Enabled:    Yes
    DHCP Server:    10.0.0.1
    Lease Obtained:    Thu Feb 06 14:39:16 2014
    Lease Expires:    Thu Feb 13 14:39:16 2014
    DNS Servers:    75.75.75.75
            75.75.76.76
    Adapter Name:    {5594B638-A907-44E5-B4D5-8280BFF4317D}
    Description:    Realtek PCIe GBE Family Controller
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Wed Dec 31 16:00:00 1969
    Lease Expires:    Wed Dec 31 16:00:00 1969
    DNS Servers:   
    Active Connection:    LAN Connection
    Connected:    Yes
    Online:        Yes
    Using Modem:    No
    Using LAN:    Yes
    Using Proxy:    No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Basic connection to the store failed.
    An unknown error occurred (0x80090330).
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2013-11-12 23:16:06.

    Hello DarkAzriel,
    I found a few articles that might help with the issue you are experiencing with the iTunes Store.
    If you are getting a white screen when accessing the iTunes Store, I recommend reviewing this article:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123
    If you are still not able to access the store or are getting a different error than just a white screen, I recommend the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • ITunes unknown error (-9808) Cannot open iTunes! Please help!

    Can anyone help me! Whenever i try to log into iTunes it says: We could not complete your iTunes store request. An unknown error occured (-9808).
    If this has happened to anyone please tell me how you overcame it. I miss buying music and need some new songs!
    Thank-you xx

    I am having the same issue. I have checked the suggestions of proxy and turned off my Norton Firewall and still have the same problem. Can somebody please help?
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    Dell Inc. Latitude D610
    iTunes 8.0.2.20
    QuickTime 7.5.5
    FairPlay 1.1.11
    CD Driver 2.0.7.5
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.1.2.7
    Bonjour 1.0.5.11 (118.5)
    iTunes Serial Number 8E21C30FDFDB37AE
    Current user is an administrator.
    The current local date and time is 2009-02-16 20:02:24.
    iTunes is not running in safe mode.
    Video Display Information
    ATI MOBILITY RADEON X300
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {063567B6-8056-4744-A025-3C11EB8F0C65}
    Description: Dell Wireless 1370 WLAN Mini-PCI Card - Packet Scheduler Miniport
    IP Address: 192.168.1.2
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Mon Feb 16 15:16:00 2009
    Lease Expires: Tue Feb 17 07:16:51 2009
    DNS Servers: 192.168.1.1
    192.168.1.1
    Adapter Name: {E56FCA09-A4C9-4B9F-B4D6-1E71383AF246}
    Description: Broadcom NetXtreme 57xx Gigabit Controller - Packet Scheduler Miniport
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sat Oct 11 17:11:04 2008
    Lease Expires: Sun Oct 12 17:11:04 2008
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    An unknown error occurred (-9808).
    Secure connection attempt to iPhone activation server unsuccessful.
    An unknown error occurred (-9808).
    Last successful store access was 2009-02-16 19:59:29.

  • There was a problem downloading ... An unknown error has occured -42018...

    Dear all,
    After upgrading to i-tunes 7 I'm not able anymore to download music. If I run diagnostics everything seems fine.
    "Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    MICRO-STAR INC. MS-6580
    iTunes 7.0.1.8
    Current user is an administrator.
    Network Adapter Information
    Adapter Name: {C38C64FE-F7B8-4ABE-8DC0-9B8B549A6690}
    Description: Intel(R) PRO/100 VE Network Connection - Packet Scheduler Miniport
    IP Address: 10.0.69.101
    Subnet Mask: 255.255.255.0
    Default Gateway: 10.0.69.1
    DHCP Enabled: Yes
    DHCP Server: 10.0.69.1
    Lease Obtained: Sat Sep 30 16:54:05 2006
    Lease Expires: Sat Oct 07 16:54:05 2006
    DNS Servers: 10.0.69.1
    Network Connection Information
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful."
    However downloading the songs I bought doesn't work.
    Following error:
    "There was a problem downloading "...". An unknown error has occured (-42018). Please check that the connection to the network is active and try again."
    But my network is active and the diagnostics turn out OK. Please help me out!! I have songs to be downloaded that I have already payed for.

    This didn't work for me, but to any who may be interested, I also was experiencing unknown error -42018 when attempting to download purchased music. Additionally, I was stuck in an endless authorization loop when attempting to play previously purchaed music. All this started when I installed the latest iTunes software 7.0.2. But I managed to fix the problem on my machine.
    I run windows XP Pro, and unlike the majority of users I actually set it up correctly with a dedicated administrator account, and regular user accounts instead of just running as admin all the time. For me, that was the cause of the problem.
    The new version of iTunes software required FULL CONTROL privilages on the iTunes and iPod install directories for all user accounts that were using the program. (Previous versions worked fine, so this is a new thing.) Once I provided those permissions, iTunes worked correctly. Follow this link: http://support.microsoft.com/kb/304040 for information on how to provide FULL CONTROL to every user account.
    I hope you all find this helpful in solving your problem.
    Good Luck,
    Bill

  • Unknown Error Message (-9808) Help!!!!!!

    I have just started to receive an Unknown Error Message (-9808). Tried going into the Advanced tab to uncheck the "Check for server revocation certificate" yet this did not help.
    I downloaded the latest update and that did not help either.
    I ran the diagnostics and here are the results:
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    HP Pavilion 061 RB050AV-ABA s7600y
    iTunes 7.5.0.20
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    Current user is an administrator.
    The current local date and time is 2008-01-07 12:44:58.
    Video Display Information:
    ATI RADEON XPRESS 200M Series
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {CC741EC0-430E-40D6-B749-BF54EAB6609C}
    Description: USB Wireless 802.11 b/g Adaptor - Packet Scheduler Miniport
    IP Address: 192.168.1.104
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Mon Jan 07 12:33:37 2008
    Lease Expires: Tue Jan 08 12:33:37 2008
    DNS Servers: 167.206.254.1
    167.206.254.1
    167.206.254.2
    Adapter Name: {0313532A-55E5-47AF-B016-296FEB5EBDB0}
    Description: Realtek RTL8139/810x Family Fast Ethernet NIC - Packet Scheduler Miniport
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Tue Jan 08 12:33:37 2008
    Lease Expires: Tue Jan 08 12:33:37 2008
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    An unknown error occurred (-9808).
    Secure connection attempt to iPhone activation server unsuccessful.
    An unknown error occurred (-9808).
    Can anyone provide simple instructions on what to do here? Thank you

    Uninstalled Norton 2008 and reinstalled Norton 2007

  • Numbering External Mask

    Hello.
    We have a CUCM 9.1.2.11900-12.
    When we make an external call, receiver can't see our number (it appears as unknown).
    I've tried to add the number into "External Phone Number Mask" field (into "Line Configuration" from device), with no luck.
    I've also tried to add a number into "Calling Party Transform Mask" field and check "Use Calling Party's External Phone Number Mask" from Route Pattern, no luck!
    Into gateway configuration (2821 mgcp controlled) there are no configuration.
    ISP doesn't mask our numbers.
    Where I'm wrong?
    Thanks
    Daniele

    I've used DNA, and result is:
    Results Summary
    Calling Party Information
    Dialed Digits = 03312828301
    Match Result = RouteThisPattern
    Matched Pattern Information
    Called Party Number =  03312828301
    Time Zone = Etc/GMT
    End Device = RL_Esterne
    Call Classification = OffNet
    InterDigit Timeout = YES
    Device Override = Disabled
    Outside Dial Tone = NO
    Call Flow
    TranslationPattern :Pattern=
    Partition =
    Positional Match List = 0:3312828301
    Calling Party Number = 705
    PreTransform Calling Party Number =
    PreTransform Called Party Number =
    Calling Party Transformations
    External Phone Number Mask = NO
    Calling Party Mask =
    Prefix =
    CallingLineId Presentation =
    CallingName Presentation =
    Calling Party Number = 705
    ConnectedParty Transformations
    Called Party Transformations
    Route Pattern :Pattern= 0.331!
    Route List :Route List Name= RL_Esterne
    It seems that CUCM didn't translate calling DN.
    If I insert into route pattern translation, I got this result:
    Results Summary
    Calling Party Information
    Dialed Digits = 03312828301
    Match Result = RouteThisPattern
    Matched Pattern Information
    Called Party Number =  03312828301
    Time Zone = Etc/GMT
    End Device = RL_Esterne
    Call Classification = OffNet
    InterDigit Timeout = YES
    Device Override = Disabled
    Outside Dial Tone = NO
    Call Flow
    TranslationPattern :Pattern=
    Route Pattern :Pattern= 0.331!
    Positional Match List = 0:3312828301
    DialPlan =
    Route Filter
    Require Forced Authorization Code = No
    Authorization Level = 0
    Require Client Matter Code = No
    Call Classification =
    PreTransform Calling Party Number = 705
    PreTransform Called Party Number = 03312828301
    Calling Party Transformations
    External Phone Number Mask = YES
    Calling Party Mask = 0116319XXX
    Prefix =
    CallingLineId Presentation = Default
    CallingName Presentation = Default
    Calling Party Number = 0116319705
    ConnectedParty Transformations
    Called Party Transformations
    Route List :Route List Name= RL_Esterne
    But from debug I can't see any difference: calling number appears both times as 0116319705...

  • Unknown router granted dynamic ARP, now what?

    I have discovered that the Cisco ASA5505 we are using for a firewall is granting a dynamic arp to an SMC router on the outside interface which has access to the internet. The IP address is not that of the single IP granted for the outside interface to the internet, but it is in the range under the net mask (8 addresses).
    I tried using a non-MAC exempt rule in the AAA section to block this, but this doesn't seem to be a good solution.
    Is the router coming in from the outside?  Has the outside interface been breached?  Apparently the ASA5505 doesn't think the router is violating an access rules.
    The dynamic ARP appeared over the week end, when the normal equipment was shut down, but the firewall left running.  Too bad the ARP table doesn't time stamp when this occurred.
    The unknown router has the same MAC address that was found during the middle of last week.  This appearance just started at the middle of last week.
    I do not know what router this is, so I now have concern.
    What steps should I take to track this down?  (I am not an experienced seasoned security IP person)

    Dear PK:
    I did some reading on my own regarding "Gratuitous ARP" and understand that now, but am having problems discovering how the ASA5505 learned the ARP, since apparently the "show mac" command is not available under the ASA 5505 software (I am using the CLI window)
    The available show commands are "show arp" and "show IP" which is close but doesn't give me what I need.
    It could be that the connection on the other end of my dedicated IP (1 address) is changing or stopping and starting and then sending the Grat arp, as this seems most reasonable, but I would like to confirm that this is so.
    It also doesn't help that last week Columbia University in New York scanned our block of addresses and attempted to sit upon both the http and telnet ports.  Their laboratory is set up to scan banks of IP numbers and find misconfigured routers or security appliances.
    Randall

  • Nslookup returns server unknown

    Hello,
    I am not sure if I have a reason to be uncomfortable but the results below do make me uncomfortable. Note that I do not have any problems accessing my network resources and the internet from any program. However...
    Here is the ipconfig on my pc:
       Connection-specific DNS Suffix  . : mydomain.com
       Description . . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6230
       Physical Address. . . . . . . . . : 88-53-2E-30-87-75
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : fcee:4:7:9:0:6:3ede:f16d(Preferred)
       Lease Obtained. . . . . . . . . . : Saturday, February 02, 2013 1:32:46 PM
       Lease Expires . . . . . . . . . . : Thursday, February 14, 2013 1:32:45 PM
       Link-local IPv6 Address . . . . . : fe80::3039:a6e1:8fc:9bec%13(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.0.162(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Lease Obtained. . . . . . . . . . : Sunday, February 03, 2013 12:18:48 PM
       Lease Expires . . . . . . . . . . : Sunday, February 03, 2013 1:18:47 PM
       Default Gateway . . . . . . . . . : 192.168.0.17
       DHCP Server . . . . . . . . . . . : 192.168.0.123
       DHCPv6 IAID . . . . . . . . . . . : 327701294
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-4C-D3-C3-14-FE-B5-C1-FD-04
       DNS Servers . . . . . . . . . . . : fcee:4:7:9:10::
                                           fcee:4:7:9:11::
                                           192.168.63.122
                                           192.168.63.123
       NetBIOS over Tcpip. . . . . . . . : Enabled
       Connection-specific DNS Suffix Search List :
                                           mydomain.com
    And here is the reason for concern (ran on my pc):
    C:\Windows\system32>nslookup www.yahoo.com
            Server:  UnKnown
            Address:  fcee:4:7:9:10::
            *** UnKnown can't find
    www.yahoo.com: No response from server
    But if I specify explicitly any of the DNS servers:
            C:\Windows\system32>nslookup
    www.yahoo.com white
            Server:  white.mydomain.com
            Address:  192.168.63.122
            Non-authoritative answer:
            Name:    ds-any-fp3-real.wa1.b.yahoo.com
            Addresses:  2001:4998:f00b:1fe::3001
                      2001:4998:f00b:1fe::3000
                      2001:4998:f00d:1fe::3001
                      98.139.183.24
            Aliases: 
    www.yahoo.com
                      fd-fp3.wg1.b.yahoo.com
                      ds-fp3.wg1.b.yahoo.com
                      ds-any-fp3-lfb.wa1.b.yahoo.com
    Or
            C:\Windows\system32>nslookup
    www.yahoo.com skylark
            Server:  skylark.mydomain.com
            Address:  192.168.63.123
            Non-authoritative answer:
            Name:    ds-any-fp3-real.wa1.b.yahoo.com
            Addresses:  2001:4998:f00b:1fe::3001
                      2001:4998:f00b:1fe::3000
                      98.139.183.24
            Aliases: 
    www.yahoo.com
                      fd-fp3.wg1.b.yahoo.com
                      ds-fp3.wg1.b.yahoo.com
                      ds-any-fp3-lfb.wa1.b.yahoo.com
    Ping works fine (as any other app out there that I tried):
    C:\Windows\system32>ping www.yahoo.com
            Pinging ds-any-fp3-real.wa1.b.yahoo.com [98.139.183.24] with 32 bytes of data:
            Reply from 98.139.183.24: bytes=32 time=59ms TTL=47
            Reply from 98.139.183.24: bytes=32 time=72ms TTL=49
            Reply from 98.139.183.24: bytes=32 time=121ms TTL=47
            Reply from 98.139.183.24: bytes=32 time=105ms TTL=49
            Ping statistics for 98.139.183.24:
                Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
            Approximate round trip times in milli-seconds:
                Minimum = 59ms, Maximum = 121ms, Average = 89ms
    More about the environment:
            - Very small domain - two AD servers (both Windows Server 2012), two computers (running Windows 8) and three or four devices (printer, phone, WiFi access point, etc.).
            - The network (DHCP, DNS, servers and gateway static addresses etc.) is both IPv4 and IPv6.
            - There are DNS running on both DC servers.
            - The servers have static IPv4 and 6 addresses.
            - The servers have both DNS addresses (both IPv4 and 6) in their IP configuration.
            - Single forward lookup zone - mydomain.com (and of course _msdcs...).
            - Two reverse lookup zones one for IPv4 and one for IPv6.
            - DHCP has the two DNS servers in the options.
    Call me old-fashioned but I've been using "nslookup yahoo.com" to diagnose my network problems for years and now when it doesn't answer unless i specify the dns server, makes me nervous. Am I right and if I am can you suggest possible problems in
    my configrations.
    Thanks Val

    It's only showing "unknown" for the IPv6 address.
    Go into your IPv6 properties, and set the IP and DNS address settings to be obtained automatically.
    Then in Manage network adapters windows, change the view options to show Menu, then click on Advanced, Advanced, and make sure IPv4 is on top instead of IPv6.
    Ace Fekay
    MVP, MCT, MCITP/EA, MCTS Windows 2008/R2 & Exchange 2007, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Technical Blogs & Videos: http://www.delawarecountycomputerconsulting.com/
    This post is provided AS-IS with no warranties or guarantees and confers no rights.

  • Mask Vendor Tax ID number ?

    Hi All
    is it possible to mask Vendor Tax ID number like what we can do for Credit Cards? The issue is that it might contain SSN in some cases for us, and we would like to protect the unauthorized users from viewing  it using any way - XK02, XK03, or SE16 or even using a query.

    Hmmm... I guess we have to list all the hacks for you now...
    First of all, for the XK* and FK* transaction contexts, you can look in the IMG to add field authorization groups to the field (though these normally control change ability) and field status variants to hide the field (though these are normally global and will affect all users AFAIK). Of course, you could develop your own little application to maintain the tax ID number or (not sure which release you are on) look for appropriate enhancement points.
    > To quote myself again:
    >> First of all, for the XK* and FK* transaction contexts...
    This of course depends on how intact your authorization concept is, to restrict the contexts of the calling user. E.g. some folks create a huge "Universal Role for All Users" and even add anything which appears harmless or unknown to them but found in a trace, to it...) and then rely on subsequent roles (search the forum for "enabler") to add the org levels and activities required to do something more than just display. Of course, that looks good in a Power Point presentation, but when requirements such as these come along then they spot the design error too late,  as all their hundreds of "harmless transactions" and broad display authority is already out there "in the wild" and users are using the transactions.
    I hope that is not the case here, but wanted to mention it anyway.
    Second, the report generators, queries and table views: I assume that you are using quick viewer, report painter, SE16_BSEG, etc and the likes. That in my opinion is a design error as well, even if understandable one to some extent. The bugger is that you cannot control a table at field level unless you make it an org relevant field (object S_TABU_LIN), but a TAX ID number is not an obvious candidate for that. That is why it is best to keep users off the tables completely, right from the start.
    Again here you could look for coding exits in the data browsers you are using to clear the field, but that is not bullet proof if the user can display the group which the table belongs to.
    I am not logged on, but is it possible to do an F4 search for a vendor in FK03 based on the Tax ID?
    Of course you could encrypt the whole DB, but that doesn't help much in the above two scenarios.
    Cheers,
    Julius

Maybe you are looking for

  • Why can´t  I find my 5d Mark ii in the finder when I connect it with my mac?

    Why can´t  I find my 5d Mark ii in the finder when I connect it with my mac?

  • Hierarchy Time Dependent ABAP code

    Dear Experts, I want to ask a custom BADI ABAP code to get the hierarchy of a dimension member where Time Dependent Hieararchy is implemented in that dimension. Currently we are using Interface method IF_UJA_DIM_DATA->get_hier_of_mbr to get the hiera

  • Smart Groups in Contacts OSX 10.8.2 causing Freeze

    I am having a problem, similar to a few other threads from the old addressbook, but related to the latest Contacts app. Previous discussions suggest problems with old smartlists causing crashes, this time it is the new Smart Groups. This morning, I t

  • Script for filesystem- report on windows

    Hello experts, i have to create every week a filesystem- Report (Excel- Sheet) of several Windows- Server. Now I'm looking for a method how i can automate this task. It is possible to create a report from Central- Monitoring system for all this syste

  • I can not restore folders from time machine

    installed a new HD per apple tech and email from apple.  now i can not restore any folders from time machine to the new HD. i have been working on this for hours and hours.  Please help