WLC2106 - need help understanding wired ports

At this point, I am really confused about how the WLC traffic bridges.

When I have my WLC 1 port connected to my wired LAN and the WLC 8 port connected to a 1121, the web interface can see the AP, but endpoint on my local network cannot ping the 1121.  Why is this?  If I connect directly the 1121 to my switch, I can ping without any problem.

In addition, it seems to affect my wireless LANs to a VLAN different, I need to create a virtual interface for each VLAN on the WLC.  This seems to be a waste of IP addresses, because I want only the WLC for bridge traffic to VLANs and do not have any kind of proxy or routing.  Is it possible to assign a WLAN to a VLAN without creating a virtual interface to this VLAN?

Hello Larry,.

answer your questions:

(1) for the directly AP ping does not, this is due to the bug

CSCsj33229    Impossible to ping AP directly connected to a controller 2106

Conditions:

Access points that are directly related to the 2100 series
controller ports may not work correctly in a variety
means:

-systems on the cable network may not be able to ping to the APs

-access points may be unable to obtain a DHCP address from an external
DHCP server

-l'AP may have communication problems in LWAPP or CAPWAP
with the WLC, which could result in resetting tunnel

-If the AP is in RAP mode, it will be unable to bridge LAN
Packages

-telnet or ssh to the AP won't work

Workaround solution:

Plug the WLC to a switch and the switch access points.

Note that this bug is due design as WLC 2106 is not full switched ports

(2) to networks VIRTUAL, that you want to assign you must do one of the following:

(A) use dynamic interfaces with assign an IP address on the WLC.

(B) If you don't want to assing with IP interfaces, you can configure the AP as H-REAP.

and under WLAN-> > advance help REAP H local switching.

then add REAP: mapping VLAN corresponding to each WLAN (this can be done of wireless-> > access point-> > H-ERAP TAB).

Note: in the solution 2 - B, the AP must be connected to the trunk port.

Kind regards

Talal

=======

Please note the answers that you find useful and mark as answer - when is it :-) - so that others can easily find

Tags: Cisco Wireless

Similar Questions

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • Need help understanding syntax

    Hello
    I need help to understand the syntax.
     
    PPRAMImpl am = (PPRAMImpl)pageContext.getApplicationModule(webBean); 
    What is PPARAMImpl?

    I know 'am' is a variable. And with pageContext.getApplicationModule (webBean), we try to get the name of AM for this page, then why do we need to add (PPARAMImpl) (webBean) pageContext.getApplicationModule before?
     
    For example in plsql , apps.testpkg.mainproc(param1,param2) 
    means 
    schema.packagename.procedurename(parameter1,parameter2). 
    
    So can you explain "PPRAMImpl am = (PPRAMImpl)pageContext.getApplicationModule(webBean)" in that manner? 
     
    pageContext.getParameter(EVENT_PARAM)) 
    
    What is this ? 
    What are the possible values for EVENT_PARAM ? 
    And by the way, I need help on setting a default value for any of my search parameters in a search box.
    Correct me if I'm wrong, that's what I thought
    1 EOImpl have setters and getters for this attribute. So call to the setter in controller and set value, if this is right, then I don't know how to right the code, can you give me some example code?
    or
    2. get the name of the view object, then set the value for it. as viewobject.setattribute (' name of att ', att value'), if this is right, then I don't know how the code right, you can give me a code example?

    Thank you
    Sri.

    Hello

    N ° EC are not equal.

    pageContext.getApplicationModule (webBean) return type AM OAApplicationModule.

    It would be nice if your am variable is of type OAApplicationModule:
    OAApplicationModule m = pageContext.getApplicationModule (webBean) / / would be nice.

    But as you use type PPRAMImpl, you need to type-casting that externally by using:
    Am = (PPRAMImpl) pageContext.getApplicationModule (webBean) PPRAMImpl;

    If you are not yet clear, then consult any book of java or google for internal & external type in java cast.

    Sushant-

  • Need help understanding domino effect code of different designer

    I hope someone can help me to decrypt this code. I'm a web designer, but I'm working with HTML, PHP, JavaScript, ActionScript not so much. I have a new customer, and they already had a website designed entirely in Flash. Now, they want only some parts of it and the rest in HTML. The problem is that I don't know much about ActionScript and I'm having a hard time finding ways to do what I want.

    See the Web site uses the ripple effect to make images and text as if you were putting your finger in the water - it follows the mouse. So, I want to take 3 small Flash movies off this huge. But when I do, the ripple effect no longer works. Here is the code of the action:

    import flash.display.BitmapData;

    var map1:BitmapData = new BitmapData (900, 600, true, 0xFF0000);

    this.createEmptyMovieClip ("bmp1", 10);
    bmp1.attachBitmap (map1, 0, "auto", true);

    blur of var = new flash.filters.BlurFilter (8,8,5);

    mapPoint var = new flash.geom.Point (0,0);
    var dmfr = new flash.filters.DisplacementMapFilter(map1,mapPoint,1,1,-30,-30,"clamp",0,1);

    this.createEmptyMovieClip ("cont1", 200);
    Cont1._visible = false;

    bmp1.filters = [blur];

    bmp1._visible = false;

    onMouseMove = function()
    {
    var d = cont1.getNextHighestDepth ();
    MC1 var = cont1.attachMovie ("circle", "c" + d, d);
    MC1._x = this ._xmouse;
    MC1._y = this ._ymouse;
    MC1.cacheAsBitmap = true;
    };

    water_effect.onEnterFrame = function()
    {
    Map1.draw (Cont1);
    Map1.draw (bmp1);
    This.filters = [dmfr];
    };

    I know I need to change L2 - 900 for all that width and 600 to whatever the height, but that's all I understand.

    If anyone can help, let me know as soon as POSSIBLE. I don't want you to do a job, just maybe at least point me in the right direction.

    Here are these separate clips:

    www.kglad.com/Files/water_effect.zip

  • Need help: understanding of the Session Variables

    Greetings-

    Maybe I'm just not understand how function of session variables and
    I hope that someone here can help me to do so.

    I am trying to establish an auto-dialing for a client process report
    so when a person displays an online report, a number of declaration is
    generated and stored in a variable session and when information
    is submitted, download number of report and the additional information provided
    a database. Everything seems to work as expected, except for this.

    I use an application.cfm file to define the session management and to create a
    Report number and set this number to a session variable.

    When the person opens the report form page, there is a teaching section
    for their study, followed by a 'Proceed' button to go to the next section of the
    page.

    When they click on the "Continue" button, is when the number of report which is held in a
    session variable (application.cfm) should insert in a hidden for later form field
    upload, which seems to happen.

    Now for the part that I don't understand. I thought that both a session
    had not expired, the session variable would remain in use and so if
    the report page has been updated (reloaded) of the same session would be variable
    be used.

    What I feel, is that whenever the report page is to be regenerated,
    a new report number is loaded in the session variable. I'm not
    understand how to work the session variables? Am I missing some criticism
    piece of coding or point here?

    I have included below the structure of folders and files used in the process
    for review.

    Thanks in advance for any help to do this work.

    Leonard B

    ===============================================
    ===============================================

    Folder structure
    area/reports
    -area/reports/input /.

    Files
    -domain/reports.cfm <-Entry Point for dealing with the
    --domain/reports/application.cfm
    --domain/reports/input/report_form.cfm

    ====================
    application.cfm

    < name cfapplication sessionmanagement = "yes" ' LanceApp"=
    SessionTimeout = "#CreateTimeSpan (0,0,20,0)" # ""
    applicationtimeout = "#CreateTimeSpan (0,0,2,0) #" >

    < cfset DSN = "datasource" >

    < name cfquery = "getnumber" datasource = "#DSN #" >
    SELECT report_number
    OF report_numbers
    < / cfquery >

    < cfset Session.report_number = #getnumber.report_number # >

    < cfif getnumber.recordcount IS 0 >
    < name cfquery = "insertnumber" datasource = "#DSN #" >
    INSERT INTO report_numbers (report_number) VALUES (1)
    < / cfquery >
    < cfelse >
    < / cfif >

    < name cfquery = "updatenumber" datasource = "#DSN #" >
    UPDATE report_numbers
    SET report_number = report_number + 1
    < / cfquery >

    ====================
    report_form.cfm

    < cfparam name = "Button" default = 'Start' >

    < cfif #Button # is 'Start' >

    < action = "report_numbers.cfm cfform" method = "post" enctype = "multipart/form-data" > "
    < input type = "submit" name = "Button" value = "Proceed" / >
    < / cfform >

    < cfelseif #Button # is "Proceed" >

    < div style = "padding: 5px 5px 15px 50px" >
    #Session.report_number # < cfoutput > < / cfoutput > < / div >

    < / cfif >

    Quote:
    Posted by: Leonard B
    Hi Dan,.
    Thanks for the answer, let me clarify what is the goal. This process of numbering
    is a public service organization. The goal is not to create a primary key.
    but to establish a process of sequential numbering to fill online reports that
    can be reset to zero at the beginning of each year.

    I'm certainly open-minded for doing things in a more easy way and if you have a
    easier, I'm all ears or should I say all eyes. However, with the requirement of
    reset the process back to zero, I couldn't get to any other way of
    treatment of the task at hand.

    Thank you

    Leonard B

    "In this case he would stil be easier to run the following code" number "just before you insert your data. What you have said so far, it's the only time where you really need it.

    But if you want to stick with the application.cfm approach, there is a difference in what you say you do and what your code is showing. You say "I checked to see if the session variable has been set and he has been.", but I don't see any if/else logic in the part of your application.cfm code where you set the variable. Remember, the code runs on each page, including request refreshes.

  • I need help understanding Time Machine.

    I've got 2 MacBooks, 1 desktop computer Mac G5 and an external HD to 3 TB (Seagate). Can I save all 3 HDs to an external HD? And what will happen if I delete entire folders of an original HD? The backup will keep all those the next time I'm back up? And he keeps them forever?

    Tutorials video, references, etc. you must help my understanding is appreciated.

    Thank you

    Steve

    Here are some basics:

    Use Time Machine to back up or restore your Mac - Apple Support

  • Need help understanding this example of Blackberry.

    Link to the official example here.

    I'm trying to understand it. It seems that it creates a screen of the PopupScreen UI class that is built into the RIM. Now where exactly it display this screen?

    Of after what I have read and understood the example doesn't show how to create a popup screen and manage entries, but it does not show how to display it.

    For example, if I have another class that implements the class screen, how I would invoke this PopupScreen?

    Thanks a bunch for the help!

    Only, it shows the implementation of the class of the screen.

    To display this screen, you would 'push' the screen using UiApplicaiton.pushScreen () or UiApplication.pushModalScreen)

  • Need help understanding create new network / different subnets for 2nd VM NIC

    I am newer to Vmware and not quite sure that the best way to accomplish the task.  I have a couple of hosts of ESX 4.0 update 1, each host has several physical network connected to the LAN interface cards and iSCSI, vCenter with about 10 mV and each VM has only a single virtual NETWORK adapter for LAN.

    I need to install a new virtual machine with a special application that must be double virtual NICed.  1 NETWORK card must be on the private LAN (e.g. 192.168.10.x) and NIC2 must have a public IP (e.g. 4.2.2.x).  I was going to give NIC2 a private address and NAT through our Cisco PIX firewall, but I am told that causes problems with the application and it must have a public IP address on NIC2.  I now host a card physical NETWORK connected to public physical switch outside the firewall (so I can give him a pub addess).

    I have a physical NETWORK card I booked for this on the Vmware host.  How can I create virtual switch separate from the local LAN, associated with the physical NIC to the virtual switch, assign a range of IP addresses that are associated to the public IP address works (if that's what I do)?  From there on, I think that we would give the real public IP to vNIC2 during the installation of the OS.

    Thanks for any help you can offer.

    Steve

    Welcome to the forums.

    You can add an additional vSwitch and assign the 2nd physical NIC as the uplink. All the networks is done through the vSphere client configuration tab. In the virtual machine settings just add an extra vNIC and connetct for the new vSwitch.

    You should have a look through the information on http://www.vmware.com/technical-resources/virtual-networking/

  • Need help understanding formatting

    There is a report that is constructed in the following way:
    SELECT tm_minutes
      , productive_hrs
      , logged_hrs
      , productive_hrs-logged_hrs AS variance
      , ROUND(productive_hrs/logged_hrs,2)*100 AS percent_productive
      , CASE WHEN (productive_hrs/logged_hrs) >= 1 THEN 'green' ELSE 'red' END AS class
    FROM 
    (
    SELECT tc_id, SUM(tm_minutes/60) AS tm_minutes 
         , ROUND(SUM(cycle_time/60)+.5,2) AS productive_hrs
    
      FROM tc_load_jobs_tm, tc_load_jobs, load_rates 
     WHERE tc_load_jobs_tm.load_job_id (+) = tc_load_jobs.load_job_id 
       and tc_load_jobs.load_rate_id = load_rates.load_rate_id   
       and  tc_id = :P2_TC_ID
    GROUP BY  tc_id
    ) tc_load_jobs
    , (SELECT tc_id, ROUND(MAX((tc_end_time-tc_start_time)*24),2) AS logged_hrs
      FROM tc
     WHERE tc_id = :P2_TC_ID
     group by tc_id) tc
    where tc_load_jobs.tc_id(+) = tc.tc_id
    It shows that the last column style properly green. I want to apply the same style to the next column to last as well, but I can't understand how he could do it in the first place. I can't see anything in the report model that is special.

    It looks like it could rest on the conditional column formatting method of Tyler . Check the Expression of HTML in the column property.

    If it isn't then you will need to provide more information.

  • I need help understanding this English flossmanual, please...

    In http://en.flossmanuals.net/thunderbird/composing-messages/ , under the "Signature Delimiter', the following text is displayed:

    "Signature separator '.

    "When putting a signature in a text based email, a default value"-"(dash, dash, space) is inserted to separate the text." To turn it off for all the identities of your accounts, you can access your Configuration Console and change mail.identity.default.suppress_signature_separator to 'true '. »

    Then he said:

    "It is important to note that remove the signature makes part of the message that you compose."

    What does that mean? Is he referring to remove the signature separator? Or is it a completely new topic - that is to say, referring to the removal of a signature? And if that means removal of a signature, how belongs to a signature deleted 'message '?

    Then the article states:

    "When replying to messages where the signature is placed below your reply, but above the quote, signatures won't be removed if you choose to change identities."
    

    This seems (to me) to introduce all of a sudden more new questions.

    I appreciate deeply the flossmanual was the result of dedicated work, hard from volunteers smart - it's just sometimes interpret the language used. I know not quite perfectly clear sense for someone who is already part of the team of flossmanual, but - alas - I'm not even a coder, let alone developer...

    Thanks for your help!

    Said Maberly

    Thanks for the very quick response, Zenos - I appreciate it!

    You are welcome.

    The separator has been/is used by certain software as a way of knowing which is not essential to the message, so that it can throw following threads - Yes?

    Yes

    By eliminating the separator, my signature is considered part of the text of the email - Yes? Well, I think that it goes without saying I wouldn't hold my signature to be included in any email in which I send you, no?

    It's certainly what most people actually do these days.

    So the the bottom line, for me, would be: if I want to send a signature (mine will be an image only) and do not want to see those '-' indicators of separator, I should be asking TB to remove the signature separator - Yes?

    Yes.

    To me, it seems polite to have two signatures, at least in the business.

    A big give your coordinates to use in a new message and something more discreet for the continuation of the conversations later. Some organizations (including my own employer) short-sighted dating a big gaudy monstrosity that is intended to be used on each message business.

  • Need help with unblocking Port 80 on Windows Server 2003

    Web browsing is disabled on a computer that is running Windows Server 2003. I think that Port 80 is the block, but there is no installed firewall or the router it blocks. Using the command IPCONFIG I can ping www.yahoo.com, but I can not connect to www.yahoo.com on the web browser. Backup software remote works very well.

    In addition, there is no set of proxy server, everything is automatic "as it should". I have triple checked all the settings with Internet Explorer and Firefox.

    Thank you for visiting the Microsoft Answers site. The question you have posted is related to Windows Server 2003 and would be better suited to the Windows Server TechCenter community. Please visit the link below to find a community that will support what ask you:

    Cody C
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Need help understanding checksur results!

    I downloaded System Update Readiness Tool and looked at my results and he said that he found 8 errors and has listed them under "unavailable repair files." How can I fix it! Here are my results... Help, please! I use a windows vista Home premium sp2 64-bit

    Preparation of control system was updated.
    Binary version 6.0.6002.22574
    Version of the package 15.0
    2012-09-14 22:59

    Checking Windows Service Packages

    Checking of manifests package and catalogs

    Checking package Watchlist

    Watchlist checking

    Checking packages

    Control components store
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465

    Summary:
    Seconds executed: 1406
    Found 8 errors
    County CSI shows all zeros Total: 8

    Unavailable repair files:
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465.manifest

    Customer experience report downloaded successfully.  Thank you for your participation.  For more information, see the Microsoft Customer Experience Improvement Program on the Microsoft web site.

    Hello

    Check out these links:
    How to fix the errors found in the CheckSUR.log:
    http://support.Microsoft.com/kb/2700601
    Note: This is applicable to Windows Vista also.
    Guidelines for diagnosing and servicing of fixing corruption:

    http://TechNet.Microsoft.com/en-us/library/ee619779 (v = ws.10) .aspx
    I hope this helps!
  • Need help understanding the results of security analysis.

    My agency has recently started using tool to fortify scanner of HP, which aims to analyze the code of the CF directly, rather than the rendered page.  The scanner always seems to mark our pages for some error when I use the following code (used to create a PDF file on the fly):

    <cfheader name="Content-Disposition" value="attachment;filename=#pdffile#">
    <cfcontent type="application/octet-stream" file="#expandPath('.')#\#pdffile#" deletefile="Yes">
    

    01. is line 299 in my code.

    I'm basically generates a name of file elsewhere on the page that is based on what a user is requested, then using the code above to create a downloadable PDF of this file.

    The error is:

    Manipulation of the header (validating input and representation, stream)

    The myfile.cfm file includes data not validated in a 299 online HTTP response header.  This allows attacks such as the poisoning of the cache, cross-site scripting, cross-user daub, hijacking the page, cookie or open redirect handling.

    I think it is one of two potential problems.

    1. ExpandPath() is exploitable
    2. The scanner is programmed to any variable passed to a Pavilion cfheader tag.

    Any thoughts?

    You need to scope the variable pdffile.  Without a specific scope, it could be overwritten by URL or form variables entrants.  I would try that and then re-run the analysis.

    HTH,

    -Dave

  • Need help understanding function

    I have not created many features, in fact they were all simple. This one, that I am of course is however I never did a function where the where does not reference the variable in the function.

    I'm trying to get a count of tasks by project number.

    In the protrac_master the pk_proj_master_id of the column must be protrac_detail.fk_proj_master_id.

    Compile however no matter what I try I get either a '1' for all the rows returned or "55" which is the total number of rows returned. It's the function:
    CREATE OR REPLACE function DEVPROTRAC.f_count_tasks(
        p_pk_proj_detail_id in number
        )
        
    return number
    is
        v_retval    number;
        
        begin
        
            select count(distinct p_pk_proj_detail_id)
              into v_retval
              from protrac_master pm, protrac_detail pd
             where pm.pk_proj_master_id = pd.fk_proj_master_id;
            
          return v_retval;
          
        end f_count_tasks; 
    who should be called as follows:
    select f_count_tasks(pk_proj_detail_id) "Number of Tasks"
    from protrac_detail

    You count the same setting of pass (basically a constant) for each row in your query.

    I think what you want, it's the following:

    CREATE OR REPLACE function DEVPROTRAC.f_count_tasks(
        p_detail_id in number
        ) return number
    is
        v_retval    number;
        begin
            select count(distinct pk_proj_detail_id) -- count the detail IDs
              into v_retval
              from protrac_master pm, protrac_detail pd
             where pm.pk_proj_master_id = pd.fk_proj_master_id
               and pm.pk_proj_master_id = p_detail_id;  -- where the detail id matches the pass parameter
    
          return v_retval;
    end f_count_tasks; 
    
  • Need help with the button mute on my helmet XL-3000 of Microsoft Chat, please!

    Hi all!  Hope everyone is having a good TGIF!  If you use my helmet even, I need help understanding the region button mute in the middle of the rope.  The red light is on or off?  I suppose that if I hit the curve button with the microphone on this subject, and the red light, I'm turn off my mike?

    I did some tests with others on the phone calls.  Sometimes, some other hear me, sometimes they do not have.  BUT I NEVER HEAR THEM!  FOR MY WORK, IT IS IMPERATIVE THAT I MAKE CALLS TO OTHERS!  HELP PLZ!  Thank you very much and have a great wkend!

    Hello
     
    Please follow the links below to troubleshoot the computer.
     
    Method 1
     
    Connect one microphone, music player or other audio device to your computer

    Method 2

    Step 1

    Troubleshooting: headsets

    Step 2

    Open the troubleshooting of Audio recording

    Method 3

    How to adjust the microphone volume

    a. click Start, type mmsys.cpl in the search box and press ENTER.
    b.
    in the sound dialog box, click the recording tab.
    c. click Microphone, and then click Properties.
    Note Make sure that the work appears under Microphone. If the job does not appear, click Microphone, and then click on set as default.
    d. the Microphone Properties dialog box, click the custom tab.
    e. select or clear the box amp Microphone.
    f. click the levels tab.
    g. set the volume to the desired level, and then click OK.
    h. click OK to close the sound dialog box.
     
    How to adjust the setting of the voice
     
    a. start the game.
    b. connect to LIVE (the Guide).
    c. click personal settings.
    d. click on voice.
    e. make sure that the recording volume level indicator records at a bar when you talk.
    f. click done.

    If you are still facing problems then, I would say that you contact support for Microsoft hardware for more direct intervention.


    I hope this helps.

     

Maybe you are looking for

  • Finder of freezing and acting weird

    Hi I had a couple issues Finder weird recently any help would be much appreciated! The finder drawing seems to freeze - can I open a folder or a new window of finder and sometimes it will be fine, but then it will be half freeze - the content of the

  • 38.0.1 brought my old computer to its knees

    My desktop computer is really old, but has served me well. Firefox 38.0.1 is unfortunately unusable. Web pages take forever to load and are virtually non-navigable. The processor temperature rises well above what is normal for this computer. Return t

  • replacing the motherboard for hp pavilion

    I have a HP Pavilion model a4316f. The system no longer recognizes any of the readers. This system has a motherboard Violet 6 and from what I read in the forums, this is a common problem. If I replace the motherboard with another motherboard of viole

  • Satellite C660 - 1 DG-drivers of Windows Server 2012

    I started Windows Server 2012 (for development purposes). Now... where can I find the drivers? * display driver *-lets start with the display driver (for the Intel Graphics Media Accelerator HD) when I look for the display driver in the support forum

  • Pavilion P6630: Failure of RAM upgrade

    I have a HP Pavilion P6630 with 2 x 2 GB DDR3 - 667 MhZ sticks inside (factory standard). According to information I found on the motherboard in combination with my Windows 7 Home Premium 64 - Bit, support maximum memory is 16 GB. So, I advanced and