Some clarifications regarding Aironet settings

Hi,
i need some clarifications regarding configuring Aironet stand-alone AP (in this case AIR-LAP1131AG).
Under Security->SSID Manager:
what is the purpose of Network ID?
Under Guest Mode/Infrastructure SSID Settings - what is the purpose of Set Infrastructure SSID?
and Force Infrastructure Devices to associate only to this SSID?
Cheers,

Assign a Service Set Identifier (SSID) to each VLAN configured on the AP. SSIDs enable endpoints to select the wireless VLAN they will use for sending and receiving traffic. These wireless VLANs and SSIDs map to wired VLANs. For voice endpoints, this mapping ensures priority queuing treatment and access to the voice VLAN on the wired network
For further information click this link,
http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/srnd/4x/42nstrct.html#wp1098806

Similar Messages

  • Just needed some clarification regarding the Viewer Builder and actually publishing your App...

    If someone could let me know if my understanding is correct, that'd be a huge help... So I've designed my publication in InDesign and exported the .zip file from the Folio Producer. I've created all of my certificates/splash screens/icons. Lastly, I just recently went through the steps of the Viewer Builder. I'm now at the stage of this process that requires me to purchase the $395 single edition so that I can enter the serial number in the last stage of the Viewer Builder. Now, to my knowledge, once I get the serial number, Viewer Builder will then give me access to an .ipa file and a .zip file. The .ipa file is for me to test on my iPad, and the .zip would be used to distribute to the App Store. I guess this is where I get confused... Let's say after I test the .ipa on my iPad, I don't like some part of my publication. I know how to update my own documents obviously, and I understand that I would have to export another .zip file from the Folio Producer, in turn requiring me to edit the exported folio link in the Viewer Builder. If I had to do that, would I need to purchase another single edition serial number since the original App was edited? Or would the same serial number apply since I'm editing that same App in the Viewer Builder? My next question is somewhat similar. Let's say all of the information is up to date and I go ahead and publish the App to the App Store. However, maybe a month later or some time in the future, I needed to update a phone number or email address--some little detail like that. Again, I understand that I'd have to update the export link in the Viewer Builder, but would I then need to create a new app since my app was already published? Would I then have to purchase another $395 single edition serial number just so that I can update my information? This seems to be the only thing in this whole process that I could use some clarification on so that I don't run into any surprises in the future. Any help would be great, thanks!

    Hi Joshua,
    When you have purchased the serial, you can rebuild your app with your updated content, as long as you use the same bundleID (applicationID), that is tied to your Apple mobile provisioning profile. The serial number is valid for a one year period.
    After you have submitted your app to Apple and it has been approved, please read: http://forums.adobe.com/message/4172167#4172167
    With kind regards,
    Klaasjan Tukker
    Adobe Systems

  • Some clarifications regarding inmemmory replication

              Hai all!
              Here is my problem. I am trying to replicate session Inmemmory method. I habe
              two managed servers in a cluster and both starts fine. I have following entry
              in weblogic.xml file.
              <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 6.0//EN"
              "http://www.bea.com/servers/wls600/dtd/weblogic-web-jar.dtd">
              <weblogic-web-app>
              <session-descriptor>
              <session-param>
              <param-name>PersistentStoreType</param-name>
              <param-value>replicated</param-value>
              </session-param>
              </session-descriptor>
              </weblogic-web-app>
              I am using httpClusterServlet and it is working fine by dispatching requets in
              round robin fashion to two managed servers.
              Now i suspend one server and whenr request is dispatched to that server following
              exception is thrown.
              weblogic.cluster.replication.NotFoundException: Unable to find -1879714969608920185
              at weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOutboundRequest.java:90)
              at weblogic.cluster.replication.ReplicationManager_WLStub.fetch(ReplicationManager_WLStub.java:114)
              at weblogic.cluster.replication.ReplicationManager.getPrimary(ReplicationManager.java:520)
              at weblogic.cluster.replication.ReplicationManager.lookup(ReplicationManager.java:356)
              at weblogic.servlet.internal.session.ReplicatedSessionContext.getSessionInternal(ReplicatedSessionContext.java:218)
              at weblogic.servlet.internal.ServletRequestImpl.getValidSession(ServletRequestImpl.java:1571)
              at weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.java:1412)
              at weblogic.servlet.internal.ServletRequestImpl.getRemoteUser(ServletRequestImpl.java:805)
              at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:60)
              at weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
              at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
              at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:851)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1636)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Why this is happening? Is it because weblogic is trying to replicate session before
              session itself is created? if so how can we handle(any other alternate) this sort
              of situation?
              Also pls explain me , if this is the case how session replication is helpful?
              Is it useful only after once request is processed by primary server?
              Any help is appreciable.
              TIA
              Rgds
              Manohar
              

              Hai Lynch!
              Thanks for ur response. I am using only one session varible and i am storing it
              in the session. In my application i have only two JSP Pages. In JSP1 i am keeping
              one String to the session using session.setAttribute method. In JSP2 i am trying
              to retrieve that. Here are my JSP pages.
              <%
              session.setAttribute("TEST",new String("Cool"));
              %>
              <HTML>
              <HEAD>
              <TITLE>Login Page</TITLE>
              </HEAD>
              <BODY>
              <form action="JSP2.jsp" >
              <b>Please Enter your Name and Password to enter Cool World </b>
              <br>
              FirstName: <Input type="text" name="FirstName" >
              <br>
              Password :<Input type="text" name="Password" >
              <br>
              <Input type="submit" value="Login">
              </form>
              </BODY>
              </HTML>
              JSP2
              <%
              System.out.println("\nExecuting request for displaying Home page....");
              %>
              <HTML>
              <HEAD>
              <TITLE>Cool....</TITLE>
              </HEAD>
              <BODY>
              <b><Marquee>Welcome to <%=session.getAttribute("TEST")%> World ! Mr. <%=request.getParameter("FirstName")%></Marquee></b>
              </BODY>
              </HTML>
              is there any wrong in the above code?
              also you mentioned about readObject and writeObject methods. What and why and
              where these methods are required?
              TIA
              Rgds
              Manohar
              "Lynch" <[email protected]> wrote:
              >Manu,
              >
              >Are you sure that ALL of your session variables are correctly serialized?
              >Have you implemented readObject() and writeObject for them? Do they
              >implement java.io.Serializable?
              >
              >Regards,
              >Lynch
              >
              >"Manu Kar" <[email protected]> ¼¶¼g©ó¶l¥ó
              >news:[email protected]...
              >>
              >> weblogic.cluster.replication.NotFoundException: Unable to
              >find -1879714969608920185
              >> at
              >weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOutboundRe
              >quest.java:90)
              >> at
              >weblogic.cluster.replication.ReplicationManager_WLStub.fetch(ReplicationMana
              >ger_WLStub.java:114)
              >> at
              >weblogic.cluster.replication.ReplicationManager.getPrimary(ReplicationManage
              >r.java:520)
              >> at
              >weblogic.cluster.replication.ReplicationManager.lookup(ReplicationManager.ja
              >va:356)
              >> at
              >weblogic.servlet.internal.session.ReplicatedSessionContext.getSessionInterna
              >l(ReplicatedSessionContext.java:218)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.getValidSession(ServletRequestI
              >mpl.java:1571)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.j
              >ava:1412)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.getRemoteUser(ServletRequestImp
              >l.java:805)
              >> at weblogic.servlet.logging.CLFLogger.log(CLFLogger.java:60)
              >> at
              >weblogic.servlet.logging.LogManagerHttp.log(LogManagerHttp.java:293)
              >> at weblogic.servlet.internal.HttpServer.log(HttpServer.java:670)
              >> at
              >weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:
              >851)
              >> at
              >weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              >:1636)
              >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              >
              >
              

  • Doubt regarding  ALE SETTINGS in IDOC scenario.

    Hi Friends,
            I have some doubts regarding ALE settings for IDOC scenarios,  can anyone  please clarify my doubts.
    For exmaple take IDOC to FILE scenario
    The knowledge i got from SDN is --
    One need to do at the  R3 side is  --- RFC DESTINATION (SM59)  for the XI system.
                                                       --- TRFC PORT  for sending IDOC  to the  XI system
                                                       --- CREATING LOGICAL SYSTEM
                                                       --- CREATING PARTNER PROFILE 
                   at the XI side is  --- RFC  Destination ( For SAP sender system)
                                           --- CREATING  PORT  for receiving IDOC from the SAP sending system(IDX1).
    1. Do we create two logical systems for both Sender ( R3 system ) and Receiver( XI system ) in R3 system itself or in XI system or in both systems we create these logical systems? Is this a mandatory step in doing ALE configurations?
    In IDOC to IDOC scenario-------
      2.  Do we craete two RFC destinations in XI system? One RFC DESTINATION for the Sender R3 system and another RFC DESTINATION for the Receiver R3 System? and do we create RFC DESTINATION for the XI system in receiver R3 system? If not.....y we don't create like this........Please give me some clarity on this.............
      3.  If we use IDOC adapter ,since IDOC adapter resides on the ABAP STACK ,we don't need sender communication channel ,for the similar reason----
    y we r creating receiver communication channel in the case of FILE to IDOC scenario?
      4. Can any one please provide me the ALE settings for IDOC to FILE scenario,
                                                                                    FILE to IDOC scenario,                                                                               
    IDOC to IDOC scenario individually.
    Thanks in advance.
    Regards,
    Ramana.

    hi,
    1. Yes, we create two logical systems for both Sender ( R3 system ) and Receiver( XI system ) in R3 system itself and
    it is a mandatory step in doing ALE configurations
    2. We create 1 RFC destination each in R3 and XI.
        R3 RFC destination points to Xi and
        XI RFC destination  points to R3
    3 We need to create Communication Channel for Idoc receiver as the receiver channel is always required but sender may not be necessary
    4. ALE settings for all IDOC scenarios are same  as follows....
    Steps for ALE settings:-
    Steps for XI
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the R3 system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto IDX1.
         Create a new port.
         Give the port name.
         Give the client number for the R3 system.
         Select the created Rfc Destination.
    Step 3)
         Goto IDX2
         Create a new Meta data.
         Give the Idoc type.
         Select the created port.
    Steps for R3.
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the XI system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto WE21.
         Create a port under transactional RFC.(R3->XI)
         Designate the RFC destination created in prev step.
    Step 3)
         Goto SALE.
         Basic settings->Logical Systems->Define logical system.
         Create two logical systems(one for XI and the other for R3)
         Basic settings->Logical Systems->Assign logical system.
         Assign the R3 logical system to respective client.
    Step 4)
         Goto WE20.
         Partner type LS.
         Create two partner profile(one for XI the other for R3).
         Give the outbound or inbound message type based on the direction.
    Step 5)
         Goto WE19
         Give the basic type and execute.
         fill in the required fields.
         Goto IDOC->edit control records.
         Give the following values.(Receiver port,partner no.,part type and sender Partner no. and type)
         Click outbound processing.
    Step 6)
         Go to SM58
         if there are any messages then there is some error in execution.
         Goto WE02.
         Check the status of the IDOC.
         Goto WE47.
         TO decode the status code.
    Step 7)
         Not mandatory.
         Goto BD64.
         Click on Create model view.
         Add message type.
    BD87 to check the status of IDOC.
    In case if not authorized then go to the target system and check in SU53, see for the missing object
    and assign it to the user.
    SAP r3
    sm59(status check)(no message)
    WE02(status check)
    WE05(status check)
    BD87(status check)
    Xi
    IDx5(Idoc check)
    SU53(authorization check)
    Reward points if helpful
    Prashant

  • Show ip cef switching statistic output - some clarifications required

    Good morning, everyone!
    I need some clarifications regarding ouput of show ip cef switching statistic on Catalyst 6k and some entries apply to other platforms as well. Consider output:
    #show ip cef switching statistics
           Reason                          Drop       Punt  Punt2Host
    RP LES No route                      179269          0      12866
    RP LES Packet destined for us             0  153061543          2
    RP LES No adjacency                12460594          0          0
    RP LES Incomplete adjacency           10400          0          0
    RP LES Unresolved route                1476          0          0
    RP LES Bad checksum                      17          0          0
    RP LES TTL expired                        0          0   24725338
    RP LES IP options set                     0          0          3
    RP LES Fragmentation failed, DF  1757274333          0     481160
    RP LES Features                         975          0       5278
    RP LES IP redirects                       0          0          7
    RP LES Unknown input if                 192          0          0
    RP LES Neighbor resolution req     32540982       7290          0
    RP LES Total                     1802468238  153068833   25224654
    All    Total                     1802468238  153068833   25224654
    Questions are:
    1) What the difference between rows
    RP LES No adjacency
    RP LES Incomplete adjacency
    RP LES Neighbor resolution req
    2) What the difference between rows
    RP LES No route 
    RP LES Unresolved route   
    3) What does mean collum name - Punt2Host?
    I will higly aprecciate your answers! Thnx in advance.

    So far I partially have found answer on first question.
    RP LES Neighbor resolution req - here counted packets that have no adjacency and they are punted to arp request to send.
    RP LES No adjacency  - after ARP request sent throttling adjacency is installed for this destination for 2 seconds and all subsequent packets get drop.  Those packets are counted here.
    RP LES Incomplete adjacency - here packets counted which matches to incomplete adjacencies. Which are stays in adjacency table marked incomplete - as i understand it can happen after arp entry aged out. But those adjacencies must be deleted as well, but as i can see in my environment some of them stays for a while, i am a bit confused here.

  • Clarification Regarding Adobe PDF Settings

    Hi Folks,
    I have a doubt regarding printer settings. I have developed a application using VC++, My application creates a new printer and it copies the default "Adobe PDF settings" of Adobe printer.
    I want to change the adobe PDF Settings of my applications's printer say Eg: "View Adobe PDF Results".
    Initially "View Adobe PDF Results" is in checked status in "Adobe PDF Printer" when it copies to my application's printer i need "View Adobe PDF Results" to be in unchecked status.
    I have tried with Devmode2 in printer settings to make that particular field as "1" but it not working
    where to change the value exactly?
    How to change the UI with my own values?
    Regards,
    Nethaji.

    I've seen a Microsoft article somewhere which says that
    DevModes2 is for 16-bit app compatibility only
    DevModePerUser seems to do the trick.
    Using fairly low-level analysis, I found the "View PDF Results" was a byte at offset (decimal) 1136 (assuming beginning byte starts at 0).
    So under key HKEY_CURRENT_USER\Printers\DevModePerUser  value Adobe PDF has a REG_BINARY contains a byte at the above offset which has a value of
    00 = View PDF Results is OFF
    01 = View PDF Results is ON
    I guess the same key could be applied in HKEY_USERS\(dot)Default\...... and HKEY_USERS\S-1-5-18 (LocalSystem account) for services which use Adobe PDF.
    Hope this helps.
    Best Regards
    Keith White

  • Need some clarification on Replacement Path with Variable

    Hello Experts,
    Need some clarification on Replacement Path with Variable.
    We have 2 options with replacement path for characteristic variables i.e.
    1) Replace with query
    2) Replace with variable.
    Now, when we use  "Replace with variable" we give the variable name. Then we get a list for "Replace with" as follows:
    1) Key
    2) External Characteristic Value Key
    3)Label
    4)Attribute value.
    I need detailed explanation for the above mentioned 4 options with scenarios.
    Thanks in advance.
    Regards
    Lavanya

    Hi Lavanya,
    Please go through the below link.
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Hope this gives you complete and detailed explaination.
    Regards,
    Reddy

  • Reviewed documentation on Reporting: I will appreciate some clarification

    Hi,
    Reviewed documentation on Reporting: I will appreciate some clarification:
    1. Can you help me understand what "Staging" means as used here:
    A data warehouse system serves primarily to stage information from various data source
    The information is staged in various forms including personalized reports, freely definable queries, and predefined reports.
    2. Is RemoteCube the same as Virtual Cubes? if not, what is the difference?
    3. Can you help me understand what "flexible update" means as used here:
    Characteristic InfoObjects have to be included in the InfoProvider tree in the Data Warehousing Workbench to make them available as data targets for flexible updates and as InfoProviders for reporting.
    4. "DataStore Objects are available for transaction data and for master data."
    When do we decide to store master data in a DSO?
    5. Formula Collision vs. "Exception Aggregation"
    I understand what formula collision is about but is it the same as "Exception Aggregation"?
    If not, do you have a real-life example to help me understand the concept of "Exception Aggregation"?
    The documentation/link is not helping.
    6. i. With the followin limitation on Display attribute, why not always make the attribute Navigational?
    "You can show Display Attributes in a report in the drilldown. However, navigation steps are not possible. (For example, you cannot choose values from a display attribute as a filter.)"
    ii. Any example where Nav Attrib does not make sense but it must be Display attrib?
    Thanks

    Hi Amanda,
    2. Is RemoteCube the same as Virtual Cubes? if not, what is the difference?
         Yes, they are one and the same.
    3.Can you help me understand what "flexible update" means as used here:
    Characteristic InfoObjects have to be included in the InfoProvider tree in the Data Warehousing Workbench to make them available as data targets for flexible updates and as InfoProviders for reporting.
    in 3.x, you have infosources and not transformations. So you have basically two types of infosources, direct update and flexible update.
    Direct update infosources do not have any update rules. These are used for master data loading since the format of data is usually fixed as in fields etc.
    Flexible update datasources have update rules, which means that you can use it for loading pretty much anything. You can load master data by changing the update rules and you can use the same infosource for loading transactional data as well. What the statement means is that the infoobject has been set as an infoprovider. and therefore it can be used as a source in a query. The loading is done via flexible updates.
    More info on direct and flexible updates can be found here :[3.x InfoSource Types|http://help.sap.com/erp2005_ehp_04/helpdata/EN/87/3fdf9587f211d5b2ff0050da4c74dc/frameset.htm]
    5)Formula Collision vs. "Exception Aggregation"
    I understand what formula collision is about but is it the same as "Exception Aggregation"?
    If not, do you have a real-life example to help me understand the concept of "Exception Aggregation"?
    The documentation/link is not helping.
    I'm glad that you understand what formula collision is...since its a difficult concept. Exception aggregation is much simpler.
    For every key figure that is present in BW,  there are two types of aggregations that can be maintained.
    Standard: can be sum etc.
    and exception aggregation like avg etc. When you do this, you need to give a reference characteristic. By default this is time. and usually it is summation. Now when you drilldown in your query based on the ref. characteristic, the exception aggregation is used.
    Eg [http://help.sap.com/saphelp_nw70/helpdata/en/d2/e0173f5ff48443e10000000a114084/frameset.htm]
    6.  With the followin limitation on Display attribute, why not always make the attribute Navigational?
    "You can show Display Attributes in a report in the drilldown. However, navigation steps are not possible. (For example, you cannot choose values from a display attribute as a filter.)"
    ii. Any example where Nav Attrib does not make sense but it must be Display attrib?
    Essentially this is a preference or a personal choice basically. You can have several attributes. but keeping all of them as navigational does not help and degrades system performance as they have to be interlinked. For eg.
    You have an employee ID as your characteristic.
    attributes are as follows
    Date of birth
    division
    salary stack
    *** etc
    now things like division,salary stack and  *** could be used as filters in a query but date of birth would in general not be used as filter and hence would make no sense to use it as a navigational attribute(unless you want to find all employees whose birthday is a certain date ).
    In the end, it just comes down to the requirement. If you are required to put a filter on an attribute of master data, then it needs to be a nav. attribute else a display attribute would suffice.
    Hope this helps.
    Regards.

  • I have some questions regarding setting up a software RAID 0 on a Mac Pro

    I have some questions regarding setting up a software RAID 0 on a Mac pro (early 2009).
    These questions might seem stupid to many of you, but, as my last, in fact my one and only, computer before the Mac Pro was a IICX/4/80 running System 7.5, I am a complete novice regarding this particular matter.
    A few days ago I installed a WD3000HLFS VelociRaptor 300GB in bay 1, and moved the original 640GB HD to bay 2. I now have 2 bootable internal drives, and currently I am using the VR300 as my startup disk. Instead of cloning from the original drive, I have reinstalled the Mac OS, and all my applications & software onto the VR300. Everything is backed up onto a WD SE II 2TB external drive, using Time Machine. The original 640GB has an eDrive partition, which was created some time ago using TechTool Pro 5.
    The system will be used primarily for photo editing, digital imaging, and to produce colour prints up to A2 size. Some of the image files, from scanned imports of film negatives & transparencies, will be 40MB or larger. Next year I hope to buy a high resolution full frame digital SLR, which will also generate large files.
    Currently I am using Apple's bundled iPhoto, Aperture 2, Photoshop Elements 8, Silverfast Ai, ColorMunki Photo, EZcolor and other applications/software. I will also be using Photoshop CS5, when it becomes available, and I will probably change over to Lightroom 3, which is currently in Beta, because I have had problems with Aperture, which, until recent upgrades (HD, RAM & graphics card) to my system, would not even load images for print. All I had was a blank preview page, and a constant, frozen "loading" message - the symbol underneath remained static, instead of revolving!
    It is now possible to print images from within Aperture 2, but I am not happy with the colour fidelity, whereas it is possible to produce excellent, natural colour prints using its "minnow" sibling, iPhoto!
    My intention is to buy another 3 VR300s to form a 4 drive Raid 0 array for optimum performance, and to store the original 640GB drive as an emergency bootable back-up. I would have ordered the additional VR300s already, but for the fact that there appears to have been a run on them, and currently they are out of stock at all, but the more expensive, UK resellers.
    I should be most grateful to receive advice regarding the following questions:
    QUESTION 1:
    I have had a look at the RAID setting up facility in Disk Utility and it states: "To create a RAID set, drag disks or partitions into the list below".
    If I install another 3 VR300s, can I drag all 4 of them into the "list below" box, without any risk of losing everything I have already installed on the existing VR300?
    Or would I have to reinstall the OS, applications and software again?
    I mention this, because one of the applications, Personal accountz, has a label on its CD wallet stating that the Licence Key can only be used once, and I have already used it when I installed it on the existing VR300.
    QUESTION 2:
    I understand that the failure of just one drive will result in all the data in a Raid 0 array being lost.
    Does this mean that I would not be able to boot up from the 4 drive array in that scenario?
    Even so, it would be worth the risk to gain the optimum performance provide by Raid 0 over the other RAID setup options, and, in addition to the SE II, I will probably back up all my image files onto a portable drive as an additional precaution.
    QUESTION 3:
    Is it possible to create an eDrive partition, using TechTool Pro 5, on the VR300 in bay !?
    Or would this not be of any use anyway, in the event of a single drive failure?
    QUESTION 4:
    Would there be a significant increase in performance using a 4 x VR300 drive RAID 0 array, compared to only 2 or 3 drives?
    QUESTION 5:
    If I used a 3 x VR300 RAID 0 array, and installed either a cloned VR300 or the original 640GB HD in bay 4, and I left the Startup Disk in System Preferences unlocked, would the system boot up automatically from the 4th. drive in the event of a single drive failure in the 3 drive RAID 0 array which had been selected for startup?
    Apologies if these seem stupid questions, but I am trying to determine the best option without foregoing optimum performance.

    Well said.
    Steps to set up RAID
    Setting up a RAID array in Mac OS X is part of the installation process. This procedure assumes that you have already installed Mac OS 10.1 and the hard drive subsystem (two hard drives and a PCI controller card, for example) that RAID will be implemented on. Follow these steps:
    1. Open Disk Utility (/Applications/Utilities).
    2. When the disks appear in the pane on the left, select the disks you wish to be in the array and drag them to the disk panel.
    3. Choose Stripe or Mirror from the RAID Scheme pop-up menu.
    4. Name the RAID set.
    5. Choose a volume format. The size of the array will be automatically determined based on what you selected.
    6. Click Create.
    Recovering from a hard drive failure on a mirrored array
    1. Open Disk Utility in (/Applications/Utilities).
    2. Click the RAID tab. If an issue has occurred, a dialog box will appear that describes it.
    3. If an issue with the disk is indicated, click Rebuild.
    4. If Rebuild does not work, shut down the computer and replace the damaged hard disk.
    5. Repeat steps 1 and 2.
    6. Drag the icon of the new disk on top of that of the removed disk.
    7. Click Rebuild.
    http://support.apple.com/kb/HT2559
    Drive A + B = VOLUME ONE
    Drive C + D = VOLUME TWO
    What you put on those volumes is of course up to you and easy to do.
    A system really only needs to be backed up "as needed" like before you add or update or install anything.
    /Users can be backed up hourly, daily, weekly schedule
    Media files as needed.
    Things that hurt performance:
    Page outs
    Spotlight - disable this for boot drive and 'scratch'
    SCRATCH: Temporary space; erased between projects and steps.
    http://en.wikipedia.org/wiki/StandardRAIDlevels
    (normally I'd link to Wikipedia but I can't load right now)
    Disk drives are the slowest component, so tackling that has always made sense. Easy way to make a difference. More RAM only if it will be of value and used. Same with more/faster processors, or graphic card.
    To help understand and configure your 2009 Nehalem Mac Pro:
    http://arstechnica.com/apple/reviews/2009/04/266ghz-8-core-mac-pro-review.ars/1
    http://macperformanceguide.com/
    http://www.macgurus.com/guides/storageaccelguide.php
    http://www.macintouch.com/readerreports/harddrives/index.html
    http://macperformanceguide.com/OptimizingPhotoshop-Configuration.html
    http://kb2.adobe.com/cps/404/kb404440.html

  • Some questions regarding CO-PA

    Hello Experts,
    I have some questions regarding de COPA module:
    1-Where can i find wich G/L accounts are assigned to a especific condition type? Is there any transaction where i can check the g/l accounts for the condition types?
    2-I heard that the condition type VPRS is statistical, can anyone explain me this concept?..wich accounts are assigned to this condition type?
    3-Does anyone has a list of the most relevat transactions for COPA? especially regarding the value flows and the closing.
    Thnak you for your support!
    Leandro.

    Hi,
    a) VKOA transaction
    b) try reading this one: http://help.sap.com/erp2005_ehp_04/helpdata/EN/40/c52df80d1e11d2b5cf0000e82de856/frameset.htm Statistical means that the value in the CO-PA document for VPRS is also updated (truly) in other CO component. For example, revenue could be assigned truly to CO-PA segment and statistically to, let's say, cost centre. With material costs - it's the opposite.
    c) most of the data is flowing to CO-PA from other modules. However, just go to the standard menu: the transactions for CO-PA are not so many.
    Regards,
    Eli

  • I have an Ipad2 and my daughter has Iphone 4s and I would like to have all SMS and IMessages duplicated on the IPAD2 I was told I could do this by typing in the mobile phone number into the IPAD2 some where in the settings.

    I have an Ipad2 and my daughter has Iphone 4s and I would like to have all SMS and IMessages duplicated on the IPAD2 I was told I could do this by typing in the mobile phone number into the IPAD2 some where in the settings.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Have some doubt regarding the  weblog (Lookup's in XI made simpler)

    Hi All,
    I have created the same scenario as mentioned in Siva's weblog (Lookup's in XI made simpler).
    I having some doubts regarding the scenario, it will be great if you help me to resolve the same.
    I am having a file-file scenario where I need to do lookup in database(MS-Access)  through mapping.
    The standard file-file scenario is in place and in addition I have created a receiver jdbc channel . I  have also created the receiver agreement for the same in the cofiguration.
    While creating the receiver agreement you have to specify the interface name which includes the message type…I have specified the normal format which we specify while configuring the jdbc receiver adapter.
    In the message mapping I have created a advance user defined function as mentioned in your weblog which calls my receiver jdbc channel.
    I have also specified the select query to be executed in the mapping program.
    While testing I am getting the following error
    Cannot produce target element /ns0:Role_MT/URole. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd
    <b>Can you please suggest me what all I need to do in addition to the file-file scenario for this lookup scenario to work.</b>
    Thanks and Regards
    Rahul

    Hi,
    Following is my user defined function
    //write your code here
    String Query = "";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    Query = "Select URole from  Lookup where UName = '  " + UName[0] + "  ' and UPassword = '  " + Pwd[0] +" '  ";
    try{
    channel = LookupService.getChannel("DB_service","JDBC_channel_receiver");
    accessor = LookupService.getDataBaseAccessor(channel);
    resultSet  = accessor.execute(Query);
    for(Iterator rows = resultSet.getRows();rows.hasNext();){
    Map rowMap = (Map)rows.next();
    result.addValue((String)rowMap.get("URole"));
    catch(Exception ex){
    result.addValue(ex.getMessage());
    finally{
    try{
    if (accessor!= null) accessor.close();
    catch(Exception ex){
    result.addValue(ex.getMessage());
    Thanks and Regards
    Rahul

  • Clarification regarding Shadow Table

    Hi All,
    Clarification regarding Shadow Table. FKK_GPSHAD is a shadow table that belongs to Business Partner. The doubts that i have is
    What is Shadow Table?
    What is the purpose of Shadow table?
    Is it correct way to update Shadow table Manually(Not using any BAPi etc....)?
    Is any BAPI available to update The above mentioned Shadow table.
    Thanks in Advance..

    Reclustering InfoCubes:
    With reclustering, the InfoCube fact tables are always completely converted. The system createsshadow tables with a new clustering schema and copies all of the data from the original tables into the shadow tables. As soon as the data is copied, the system creates indexes and the original table replaces the shadow table. After the reclustering request has been successfully completed, both fact tables exist in their original state (name of shadow table) as well as in their modified state with the new clustering schema (name of original table).
    You can only use reclustering for InfoCubes. Reclustering deactivates the active aggregates of the InfoCubes; they are reactivated after the conversion.
    Reclustering DataStore Objects
    Reclustering completely converts the active table of the DataStore object. The system creates a shadow table with a new clustering schema and copies all of the data from the original table into the shadow table. As soon as the data is copied, the system creates indexes and the original table replaces the shadow table. After the reclustering request has been successfully completed, both active tables exist in their original state (name of shadow table) as well as in their modified state with the new clustering schema (name of original table).
    You can only use reclustering for standard DataStore objects and DataStore objects for direct update. You cannot use reclustering for write-optimized DataStore objects. User-defined multidimensional clustering is not available for write-optimized DataStore objects.
    Pls chk this thread:
    Shadow Table?
    http://help.sap.com/saphelp_nw2004s/helpdata/en/47/5cf74153b6ca17e10000000a155106/content.htm
    Hope this helps,
    Reward points...

  • Hi Sir! I have some questions regarding word report generation please.1.How can i add border to a word page?.2.How can i add grid lines to a table generated in word report?.3.How can i add border to a table of word report?.Thanks Imran Pakistan

    Hi !
    Sir I have some questions regarding word report generation using(C language in labwindows) Please.
    1.How can i add border to a word page?.
    2.How can i add border and grid lines to a table generated in word report(Not the " cvi table control" inserted from gui,i am asking about the table generated in word report)?
    3.How can i fill a cell of word report table withe the data type other than "character"?.
    And sir one question about use of timer in cvi labwindows please.
    Sir i'm trying to set minimum delay interval of timer control to 1millisecond(0.001s),as i set ,timer don't cares of the interval that is set by me it responds only to the default minimum time interval which is i think 10milliseconds(i'am using windows xp service pack3 version 2002).
    Regards
    Imran
    Pakistan
    Solved!
    Go to Solution.

    Hello sir!
    Sir i'm using daq6251.But Sir before implimenting it to my final application now i'm just trying to achieve 1millisecond time interval for timer in a vary simple programe i mean at this time no hardware (daq device) is  involved i,m just trying to achieve minimum time interval of 1millisecond.
    Sir i read form "help" of labwindows how this time interval can be set,i'm trying for,as described in help notes but i could'nt.I'm attaching a screen shot sir for you it may helpful for you to explain me.
    And sir also waiting for your kind reply regarding word report generation.
    Thanks.
    Imran.
    Attachments:
    screen_shot_rigistry.docx ‏65 KB

  • Need some clarifications on Quality-of-services

    Hi Everybody.
                       I need some clarification on Quality-of-services.the question is which one is better in Quality-of-services (Exactly-Once or Exactly-Once-In-order)?why?wht is the differenc between them?

    Hi Narayana
    refer the below Urls
    make the QOS of file as EO or EOIO and then use this blog,
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit
    It depends upon the Adapter,Can you please spicific
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/content.htm
    Check these blogs written on QoS:
    XI Asynchronous Message Processing: Understanding XI Queues
    How to deal with stuck EOIO messages in the XI 3.0 Adapter Framework
    EO = Exactly Once ( Used in Asynchronous Communication)
    EOIO = Exactly Once In Order ( Used in Asynchronous Communication)
    BE = Best Effort ( Used in Synchronous Communication)
    Best Effort --> Used for Synchronous Calls.
    EO and EOIO --> Asynchronous Calls.
    EOIO --> Asynchronous with Sequential Processing Guranteed.
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/frameset.htm
    For the QOS, u can refer the following library links .
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/d03341771b4c0de10000000a1550b0/frameset.htm
    For receiver channels QoS BE (Best Effort) will result in a
    synchronous call (sRFC) , QoS EO (Exactly Once) will create a
    transactional call (tRFC) to the BC. For sender channels a synchronous
    call (sRFC) will result in a message with QoS BE, a transactional call
    (tRFC) will result in a message with QoS EO.
    QoS EOIO is not supported by the BC-Adapter.
    SAP XI term Quality of service describing how the transmission and process-ing of messages is to be handled. Possible values are:
    BE = BestEffort (synchronous call, no transactional guarantees for transmission and processing)
    EO = ExactlyOnce (asynchronous call, guarantee for local transactional handling, exactly-once transmission and exactly-once processing)
    EOIO = ExactlyOnceInOrder (as for EO but with serialization guarantee on a given queue name).
    <b>Pls reward if useful</b>

Maybe you are looking for

  • Measuremen​t, visualizat​ion and saving data in parallel: Performanc​e question

    Hello, I have written an application with 3 loops running in parallel. The first loop does only measure and analyze measurement values from a DAQmx device (3 analog input signals from 3 sensors with 1000 Hz). The second loop does only do the visualiz

  • Problem generating stubs for Java EJB web service deployed in OAS

    I created an EJB web service and I've successfully deployed it in my Oracle App Server. Some of the methods work fine but others produce the ff error: org.apache.soap.SOAPException - java.lang.IllegalArgumentException: No Serializer found to serializ

  • New Portal User options are disabled when trying to create a new User

    Hi All, I am trying to create a new portal user profile using the administrator login. While doing that, I am getting all the options ( used to create the new user ) as disabled. Can anybody let me know the reason & solution of such a problem. or Any

  • How to get bar plot stacked in one graph?

    Hi there, I am having a problem trying to get a stacked bar plot in one graph. I attached two images to show you what it looks like now and how I would like it to look. At the moment I am making two x,y clusters, bundle these into an array and give t

  • Where do I get JRE?

    Hello, I downloaded the 815shipstd.* files and unpacked them successfully. However, the installer uses a version of JRE that seems to be different from the only one out there for Linux (RedHat 6.0) that I could find. Where can I download the version