WRT1900ac: Please explain what uPnP setting does

Could someone please explain what the following settings (in the Connectivity-Administration page) do?
UPnP    I_l  Enabled
  I_l Allow users to configure
  I_l Allow users to disable internet access
Do these en/disable uPnP access to the router from the WAN side? LAN side?
En/disable uPnP protocol for all devices on the LAN?
The User Manual is not clear what each of these check-boxes do...
Thanks.
Aloke

I'ts recommended to leave uPnP enabled as it helps various devices obtain reqired port connections to the internet services and internal devices on the LAN side for some gaming and media sharing services and devices as well.
The additional options are I believe to allow users to configure there own services on than side if needed. At most, if uPnP is enabled, evrything is automatic and little or no coniguration is needed. 
http://en.wikipedia.org/wiki/Universal_Plug_and_Play

Similar Messages

  • Please explain what this program doing- I see the results but don't underst

    public class Mystery2{
    public static void main(String []args){
    int count = 1;
    while (count <= 10){
    System.out.println(count % 2==1? "****":"++++++");
    ++count;
    }//end while
    }//end main
    }//end class

    Hello! First of all - where did you find this code (just for information, so it's easier to answer the question)
    Secondly, pls be so kind as to use code tags. Here's the same program, reformatted and in code tags:
    public class Mystery2
        public static void main (String [] args)
            int count = 1;
            while (count <= 10)
                System.out.println (count % 2 == 1 ? "****" : "++++++");
                ++count;
            }//end while
        }//end main
    }//end class

  • Could someone please explain what "Run Spindump" & "Run System Diagnostics" does in 'Activity Monitor' ?

    Could someone please explain what "Run Spindump" & "Run System Diagnostics" does in 'Activity Monitor' ?

    Good question.  You don't need to worry about running those.  They will run automatically when needed by the system.  The information they generate (some) is sent to apple automatically (unless that setting is disabled).
    If you want to look at the output of these files, most can be found in the console (Utility/Console).  Open the app and look at all the system messages your Mac generates....on the right hand side I would bet you already have a crash log or spindump that was collected without you even knowing it.

  • Please explain what are the various procedures to find user-eixts

    Hi,
    Please explain what are the various procedures to find user-eixts ?
    Ramana

    Hi,
    1. By executing this Program.
    *& Report  ZFIND_EXIT
    REPORT  ZFIND_EXIT.
    *report zbadi_find .
    tables : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
    if not p_tcode is initial.
    select single * from tstc where tcode eq p_tcode.
    elseif not p_pgmna is initial.
    tstc-pgmna = p_pgmna.
    endif.
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object in ('SMOD', 'SXSD')
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(105) sy-uline.
    format color col_heading intensified on.
    Sorting the internal Table
    sort jtab by object.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type c.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    loop at jtab into wa_tadir.
    at first.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    write:/(105) sy-uline.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    format color col_group intensified on.
    write:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    select single modtext into wf_txt
    from modsapt
    where sprsl = sy-langu
    and name = wa_tadir-obj_name.
    format color col_normal intensified off.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single text into wf_txt
    from sxs_attrt
    where sprsl = sy-langu
    and exit_name = wa_tadir-obj_name.
    format color col_normal intensified on.
    endcase.
    write:/1 sy-vline,
    2 wa_tadir-obj_name hotspot on,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    at end of object.
    write : /(105) sy-uline.
    endat.
    endloop.
    write:/(105) sy-uline.
    skip.
    format color col_total intensified on.
    write:/ 'No.of Exits:' , wf_smod.
    write:/ 'No.of BADis:' , wf_badi.
    else.
    format color col_negative intensified on.
    write:/(105) 'No userexits or BADis exist'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(105) 'Transaction does not exist'.
    endif.
    at line-selection.
    data : wf_object type tadir-object.
    clear wf_object.
    get cursor field field1.
    check field1(8) eq 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    when 'SXSD'.
    set parameter id 'EXN' field sy-lisel+1(20).
    call transaction 'SE18' and skip first screen.
    endcase.
    2. . Go to the screen>System>Status-->Program (Double
    click this program. It will take you to the program.
    2. Now, Goto-->Object Directory Entry.
    3. Make a note the package name.
    4. Now run the transactions SMOD, press F4 and enter the
    above noted package, press enter.
    5. It will display list of Exits.
    6. Now go back to the initial screen SMOD.
    7. Specify the exit name here and select the radio button
    Components.
    8. It will display four group boxes one for FM, second
    for Fcodes, thrid for Screen areas and last for
    includes.
    9. Goto transaction CMOD, create a new project, and
    click the button "Enhancement assignments" and
    specify your enhancements that you got in SMOD.
    10. Now bouble clikc the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.
    3. 1. in se11, goto table MODSAP
    View table contents
    in Type field, enter
    'E' (for user exit / Function Exit)
    OR 'S' (for screen exit)
    4. Calling Customer- fucntion in Main Program
    Thanks,
    Anitha

  • I am having email problems with the new Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help

    I am having email problems with the new Mountain Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help
    Incoming Mail (IMAP) Server - requires SSL:
    imap.gmail.com
    Use SSL: Yes
    Port: 993
    Outgoing Mail (SMTP) Server - requires TLS:
    smtp.gmail.com (use authentication)
    Use Authentication: Yes
    Use STARTTLS: Yes (some clients call this SSL)
    Port: 465 or 587
    Account Name:
    your full email address (including @gmail.com) Google Apps users, please enter username@your_domain.com
    Email Address:
    your full Gmail email address ([email protected]) Google Apps users, please enter username@your_domain.com
    Password:
    your Gmail password
    The Quick Answer
    Follow the instructions below to set up IMAP1 access in most email clients.
    Google Apps users, please follow the default instructions unless otherwise noted, replacing 'your_domain.com' with your actual domain2 name.
    this is all greek to me. WHAT IS STARTTLS? On the first page of Apple set up there is a TLS certificate and it is marked NONE- should I change it to the long APPLE CERT option?  The next page under ADVANCED: THERE IS A BOX SSL MARKED.  Then IMAP Path Prefix - I put stmp.gmail.com.. is that right?  Port 993 can  use this one? as 456 doesn't work and 587 said it wasn't safe.  Under AUTHENTICATION I used PASSWORD.  Should I have used external client cert TLS?
    Please help me set this up securely. Thanks

    Apple - Support - Mail Setup Assistant

  • Hi guru's   i am new to xi  please explain what is correlation in xi

    1) please explain what is correlation in xi ?
    2) what is the xi landscape ?

    hi,
    Refer these links
    /people/sravya.talanki2/blog/2005/08/24/do-you-like-to-understand-147correlation148-in-xi
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/64373f7853494fe10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/08/16163ff8519a06e10000000a114084/frameset.htm
    Landscape:
    The SAP System Landscape Directory (SLD) is the central information provider in a system landscape.
    The SLD contains two types of information:
    Component Information: This is information about all available SAP products and components, including their versions. If there are any third-party products in the system landscape, they are also registered here.
    At design time of the integration objects, the component information is extracted from the SLD to define integration scenarios.
    Landscape Description: This contains all installed systems in a system landscape.
    When a collaborative business process is configured, the landscape descriptions are needed to determine the system information of the business partners involved.
    /people/boris.zarske/blog/2006/07/28/ulm206-landscape-strategies-for-the-system-landscape-directory-of-sap-netweaver
    /people/boris.zarske/blog/2008/03/21/sld-general-recommendation-how-to-set-up-the-system-landscape-directory
    http://help.sap.com/saphelp_nw04s/helpdata/en/fe/39ae3d47afd652e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/fe/39ae3d47afd652e10000000a114084/frameset.htm
    Regards,
    Nithiyanandam
    Edited by: Nithiyanandam A.U. on May 11, 2009 7:01 AM

  • Please explain what are form groups and form routines

    Hello ABAP Experts,
    Could you please explain what are form groups and form routines? I would certainly appreciate some examples.
    Thank you in advance, Aleksandra

    Hi,
    I've found the Form Group in transaction J7LE. It is part of Industry Specific solution for hi tech companies, so I'm not sure if you'll be able to access it. In this tcode you define master data of your partner. The first step is to choose the Form Group - they simply group Form Routines. Depending on which one I choose, different entry fields get activated. However there are routines that will enable input to the same fields, so I suppose there must be some additional functionality behind it. Could you please specify what does it mean?
    >>Form ROUTINES, are subroutines for modularizing your code<<
    I'm afraid I have no ABAP experience at all...
    Cheers, A.

  • Firefox 4 extremely slow at start up, Then after awhile it clears its cache automaticly then its speed up. Please explain whats happening.

    Firefox would slow up when cache builds up. Especially at start ups. Extremely slow. Then a few second later it would go back to normal. Then when i check the cache. It has already been cleared automaticly. Can somebody please explain whats going on. Looks like it has something to do with Automatic cache management system. THank you very much.

    You may want to just get one utility for now.
    At this point, do you need a new graphic card? then you need to upgrade to Leopard. If your software and system won't be a problem regardless of compatibility great, but make sure. Otherwise, Snow Leopard will likely require lots more upgrades and updates.
    But maybe doing an upgrade to Leopard and then test the waters with Leopard and Snow L. makes better sense.
    Only the "Early, Early" 2006-7 1st Gen Mac Pros can run 10.4.11 (or at least install and officially supported).
    The product pages have misleading information but you do need 10.5.7 for the 4870 which is your best graphics upgrade choice. The 3870 came out a year ago and requires 10.5.3+.

  • Could someone please explain what P to P and Order to Cash cycle?

    Could someone please explain what Procurement to Pay and Order to Cash cycles mean? Thanks.

    Hi,
    Pl.visit following links for P2P cycle.
    http://erpschools.com/articles/procure-to-pay-cycle#13480480234441&79412::resize_frame
    http://oracleapplicationsfunctional.blogspot.in/2011/08/procure-to-pay-p2p-cycle-in-purchasing.html
    http://www.shareoracleapps.com/2010/05/procure-to-pay-cycle-in-oracle-apps-r12.html
    and visit following links for O2C cycle.
    http://erpschools.com/articles/order-to-cash-cycle#13480481951911&21367::resize_frame
    http://www.youtube.com/watch?v=2GhAbWGz7iA
    http://knoworacle.wordpress.com/2008/12/08/data-flow-for-11i-order-to-cash-cycle/
    http://oracleapps88.blogspot.in/2012/08/order-to-cash-cycle.html
    http://www.slideshare.net/anand5538/order-to-cash-cycle-9647606
    HTH
    Sanjay

  • Can anyone explain what consume() actrually does?

    Can anyone explain what consume() actually does as it relates to a KeyEvent?
    I read about this but I just can't seem to to understand it.
    Thanks in advance.

    Yes I read your reply. Your reply though, simply copied the text from the documentation which I already stated I did not understand. I was looking for a clearer explaination.

  • Please explain what does this code does exactly

    Can any one explain me what does the below code does.
    This is the code written in one of the BADI (ME_PO_PRICING_CUST) .This badi will be triggered when a sales order delivery address is changed and while saving it this will be triggered. Over all what i come to know is they re trigerring a new version in this code. Can anyone explain me what exactly they are doing in this.Thanks...
    METHOD IF_EX_ME_PO_PRICING_CUST~PROCESS_KOMK.
      FIELD-SYMBOLS: <EKKO> TYPE ANY,
                     <PROCSTAT> TYPE MEPROCSTATE,
                     <FRGKE> TYPE FRGKE,
                     <YNAST> TYPE TABLE,
                     <WA_YNAST> TYPE NAST.
      IM_EKKO-PROCSTAT = 02.
    *break-point.
      ASSIGN ('(SAPLMEPO)EKKO') TO <EKKO>.
      ASSIGN ('(SAPLMEPO)YNAST[]') TO <YNAST>.
      IF <EKKO> IS ASSIGNED.
        ASSIGN COMPONENT 'PROCSTAT' OF STRUCTURE <EKKO> TO <PROCSTAT>.
        ASSIGN COMPONENT 'FRGKE' OF STRUCTURE <EKKO> TO <FRGKE>.
        IF <FRGKE> = 'R'.
          <PROCSTAT> = '02'.
        ENDIF.
      ENDIF.
      IF <YNAST> IS ASSIGNED.
        IF <FRGKE> = 'R'.
          LOOP AT <YNAST> ASSIGNING <WA_YNAST>.
            <WA_YNAST>-AKTIV = 'X'.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDMETHOD.

    r_htkl must be a range table. check the declaration part of it.
    p_htkl is a parameter on selection screen i hope.
    so, there are four fields on a range table.(range table are similar to your select options)
    1. SIGN ( I or E  - Inclusive or Exculsive)
    2. OPTION(options like EQ = euqal, BT = Between, CP = contains pattern etc)
    3. LOW (value)
    4. HIGH (value)
    so..
    IF NOT p_htkl IS INITIAL. " checks if some thing is being passed to the parameter
    r_htkl-sign='I'. " give the sign a value I i.e it make inclusive sign
    r_htkl-option='EQ'. " EQ to option means you value will be checked for a equal to condition
    r_htkl-low=p_htkl. " the low field in now assigned the same value of the parameter p_hktl
    APPEND r_htkl. " the range table is appended.
    endif.
    so this range table can be used in select statements as :
    select * from abcd into gt where xyz in r_hktl. ==> this will check for a EQ condition with value in r_hktl-low in database or
    in if statements like : if abc in r_hktl. ==> this will check the EQ condition of abc with the r_hktl-low.
    Had it been
    r_htkl-sign='E'.
    then the condition is same but with a NOT.. that means NOT EQ or NOT BT etc.
    as exclusive of the option.
    etc.
    hope this is clear.
    AND PLEASE CLOSE THE OTHER THREAD (duplicate)

  • Streaming, can someone explain what I am doing wrong?

    I have two ATVs both synced to one computer. I have a large music library on a second computer but can't find how to stream to one of the ATVs.
    I followed the instructions in the booklet, opened iTunes on the relevant computer, chose sources on the ATV, "Connect to New iTunes" and noted the passcode, selected the ATV icon and "Click to set up", entered the passcode and the ATV icon disappeared. "My Library" shows in the sources but the ATV icon only re-appears on the computer if I switch to "Connect to New iTunes". If I then click on the icon the ATV page opens up with details of the ATV and a message saying that the ATV icon will only appear when "My Library" is selected on the ATV, but as soon as I do that the ATV icon disappears. The help file says in System Preferences sharing pane make sure "iTunes Music Sharing" is on! There is no "iTunes Music Sharing"!!
    Please, can someone take this idiot through the process step by step, including how you start streaming once you have successfully made the connection?

    Glad to see everything is starting to work out.
    You might consider two user accounts (that's logins) with a music library in each. It's a little more work to operate, but probably less than having two libraries in one user account and providing both users are logged in and have itunes running you should get both libraries available to you at the same time on the tv (obviously you would need to switch between them on the tv).
    Otherwise I'd consolidate them by opening itunes (with library 1) and then dragging and dropping the music files from the music folder of library 2 onto itunes, I'd start by doing a few tunes to satisfy yourself that all is OK, you can probably do them in large chunks but I'd probably not drag them all at once, if something did go wrong you probably wouldn't lose any files but it might be difficult to figure out what files had been added and which hadn't before the problem occurred.

  • Can someone explain what DriverID=22 does exactly.

    Hi everyone,
    There is a very popular dsn-less connection provided by Jeff Patterson that most people are saying works great....
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    // set this to a MS Access DB you have on your machine
    String filename = "d:/java/mdbTEST.mdb";
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database+= filename.trim() + ";DriverID=22;READONLY=true}"; // add on to the end
    // now we can get the connection from the DriverManager
    Connection con = DriverManager.getConnection( database ,"","");
    However, when I use this code I get a login or password is incorrect error.
    If I remove the DriverID=22 the connection works fine. (btw - I am adding SystemDB= to the connection string because I am using a workgroup security file)
    I am just wondering if anyone knows why DriverID=22 does not work if you are using a workgroup security file.
    Also, does anyone know why he ends READONLY=true with a closing brace when there is no opening brace????
    If it helps i'll post my code, i just need to know how to post it properly on this forum (cut and paste looks crappy - no colours or tabs)
    Thanks a million.

    Here is a pseudo explaination of driverid...
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcjetdesktop_database_drivers_architecture.asp
    Here is another link which defines it for excel...
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcjetexcelsqldriverconnect.asp
    And if you drill on this you get the specific explaination for 22...
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcjetexcelsqlconfigdatasource.asp
    And have you tried any of the other URLs for MS Access which include neither driverid nor readonly?

  • Can someone explain what I am doing wrong? Windows Boot manager error.

    Okay, I've literally searched EVERYWHERE and can not find a reasonable answer to this question.
    Everytime I try to load windows on bootcamp, I get this error:
    Windows failed to start. A recent hardware or software change might be the cause . to fix problem:
    1. insert windows installation disc and restart computer
    2.choose your language settings, and then click "next"
    if you do not have the disc, contact your system admistrator or computer manufacturer for assistence
    status 0xc0000017
    And that's it.
    I have tried everything from usb to countless 8 gig DVD which I wasted from burning the ISO time and time again.
    I am doing everything through the bootcamp installer and I partition up to 80 gigs of space of my hard drive for it.
    This is an official iso image from windows btw.
    I think it's a memory problem, but I am not sure. Here are my specs:
    Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          8 MB
      Memory:          3 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MP51.007F.B01
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
    If you can shoot me some advice on what I may be doing wrong, please do. I really need it urgently.
    Thanks!

    you really are way too low on memory, but that is not the issue.
    all the other hard drives need to be pulled except one.
    bumbing is sort of like there are only so many people likely to read and try to help. give us a couple hours or more.
    you say Windows, I ask "which?"
    And really all the faq and how to and even guide should cover your bases.
    Can only guess that the media you used to burn DVD or source..  see, we are not mind readers, some buy System Builder, or buy as a ISO download and burn to DVD... so start with the FAQs.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    For Windows 7: http://windows.microsoft.com/systemrequirements
    For Windows 8: http://windows.microsoft.com/en-US/windows-8/system-requirements
    Learn more about how Mac computers can run Windows 8 using Boot Camp 5.
    http://support.apple.com/kb/HT5628
    Products Affected
    Boot Camp, Windows 8
    General installation questions
    What is Boot Camp 5?
    Boot Camp 5 is not a release of OS X software. Rather, it is a release of the Windows Support Software (drivers). You will need to use this software on your Mac with Windows 8 or Windows 7. For more information on Boot Camp 5, see thttp://support.apple.com/kb/HT5639
    Which Macs support Windows 8?
    MacBook Air (Mid 2011 or newer)
    MacBook Pro (Mid 2010 or newer)
    Mac Pro (Early 2009 or newer)
    Mac Mini (Mid 2011 or newer)
    iMac (27-inch, Mid 2010 or Mid 2011 or newer)
      For more information, see this article.  What are the System Requirements for Windows 8?
    Please see this article.
    How can I install Windows 8 on an eligible computer?
    Use the Boot Camp Assistant. The assistant will partition your internal hard drives and install Windows 8. For more information on Windows 8 installation, see the Boot Camp Installation & Setup Guide.
    Can I use an upgrade from Windows 7 to Windows 8?
    Yes. Download and install the Boot Camp 5 Support Software before attemping the upgrade by using the Boot Camp Assistant in OS X Mountain Lion v10.8.3. Alternatively, you can manually download the Boot Camp 5 Windows Support Software here.
    When I do an upgrade install from Windows 7 to Windows 8, an "Uninstall USB 3.0 eXtensible Host Controller Driver" message appears. What do I do?
    Do not click on Uninstall. Click the back button and Cancel the upgrade. Download the Boot Camp 5 Support Software by using the Boot Camp Assistant in OS X Mountain Lion v10.8.3, or click here to download them. Then, try the upgrade again. See this article for more information.
    After upgrading from Windows 7 to Windows 8, Thunderbolt devices are (not) being recognized when I connect in. How do I fix this?
    Disable the Windows 8 Fast Boot feature to allow Thunderbolt devices to be recognized. See Boot Camp: Thunderbolt devices not recognized after Windows 8 upgrade for instructions.
    Is there an OS X version requirement to use the Boot Camp Assistant to download Boot Camp 5 Support Software?
    You need OS X Mountain Lion v10.8.3 or later installed to download the Boot Camp 5 Support Software (Windows drivers) using the Boot Camp Assistant. After upgrading, click the Go menu and choose Utilities. Then, open Boot Camp Assistant and follow the onscreen instructions. You can download the Boot Camp Installation & Setup Guide.
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
      Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.  How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support,

  • Please explain what is the functionality of TABLE()

    Hi all,
    My name is Suman. Engg Grad 2006 passed out and now working with Microsoft.
    I am new to PL/SQL. Not aware of the exact usage of TABLE().
    Could any of you kindly explain me ( if possible with an implementation).
    My situation : Recently when i planned to use explain plan for a query, I happened to come across this query
    select * from TABLE(DBMS_XPLN.DISPLAY('PLAN_TABLE','STATEMENT_ID);
    I would be grateful if you could explain me what TABLE() does generally and what it does in the above Query.
    Regards,
    Suman

    Very simplistically, it allows one to call a PL/SQL function (returning a collection), and pivot the contents of that collection into rows.
    An example:
    SQL> create or replace type TMyRow is object
    2 (
    3 object_id number,
    4 object_path varchar2(4000)
    5 );
    6 /
    Type created.
    SQL>
    SQL> create or replace type TMyCollection is table of TMyRow;
    2 /
    Type created.
    SQL>
    SQL>
    SQL> create or replace function MyFunc( cUser varchar2 ) return TMyCollection is
    2 collection TMyCollection;
    3 begin
    4 select
    5 TMyRow( object_id, owner||'\'||object_type||'\'||object_name )
    6 bulk collect into collection
    7 from all_objects
    8 where owner = UPPER(cUser)
    9 order by
    10 object_type,
    11 object_name;
    12
    13 return( collection );
    14 end;
    15 /
    Function created.
    SQL> show errors
    No errors.
    SQL>
    SQL> select MyFunc(USER) from dual; -- output formatted for readability
    MYFUNC(USER)(OBJECT_ID, OBJECT_PATH)
    TMYCOLLECTION(
    TMYROW(68776, 'BILLY\FUNCTION\COUNTTYPE'),
    TMYROW(92945, 'BILLY\FUNCTION\FORCECOLUMNS'),
    ..<snipped>..
    TMYROW(61478, 'BILLY\VIEW\VTEST')
    SQL> -- change the collection into a SQL type table with rows and columns
    SQL> select * from TABLE( MyFunc(USER) ) where rownum < 11;
    OBJECT_ID OBJECT_PATH
    68776 BILLY\FUNCTION\COUNTTYPE
    92945 BILLY\FUNCTION\FORCECOLUMNS
    69689 BILLY\FUNCTION\FUNCTEST
    63225 BILLY\FUNCTION\GETSEQUENCE
    55818 BILLY\FUNCTION\HORSENAME
    68782 BILLY\FUNCTION\LIST
    72644 BILLY\FUNCTION\MAKESET
    93331 BILLY\FUNCTION\MYFUNC
    69200 BILLY\FUNCTION\PL_NVL
    69476 BILLY\FUNCTION\SIEMENSDEVICETABLE
    10 rows selected.
    SQL>

Maybe you are looking for