Niagara1 confusion re. 'sysconf(_SC_CPUID_MAX)' results

Greetings, I hope someone may provide some clarification on some confusing results for a Niagara 1 Coolthreads processor:
$ uname -ra
SunOS coolthreads 5.11 snv_61-xb_15 sun4v sparc SUNW,Sun-Fire-T200
According to Niagara 1 documentation there are 32 contexts available (8 cores * 4 threadsPerCore). To confirm the maximum possible processor ID, I wrote a program to execute 'sysconf(_SC_CPUID_MAX)'. However, the value returned is 63.
Yet, when I run 'psrinfo -v', 32 cpu-contexts are referenced:
psrinfo -v
Status of virtual processor 0 as of: 02/26/2008 23:08:19
on-line since 02/21/2008 09:55:34.
The sparcv9 processor operates at 1200 MHz,
and has a sparcv9 floating point processor.
Status of virtual processor 31 as of: 02/26/2008 23:08:19
on-line since 02/21/2008 09:55:35.
The sparcv9 processor operates at 1200 MHz,
and has a sparcv9 floating point processor.
Any ideas what could be causing 'sysconf(_SC_CPUID_MAX)' to return 63 available cpu-contexts? Any help would be greatly appreciated.
A few ideas I had:
* Processor is actually a Niagara2 -- yet, why then would 'psrinfo -v' reference 32 cpu-contexts?
* I'm not interpreting 'sysconf(_SC_CPUID_MAX)' correctly
* Our system is running 2 * Niagara1 chips -- yet again, why would 'psrinfo -v' reference 32 cpu-contexts?
-- James

I did check that SCCPUID_MAX returns higher number. SCNPROCESSORS_ONLN and SCNPROESSORS_CONF does return correct value though but not sure if this is what you want.
Our resident expert has following to say -
Definition of max_cpuid in OpenSolaris is as follows:
* Maximum possible CPU id. This can never be >= NCPU since NCPU is
* used to size arrays that are indexed by CPU id.
processorid_t max_cpuid = NCPU - 1;
sysconf(_SC_CPUID_MAX) returns max_cpuid and it looks like the OS on the niagara system is compiled with the default NCPU == 64 value.
You may want to try OpenSolaris forum to get clarification on this default value.

Similar Messages

  • Confusion over dbverify output result

    Hello everybody,
    While I am checking dbverify utility command against dmp file I get below result
    $ dbv file=xxx.dmp feedback=100
    DBVERIFY - Verification complete
    Total Pages Examined : 845006
    Total Pages Processed (Data) : 0
    Total Pages Failing (Data) : 0
    Total Pages Processed (Index): 0
    Total Pages Failing (Index): 0
    Total Pages Processed (Other): 0
    Total Pages Processed (Seg) : 0
    Total Pages Failing (Seg) : 0
    Total Pages Empty : 0
    Total Pages Marked Corrupt : 845006
    Total Pages Influx : 117
    Highest block SCN : 0 (0.0)
    But in the Alert log file we are not getting any block corruption error messages such as ora-01578 . So what should I do in this situation.Please advice me.
    Thanx
    Achyot

    Achyot wrote:
    Hello everybody,
    While I am checking dbverify utility command against dmp file I get below result
    $ dbv file=xxx.dmp feedback=100What is dmp file? It is some kind of exp dump or what?
    dbverify is only for checking datafiles.

  • Confusion over Native Query Result List

    I have this confusion over the field object of a resultList of a Native query. This is because it has contradicted the idea of the books for me.
    This is a pure example
    @SqlResultSetMapping(name="LoanCapitalization.reportMapping",
    columns={
        @ColumnResult(name="policy_number"),
        @ColumnResult(name="policy_holder"),
        @ColumnResult(name="amount"),
        @ColumnResult(name="outstanding_loan"),
        @ColumnResult(name="interest"),
        @ColumnResult(name="amount_to_date"),
        @ColumnResult(name="effective_date"),
        @ColumnResult(name="sub_system_code")
    @NamedNativeQuery(name="LoanCapitalization.aggregateStatement", query="SELECT   l.policy_number, l.last_name || ' ' || l.first_name as " +
            "policy_holder, l.amount, c.out_principal_bf as outstanding_loan, c.out_interest_bf as interest, " +
            "SUM (r.repayment_amount) as amount_to_date, c.effective_date, l.sub_system_code FROM loan l JOIN v_latest_capitalization c " +
            "ON l.loan_id = c.loan_id JOIN loan_repayment r ON l.loan_id = r.loan_id WHERE " +
            "c.effective_date BETWEEN ?1 AND ?2 GROUP BY l.policy_number, l.last_name, l.first_name, l.amount, " +
            "c.out_principal_bf, c.out_interest_bf, c.effective_date, l.sub_system_code order by l.sub_system_code, l.last_name",
            resultSetMapping="LoanCapitalization.reportMapping")and
    Query query = entityManager.createNamedQuery("LoanCapitalization.aggregateStatement");
            AggregateStatementLoanBalanceReportData data = null;
            List<AggregateStatementLoanBalanceReportData> returnList = new ArrayList<AggregateStatementLoanBalanceReportData>();
            query.setParameter(1, reportCriteria.getFromDate());
            query.setParameter(2, reportCriteria.getToDate());
            List<Object[]> resultList = query.getResultList();
            System.out.println("resultList.size() >>>>>>>>>> " + resultList.size());
            for (Object[] obj : resultList){
                data = new AggregateStatementLoanBalanceReportData();
                System.out.println("(String)obj[1] >>>>>>>>>> " + (String)obj[1]);
                System.out.println("(String)obj[2] >>>>>>>>>> " + (String)obj[2]);
                System.out.println("(String)obj[3] >>>>>>>>>> " + (String)obj[3]);
                System.out.println("(String)obj[4] >>>>>>>>>> " + (String)obj[4]);
                System.out.println("(String)obj[5] >>>>>>>>>> " + (String)obj[5]);
                System.out.println("(String)obj[6] >>>>>>>>>> " + (String)obj[6]);
                data.setPolicyNumber((String)obj[0]);
                data.setName((String)obj[1]);
    .......My first shocking surpise is that all the System.out.println() return nulls but
    System.out.println("resultList.size() >>>>>>>>>> " + resultList.size()); returned 1.
    so can anyone suggest what the problem may be.
    Regards,
    Michael

    I came across your post as I experienced the same problem. As I found no answers I tried different let's say stupid solutions.
    The one that solved my problem was to write the name for the @ColumnResult in capitals as I noticed that Oracle transforms the alias column names into capitals. I guess otherwise the mapping doesn't occur correctly.
    My example:
    @SqlResultSetMappings({
    @SqlResultSetMapping(
    name = "Customers.searchCustomers",
    entities =
    @EntityResult(entityClass = Customers.class)
    columns =
    @ColumnResult(name = "CONTACTDATE"),
    @ColumnResult(name = "CONTRACTDATE")
    String queryString =
    "SELECT c.CUSTOMER_ID, c.LAST_NAME, c.FIRST_NAME, c.OPU, c.CUSTOMER_CORE_ID, " +
    "to_char(con.CONTACT_DATE, 'yyyy-dd-mm') AS CONTACTDATE, to_char(contr.CONTRACT_DATE, 'yyyy-dd-mm') AS CONTRACTDATE " +
    "FROM CUSTOMERS c " +
    "LEFT JOIN CONTACTS con ON con.CUSTOMER_ID = c.CUSTOMER_ID AND con.ACTIVE = '1' " +
    "LEFT JOIN CONTRACTS contr ON contr.CUSTOMER_ID = c.CUSTOMER_ID AND contr.ACTIVE = '1' " +
    "WHERE c.CAMPAIGN_ID = ?1 AND upper(c.LAST_NAME) LIKE ?2 AND upper(c.FIRST_NAME) LIKE ?3";
    query = em.createNativeQuery(queryString,
    "Customers.searchCustomers");

  • Confused by right indent results in tables

    Hi. Please Help. I have set an entire book of tables in indd cs3, but find my results from the tab panel erratic to non-existent.
    For the examples below, text is set to left align:
    1 - When the decimal tab is selected and the ruler is clicked everything aligns to it whether there is a decimal or not. (this is fine).
    2 - When I select the right tab and click on the rule a line can be seen in the table at the correct position but the text does not move to align with it. (I have tried this with text aligned right, eventhough I have read Dave Blatner on the subject.)
    3 - When I select the left tab and click on a rule text generally moves to the correct position but not always.
    I have the following clunky workarounds, but would prefer to know why I am not able to use the left and right tabs consistently.
    A - Workaround 1: set the right text to right align and then use the tab on the right to bring text into the correct position.
    B - Workaround 2: use the left indent tab to set the left aligned text in the column.
    In the workflow I have set up paragraph styles, used these in cell styles, and then used the cell styles in table styles.
    The relevant text is in columns set below merged and centred information in the header.
    I have restarted and cleared out prefs as well as exporting to an inx file but I am still not winning.
    Please help as I think these tables will be repurposed for different uses and it would be pleasant to overcome the issues.
    Tx
    Gordon Eddey

    From your screen shot I see you are using CS3, but that doesn't appear to be the cause, as the behavior is still present up to CS5.
    I'm far from an expert on tables -- I hate and avoid working with them as much as possible -- but it appears to me that the decimal tab is "implied" in the cell if you set one, that is tabbing into any cell in which a decimal-aligned tab is present will move the text to the tab position. This is extremely useful for tables with columns of numbers in cells as it speeds up entry by relieving you from having to insert the tab in each cell with a number. On the other hand, the other sorts of tabs seem to be "explicit" or require you to insert the tab character into the text string in order to take advantage. This makes sense to me, more or less, also, since you are more likely to want generally left, center or right-aligned text in any cell and wouldn't need a tab to set that.
    Is there a reason that setting the paragraph to right aligned and adding either a right indent to the paragraph style or a right inset to the cell style won't work as well as setting a tab stop in the definition? Do you want your right-aligned tab stops in different places in different cells? If this is something that can be controlled by a style definition, that's the way to do it, rather than by manually inserting a tab into the cell.

  • Confused with W3C validation results

    Ok so i've had problems with this page (please see below), adapting it to respond to any size device. I was advised to start off by tidying up the errors on the W3C validator. I have reduced the errors right down but am having big problems with the error shown below.  I have tried removing all the dl elements from each picture/element and leaving just the one containing the whole section but its still not right.
    Can anyone please help me resolve it?
    Line 462, Column 4: Element dl is missing a required child element.
    <dd>  <input name="CAT_Custom_76926" id="CAT_Custom_76926_0" onclick="Recalcula…
    www.milesfunerals.com/estimator.php

    Ok so i've applied my unordered list. (please see below) and i applied the CSS like you suggest. Now how do i get the pictures to sit side by side in rows of two's down the page? Do i need to apply a float left and right to each <li> element or is there an easier way? This is what it currently looks like (www.milesfunerals.com/estimator.php) and this is the layout i need to acheive (www.milesfunerals.com/estimator.html).
      <ul>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_0" onclick="Recalculate()" type="radio" value="-190" />
                    </li>
                    <li> Basic Simple Coffin (- £190)</li>
                    <li><span class="dropdownmenu" id="CAT_Custom_00010" name="CAT_Custom_00010" onchange="Recalculate()"><select name="CAT_Custom_00010" class="dropdownmenu" id="CAT_Custom_00010" onchange="Recalculate()">
                      <option selected="selected" value="0">-- Select additional services --</option>
                      <option value="225" >Limousine (&pound;225)</option>
                      <option value="200">Chapel visiting (&pound;200)</option>
                      <option value="120">Choice of date & time (&pound;120)</option>
                      <option value="425" >Limousine,Chapel visiting (&pound;425)</option>
                      <option value="345" >Limousine,Choice of date & time (&pound;345)</option>
                      <option value="320">Chapel visiting, Choice of date & time (&pound;320)</option>
                      <option value="545" >Limousine,Chapel visiting, Choice of date & time (&pound;545)</option>
                      </select></span>
                      <img src="images/The_Elgar.jpg" alt="Elgar" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Elgar_copy.jpg','','toolbar=yes,width=800,height=400 ')"></li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_4" onclick="Recalculate()" type="radio" value="260" />
                      <span class="estimatorsmalltext">The Elgar (£260)</span></li>
                    <li><img src="images/The_Gladstone.jpg" alt="Gladstone" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Gladstone_copy.jpg','','toolbar=yes,width=800,height =400')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_5" onclick="Recalculate()" type="radio" value="360" />
                      <span class="estimatorsmalltext">The Gladstone (£360)</span></li>
                    <li><img src="images/The_Drake.jpg" alt="Drake" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Drake_copy.jpg','','toolbar=yes,width=800,height=400 ')">  </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_3" onclick="Recalculate()" type="radio" value="435" />
                      <span class="estimatorsmalltext"> The Drake (£435)</span></li>
                    <li><img src="images/The_Byron.jpg" alt="Byron" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Byron_copy.jpg','','toolbar=yes,width=800,height=400 ')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_1" onclick="Recalculate()" type="radio" value="500" />
                      <span class="estimatorsmalltext">The Byron (£500)</span></li>
                    <li><img src="images/The_Churchill.jpg" alt="Churchill" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Churchill_copy.jpg','','toolbar=yes,width=800,height =400')"></li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_2" onclick="Recalculate()" type="radio" value="560" />
                      <span class="estimatorsmalltext">The Churchill (£560)</span></li>
                    <li><img src="images/The_Nelson.jpg" alt="Nelson" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Nelson_copy.jpg','','toolbar=yes,width=800,height=40 0')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_7" onclick="Recalculate()" type="radio" value="630" />
                      <span class="estimatorsmalltext">The Nelson (£630)</span></li>
                    <li><img src="images/The_Dickens.jpg" alt="Dickens" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Dickens_copy.jpg','','toolbar=yes,width=800,height=4 00')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_12" onclick="Recalculate()" type="radio" value="1060" />
                      <span class="estimatorsmalltext">The Dickens (£1060)</span></li>
                    <li><img src="images/The_Wellington.jpg" alt="Wellington" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Wellington_copy.jpg','','toolbar=yes,width=800,heigh t=400')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_11" onclick="Recalculate()" type="radio" value="2160" />
                      <span class="estimatorsmalltext">The Wellington (£2160)</span></li>
                    <li><img src="images/The_Victoria.jpg" alt="Victoria" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Victoria_copy.jpg','','toolbar=yes,width=800,height= 400')">   </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_10" onclick="Recalculate()" type="radio" value="1060" />
                      <span class="estimatorsmalltext">The Victoria (£1060)</span></li>
                    <li><img src="images/colourful.jpg" alt="Colourful" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/colourfulcopy.jpg','','toolbar=yes,width=800,height=400' )">  </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_13" onclick="Recalculate()" type="radio" value="660" />
                      <span class="estimatorsmalltext"> The Colourful (£660)</span></li>
                    <li><img src="images/The_Nightingale.jpg" alt="Nightingale" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Nightingale_copy.jpg','','toolbar=yes,width=800,heig ht=400')"> </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_8" onclick="Recalculate()" type="radio" value="630" />
                      <span class="estimatorsmalltext">The Nightingale (£630)</span></li>
                    <li><img src="images/The_Pankhurst.jpg" alt="Pankhurst" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Pankhurst_copy.jpg','','toolbar=yes,width=800,height =400')">   </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_9" onclick="Recalculate()" type="radio" value="610" />
                      <span class="estimatorsmalltext">The Pankhurst (£610)</span></li>
                    <li><img src="images/The_Montgomery.jpg" alt="Montgomery" class="coffinpic" width="150" height="68" onClick="MM_openBrWindow('images/The_Montgomery_copy.jpg','','toolbar=yes,width=800,heigh t=400')">  </li>
                    <li>
                      <input name="CAT_Custom_76926" id="CAT_Custom_76926_6" onclick="Recalculate()" type="radio" value="2260" />
                      <span class="estimatorsmalltext">The Montgomery (£2260)</span></li>
                  </ul>

  • Highly frustrated with Outlook 2013 Search People box bugs - Multiple Name Results for Same Contact & Inconsistent Results

    The Outlook 2013 "Search People" box does not function properly. It frequently displays incorrect results or a mess of duplicate results. I've reported previous issues about this and consolidating my posts into one (with screenshots this
    time). Hopefully this message will be forwarded to or seen by the Outlook programmers. It really needs to be fixed.
    Outlook 2010 and other prior versions worked perfectly. You search for name, you get ONE result with the info you're looking for. FAST AND EASY. But with Outlook 2013 Microsoft has created a heck of a mess resulting in huge frustration and productivity loss
    with such simple but important tasks.
    I have hundreds of contacts stored in my Outlook address book, and they all have COMPLETE contact info added. 
    One major issue that I'm experiencing in the new Outlook 2013 is that I now get average of 4 or more duplicate name results appearing for the same contact. And each result contains different and incomplete contact info, making it impossible for me to quickly
    find the basic info I'm looking for. The cause of this issue is that Outlook 2013 now provides results from not only your local address book(s), but it also shows results based  on your email history and social media accounts setup.
    And there's no way to turn this off, or at least specify what folders and/or accounts the People Search box should use.
    To make matters worse, the Microsoft developers conveniently forgot to add some form of an indicator (like a small icon besides each name result in the list)  that clearly indicates what result is from what source. So you must manually click on each
    result one at a time and repeat the search until you locate the correct one.
    For one specific example, I have a contact stored in my local address book called
    Infusionsoft. When I type "Infusionsoft" in the People Search box to quickly find a phone number, Outlook  2013 shows me 7 results with the same name. See the screenshot below:
    As you can see in the screenshot above, every result just says "Infusionsoft", so I have to manually click on each name result one at a time and repeat the process until I find the correct one from my address book. This same thing happens with other
    random contacts.
    From what I can tell, Outlook is pulling results based on  based on recent emails I've received from different people with "@infusionsoft.com" in their email address. So the first result shows "[email protected]" (just the email
    address), the second result shows "[email protected]", the third result shows "[email protected]" and so forth. I don't want Outlook to show all of that. I just want what's in my address book!
    And you would think that the last result would be the correct one from my address book, but no. Sometimes its the 5th result, and other times it's the 3rd or 7th result. So there's no freaking order of things here.
    We simply need the ability to turn off searching of email history and other accounts when using the People Search box. Problem fixed.
    (And please don't tell me that I need to "link" every incorrect result to one main contact. You shouldn't expect everyone to have to tediously link any and all results that appear to a record. ESPECIALLY when 5+ results for each contact appear regularly.)
    ISSUE 2: Some names must be typed in a different way for the Search People to locate them
    Another big issue I'm having with the Search People box is that some name searches don’t show the correct result, unless I search for their names in a different way.
    For one specific example, I have a contact stored in my address book named "Dave Johnson". When I type "Dave Johnson" in the Search People box, one result appears, but it's just his email address, only. It's not the result that's stored in my Outlook address
    book with his phone number, addresses, etc. Screen shot below:
    If I type in Dave's name reverse order (Johnson Dave),  no results are found at all.
    Now if I just type in just"Johnson" all by itself, it finds Dave's correct result (the one stored in my Outlook Address Book). Along with everybody else that has "Johnson" in their name (see screenshot below)...
    I double-checked how I have Dave's name programed in my address book, and it's in there as "Dave Johnson" for both the Full Name and File As fields. 
    Also, the name order shouldn't make any difference when using the People Search Box anyway. Sometimes I can find people by Last Name, First Name or First Name, Last Name. Only with random contacts does it get difficult finding  their info and
    I have to do strange things like this to find them from the People Search box.
    ISSUE 3: Some Search People results only yield an email address only.
    For other random contacts, some search results only yield an email address with no other contact details. But I can open the persons contact card from the address book manually, with the same email address shown! Screenshot below...
    In the screenshot above, I have outlined the Search People box results in red, and the Address Book results in green. You can clearly see that "Robert White" is a contact stored in my local address book with full contact details, but the Search People result
    only shows his email address! Again, it's not consitent. It's hit or miss with different people.
    ISSUE 4: Some results just don't appear at all, but they are in the address book
    Another issue I'm experiencing with the People Search Box is that some people simply  cannot be found. But I can see their contact info just fine if I click on the "People" tab down at the bottom of the page and type in their name in the "Search Contacts"
    field. Why can't the People Search box find certain people? I opened up their contact details and cannot find a single thing  that would prevent them from showing up in results.
    These are clearly serious bugs that need to be fixed. And I'm shocked as to how this got missed--or ignored during alpha and beta testing. I see the "idea" behind the developers having the Search People box search everything outside of the
    address book, but in real world application this causes a heck of a lot of problems & confusion, and it needs to be fixed ASAP.
    For technical details, I have Outlook 2013 running on two computers using hosted Exchange 2010. One system is Windows 7 and other is Windows 8. The same problems occur on BOTH computers. As far as my Outlook account setup, I have all contacts stored in the
    main address book (no sub-folders or other folders).
    Can someone help communicate this message to the Outlook developers??? The "Frown" button limits me to 100 characters and one image. There's no way I can communicate this level of detail and steps to duplicate in 100 characters!

    Thanks for your reply.
    1) The instant search boxes in each individual page work just fine. If I am on the People page and type in a name in the "Search Contacts" field, it searches my contacts and displays the results that I want. But I should not have to leave whatever screen
    I'm in to find people now. In Outlook 2010 and earlier versions, I could be on the calendar page and then search for a contact without clicking off the calendar completely. For productivity-sake, it's a huge waste of time and hassle now.
    2) I'm familiar with how contact linking works, and quite frankly it's a huge mess in general. I NEVER create multiple contacts for the same person. I get that Outlook 2013 get confused now when it detects a LinkedIn or Facebook account for the same person
    already in my Outlook address book, but we need to have options that allow us to turn off results from some or all social networks. This is a big part of the problem.
    Think about it this way - The average person has 150+ LinkedIn connections, and more for Facebook. Many people today have accounts for both and they are setup with the same email address. When Outlook 2013 has to scan all the networks IN ADDITION to your
    local address book(s), it's a no brainer that it can get very confused trying to display results.
    Another big part of the problem is that Outlooks new search system also scans your email history. I receive emails from people who use multiple email addresses, or emails from companies with multiple reps or ticket systems that send you a unique
    ticket ID # ending in the same email address domain. Now Outlook displays people search results based on everything under the sun in my email history. This is beyond frustrating (see my "Infusionsoft" screenshot above in the first post).
    Again, I want to stress that for the search examples I referenced, I only have one entry in my Outlook address book for each person. And that's all I want to find when I search for people--what's already in my own address book! 
    In summary:
    We need an OPTION to turn off searching external networks when using the People Search box
    We need an option to tell Outlook to not scan email history for people search results (I think this needs to be disabled entirely actually. It's not helpful at all)
    There should be a fixed priority for displaying people search results, with local address book results FIRST, followed by social network results.
    There should be a clear icon/indicator next to each result that gives you a clue as to where the result is coming from. Your address book? Facebook? LinkedIn? We should not need to click on each result to get a hint as to where it's coming from.
    Work out the bugs in general with the new search system.
    One other thing that I didn't mention is that the Search People box also shows results for people I'm not even "friends" or connected with on the different social networks. But I've noticed that some people use the same email address for those networks that
    I already have programmed for them in my address book, which is why Outlook sometimes shows me these results. Does that make sense?
    I'll try rebuilding the index, but after testing Outlook 2013 on 3 different machines so far and seeing the same results (all slightly different results on each machine and very inconsistent), I doubt this will address the issue.

  • HS - Generic - Transparent Confusion

    I am attempting to connect to a SQL Server machine via Oracle 10gR1 on Windows.
    I think I am getting the differences between heterogeneous services, generic connectivity and transparent gateways confused - and as a result am mixing up my configurations.
    So far I have created a system DSN via the ODBC admin. called "oracletest". This DSN has been tested and is working just fine. Just in case it is important, it is using SQL Server Authentication.
    Then I created the $ORACLE_HOME/hs/admin/iniths_oracletest.ora file with the following entries:
    HS_FDS_CONNECT_INFO = oracletest
    HS_FDS_TRACE_LEVEL = OFF
    I then modified $ORACLE_HOME/network/admin/tnsnames.ora with
    ORACLETEST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ECYDBLCYADD01)(PORT = 1521))
    (CONNECT_DATA = (SID=oracletest)
    (HS = OK)
    and $ORACLE_HOME/network/admin/listener.ora with
    (SID_DESC =
         (PROGRAM = hsodbc)
    (ORACLE_HOME = e:\oracle\product\10.1.0\db_1)
    (SID_NAME = oracletest)
    I then bounced the listener and the database was registered. There was no registration of the oracletest entry. [Edit - the listener file was improperly named, once this was fixed the oracletest entry was registered at startup]
    In sqlplus I created a database link
    SQL> create databsase link oracletest using 'oracletest';
    SQL> select * from combined_cd@oracletest;
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    NCRO: Failed to make RSLV connection
    ORA-02063: preceding 2 lines from ORACLETEST
    I also changed $ORACLE_HOME/network/admin/sqlnet.ora
    to SQLNET.AUTHENTICATION_SERVICES= (NONE)
    from SQLNET.AUTHENTICATION_SERVICES= (NTS)
    I haven't found any errors in the listener.log
    I am guessing I am missing something small or have created some sort of vulcan mind meld of the different options that will never work.
    Message was edited by: T
    T

    T,
    For your information:
    'Hetrogenous Services' is the name of the system that allows an Oracle database to make SQL-like connections to non-Oracle systems. There are two types - 'Generic Connectivity' and 'Transparent Gateway'. 'Generic Connectivity' allows you to connect to ODBC and OleDB sources, and is provided as part of the database license and install. The 'Transparent Gateways' are built for specific systems (such as Sybase), and are licensed seperately. I think 'Generic Connectivity' used to be called 'Transparent Gateway for ODBC'.
    Your problem:
    I think the file in '$ORACLE_HOME/hs/admin/' should be named 'initoracletest.ora', not 'iniths_oracletest.ora'.
    Here is a guide to getting started with Generic Connectivity:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:4406709207206#18830681837358
    Mr T :-)

  • How to comple query to get correct results?

    Hello,
    I am having problems getting the results from a query.  I have 2 tables:
    Marriage table
    People1ID People2ID DateMarried
    1 4 5/5/2014
    5 7 6/5/2014
    2 3 7/5/2014
    People table
    PeopleID First Last
    1 Bob Jones
    2 Mary Smith
    3 Steve Smith
    4 Jane Jones
    5 Robert Apple
    6 Julie Jackson
    7 Diane Apple
    Looking for result like this:
    First1 Last1 First2 Last2 DateMarried
    Bob Jones Jane Jones 5/5/2014
    Robert Apple Diane Apple 6/5/2014
    Mary Smith Steve Smith 6/5/2014
    Paul

    I'm little confuse on your expected result specially on the third row column "Datemarried". Are you sure that its 6/5/2014. I think its 7/5/2014. Anyway you can try this query.
    select b.[First], b.[Last],
    c.[First],c.[Last], 
    a.DateMarried from marriage a
    left outer join People b
    on a.people1id=b.peopleid
    left outer join People c
    on a.people2id=c.peopleid
    this will be the result:
    First Last
    First Last
    DateMarried
    Bob Jones
    Jane Jones
    5/5/2014
    Robert Apple
    Diane Apple
    6/5/2014
    Mary Smith
    Steve Smith
    7/5/2014

  • Need help moving music collection from external hard drive to Macbook Pro

         I just bought a Macbook Pro today after my Windows desktop was bricked a few weeks ago. Luckily, I didn't lose the most important files on my pc, my music, because it was all on my Zune, as well. So, I borrowed an external hard drive, copied all of the music from my zune onto a friend's pc, and then copied it again from their pc to the external. Finally, I just plugged the external into my new mac, copied the folder within it holding my music, and hit "paste item" in the "Automatically Add to iTunes" folder. Initially, everything seemed to work perfectly, however, after transferring a little over 7 of my 54gb of music, an error message appeared saying that the operation was ending because it could not transfer all files.
         I then tried playing a file off of the hard drive, a wma, and received a prompt that the file was incompatible with Quicktime player, the default for no apparent reason. I tried then opening it with iTunes, and nothing happened, as far as I could see. Naturally, my next step was to google how one would transfer wma files to a mac, and, to make matters even more confusing, all of the results seemed to tell me that iTunes should automatically convert wma files to mp3, which does not seem to be happening in my case.
         I'm still not sure why this isn't working, as I'm sure more than 7gb of my music collection is non-wma, so that doesn't even seem to be the sole issue. Any help with importing my collection would be hugely appreciated, as I'm enjoying my mac so far, but will have to return it if I can't get music on here.
         Thanks.

    One problem is that iTunes for Mac can't handle WMA files, iTunes for Windows will convert them, but not iTunes for Mac. When you add unprotected WMA files to your iTunes library (Windows only), iTunes converts them to new files that iTunes can play, based on your import settings. See if you can use your friend's PC to do this.  If the borrowed PC has iTunes, create an alternate iTunes library so you don't mess up your friend's library.  This explains how:  http://support.apple.com/kb/HT1589
    This support document might be helpful:  iTunes: About the Add to Library, Import, and Convert functions, http://support.apple.com/kb/ht1347

  • Eclipse Tomcat and lots of pain

    Hi All,
    while working on JSP i thought it will be nice to have an IDE so i installed eclipse with tomcat already running on system.
    now as a new user i discovered eclipse uses its own server instance rather than using the server which is already running (and there are pros and cons this too)
    however due to some requirements i need to use the server installation for development... i changed the server path from .metadata to localhost..(should it work fine now?)
    no its not... may be i need to set eclipse with some more steps to use my current installation of tomcat... what all they are honestly i don't know... plz help
    as the wiki page is quite confusing when each like results in ''may or may not" statement....:(
    to my horror ...i am able to run jsp pages ???!!!! the tomcat main service in control panel is stopped... eclipse server will not start showing the port already in use error(is there a way to fix it without changing the port?)
    -Please help with : How to setup eclipse to use the orignal server installation?
    Thanks!!

    Rishikesh.Chaki wrote:
    Sometimes when i try to start the server from eclipse it will not start saying port 8080 is already in use (i don&#146;t want to change it for eclipse as localhost is using 8080 only)... The server is not going to lie; if it says this then there really is something still listening on the socket, which means a previous instance of the server might not have stopped properly for example.
    last eve i created a war file and deployed it on my tomcat sever it was working fine. Then again the same issue sometimes the JSP page will crash showing HTTP-500 error (with no changes made).
    Hard to say what might be wrong without the exception stacktrace that should come with the error 500 - check the server logs when it happens.
    While diagnosing the problem i stopped my eclipse server; stopped the control panel tomcat service as well; but i am still able to run the JSP programs and its also showing tomcat home page...Yeah well thats the biggest issue then; tomcat is failing to stop when triggered from Eclipse.
    >
    I used a port listening utility and its showing javaw.exe is using 8080 port (could this be a reason for this strange behaviour?)Of course!
    >
    Should i again to ahead and reinstall eclipse from scratch?
    It might help, but it sounds more like an issue with the Eclipse plugin that controls the server connection. Which version of Eclipse are you using?
    Are you stuck with Eclipse by the way? You could also give Netbeans 6.8 a try; I have had absolutely no problems with it in combination with Tomcat 6, although with Netbeans it is easiest to use the bundled Tomcat that comes with it in stead of configuring an instance yourself.

  • Fed up With BT....................full stop!

    3 months ago after repeatedly phoning CS's regarding slow BB,V04 erros on Vision-intermittant disconnections BT agreed to investigate the problem. 
      #they sent an engineer to my house and he replaced  the faceplate on the main socket and installed a new cable running from the socket to my Hub 2,ran various tests that he wouldn't elaborate on except to say he was seeing FCC errors "off the scale".
      However after he left,whatever he did my BB speed increased from 4 meg to 8.5 meg now 3months on the speed has dropped back to 3-4 meg (depending on time of day,slower during the day)and the V04 errors have resurfaced.
      After complaining again,threatening to terminate my contract etc the CS  Techy  ran through the usual process of elimination and told me to leave my hub on for 48 hours while they ran tests.Again he wouldn't tell me which tests and what kinds of results he was looking for.
      My feeling on this is that he was fobbing me off and it is BT's unofficial policy to gradually decrease customers speeds to the point of there tollerance ie when they phone up an complain at which point they reset their speed ans start again.
       I ask myself why should i pay the same for the 8 meg i was getting 3 months with no errors as i am now for half the speed or worse with at times unwatchable BTVison?
    FYI her are my hub stats:
    Line state
    Connected
    Connection time
    1 days, 04:11:59
    Downstream
    6,802 Kbps
    Upstream
    944 Kbps
    ADSL Settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    G.992.5 Annex A
    Latency type
    Interleaved
    Noise margin (Down/Up)
    2.5 dB / 4.7 dB
    Line attenuation (Down/Up)
    46.6 dB / 24.1 dB
    Output power (Down/Up)
    8.7 dBm / 1.7 dBm
    Loss of Framing (Local/Remote)
    0 / 0
    Loss of Signal (Local/Remote)
    0 / 0
    Loss of Power (Local/Remote)
    0 / 0
    FEC Errors (Down/Up)
    36187 / 30576
    CRC Errors (Down/Up)
    1387 / 51959
    HEC Errors (Down/Up)
    15884 / 0
    Error Seconds (Local/Remote)
    452 / 11858
    Hide Details
    2 things confuse me about these results-firstly the speed is showing 6.8 meg,yet BT speedtester shows 3.4 and as i said my hub has been on for almost 3 dayss now but the Connection time is only just over 1 day.
     Oh and 1 fianl thing,I'm fairly sure it said "Fast" instead of of "interleaved" afew days ago,why would this change ?
    Solved!
    Go to Solution.

    Thank you for your support and here are the Speedtester reults as you requested.....................
    FAQ
    1. Best Effort Test:  -provides background information.
    Download  Speed
    3.82 Mbps
    0 Mbps
    4 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 3.82 Mbps
     For your connection, the acceptable range of speeds is 1.2 Mbps-4 Mbps.
     IP Profile for your line is - 3 Mbps
    2. Upstream Test:  -provides background information.
    Upload Speed
    0.77 Mbps
    0 Mbps
    0.83 Mbps
    Max Achievable Speed
    Upload speed achieved during the test was - 0.77Mbps
     Additional Information:
     Upstream Rate IP profile on your line is - 0.83 Mbps

  • How can I print the test page with the Arabic type from the command line

    Hi,
    I have been trying to make the tool for printing the test page from the command line on the Arabic OS. I used "rundll32 printui dll printuientry" with "/k /n" options. My tool is to print the test page in all OS when pushing the
    button.
    Normally, in the Arabic Windows, the test page is printed with RTL type when printing the test page in the "Devices and Printers". But in my tool, the test page is printed with LTR type. I'm confused because of this result.
    Is it possilbe to print the test page with RTL type when using the "rundll32 printui dll printuientry"? If it is possible, could anyone give me the hint or information for resolving?
    Please check for me.

    Hello,
    Thank you for your post.
    Your issue is out of support range of Test Tools in Visual Studio 2010 and 2012 forum which discusses Visual Studio Test issues.
    I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Swf, swc and the mxmlc, compc ant tasks

    I'm a bit confused on the end result of the mxmlc / compc ant
    tasks, or maybe the difference between swf and swc files. I have a
    library of 60 or so AS3 files used for
    serialization/deserialization of my Java backend (using GDS for
    serialization of data between java serverside and my flex front
    end). I first use the compc ant task on these AS3 files to create a
    swc file. This swc is 453316 bytes. With this flash library, I use
    the mxmlc ant task on my mxml file, which produces a 201,492-byte
    swf file.
    I have a couple questions related to the procedure above.
    Shouldn't the swf file include the swc file, and hence be bigger
    than the swc? I'm just wondering if I deploy the swf file, will it
    have all it needs in the swc file to perform the functions
    correctly?
    My second question relates to setting the
    keep-generated-actionscript="true" in the mxmlc task. When
    doing this, I see all the AS3 code generated. However, it does not
    include 55 of the 60 AS3 classes compiled in the swc. It only
    generated AS3 code for those AS3 classes explicitly declared in the
    mxml code (via import and actual declaration). Am I doing something
    wrong here or is this the way flex does its thing?
    The reason why I'm concerned about this is that I'm getting a
    "ArgumentError: Error #2004: One of the parameters is
    invalid" issue am I'm think its happening in the AS3 code (not
    the Java server side) and I don't know how to debug this.
    Any help would be appreciated. Thanks in advanced!
    -los

    I am also facing with the same problem.....
    Is there any resolution for this problem.?
    Not sure where i am going wrong.
    Any help will be appreciated.
    Thanks in advance.

  • Exporting images from LR3

    A couple of questions here:
    1. How can I export photos in JPEG form so they all have the same dimensions? When I export, then import them into Photoshop to batch process a watermark/logo onto them, the logo is placed in different spots on the image (both in landscape & portrait). I can only assume that I am exporting in different sizes.
    2. What settings should I use to export in the highest possible resolution? ie: in width/height dimensions and pixels per cm etc..?
    Hopefully this makes sense... Many thanks,
    Damian.

    Nobody really answered the primary question:
    1. How can I export photos in JPEG form so they all have the same dimensions? When I export, then import them into Photoshop to batch process a watermark/logo onto them, the logo is placed in different spots on the image (both in landscape & portrait). I can only assume that I am exporting in different sizes.
    2. What settings should I use to export in the highest possible resolution? ie: in width/height dimensions and pixels per cm etc..?
    You say, "I am using a 1600 x 1200 export resolution setting," but all DSLR cameras shoot in 2:3 aspect ratio. So that setting will give you landscape images with 1600 x 1067 pixels and Portrait orientated images with 1200 x 800 pixels. This may be part of the confusion with image size results you are seeing.
    To keep Landscape and Portrait orientated images the same size you need to set vertical and horizontal resolution to the same setting. In this case you would use 1600 Width and 1600 Height. As long as you used a crop setting of 'Same As Original' (2:3), all of your exported images will be 1600 x 1067 pixels. Just be careful how large you make the export resolution.
    If any of the image dimensions are cropped below the export 1600 x 1067 resolution and 'Don't Enlarge' is selected, these images will be smaller! Unchecking 'Don't Enlarge' will maintain your selected 1600 x1067 resolution, but image quality will suffer due to the upsizing interpolation process.

  • Scheduled Install Time or AU Scheduled Install Time

    Hello Everybody:
    Hoping to get some insight from the helpful technet community in regards to getting my SCCM up and working.  I have been labbing this up for close to 2 weeks and still have yet to get my updates pushing to my agents/servers on a scheduled install with
    a reboot.  I have created device collections based on my OUs in AD.  Then created the appropriate ADRs which then these auto created the deployment packages, and software update groups alike.  Under my SUP shows two groups I created both deployed,
    both downloaded and 100% compliant.  Looks great.  However on my schedule install on the ADR is simply never installs updates.  After tons of reading I figured it was a setting with my GPO which I have been toying with as I had a WSUS deployment
    in my lab prior.  Currently the only GPOs applied and confirmed via RSOP are 
    -Configure Automatic Update - Auto download and schedule the install 2am
    -Allow signed updates from an intranet microsoft update service location
    **The specify intranet microsoft update service location is enabled, by local group policy, courtesy of SCCM
    However still not working.  I am seeing this in the windowsupdatelog on the downstream agents.
    * Network state: Connected
    2014-01-15 11:12:11:944
    884 7e4
    Report CWERReporter::Init succeeded
    2014-01-15 11:12:11:944
    884 7e4
    Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2014-01-15 11:12:11:944
    884 7e4
    Agent ***********  Agent: Initializing global settings cache  ***********
    2014-01-15 11:12:11:944
    884 7e4
    Agent  * WSUS server: http://SERVER-SCCM.aaw.local:8530
    2014-01-15 11:12:11:944
    884 7e4
    Agent  * WSUS status server: http://SERVER-SCCM.aaw.local:8530
    2014-01-15 11:12:11:944
    884 7e4
    Agent  * Target group: (Unassigned Computers)
    2014-01-15 11:12:11:944
    884 7e4
    Agent  * Windows Update access disabled: No
    2014-01-15 11:12:11:944
    884 7e4
    DnldMgr Download manager restoring 0 downloads
    2014-01-15 11:12:11:944
    884 7e4
    AU ###########  AU: Initializing Automatic Updates  ###########
    2014-01-15 11:12:11:944
    884 7e4
    AU  # WSUS server: http://SERVER-SCCM.aaw.local:8530
    2014-01-15 11:12:11:944
    884 7e4
    AU  # Detection frequency: 22
    2014-01-15 11:12:11:944
    884 7e4
    AU  # Approval type: Scheduled (Policy)
    2014-01-15 11:12:11:944
    884 7e4
    AU  # Scheduled install day/time: Sunday at 2:00
    2014-01-15 11:12:11:944
    884 7e4
    AU  # Auto-install minor updates: Yes (User preference)
    2014-01-15 11:12:11:944
    884 7e4
    AU  # Will interact with non-admins (Non-admins are elevated (User preference))
    2014-01-15 11:12:11:944
    884 7e4
    AU Setting AU scheduled install time to 2014-01-19 08:00:00
    I am seeing conflicting info in this log, I see the GPO applying a AU scheduled install time for 8am, which I have NO idea where that is coming from.   My evaluation schedule is set to run every Sunday at 1am, with deployment schedule
    ASAP on both settings with user experience deadline behavior check boxes both checked and commit changes at deadline checked.  
    Can anyone let me know what I am missing.  I also created a maintenance windows on the device collections for 11pm - 5am every Sunday so the updates could be applied.  I am just so confused and my google results have just ran thin.
    Any help would be greattttly appreciated.

    I posted the above screenshot in regards to the post from Jorgen ( Have you configured a deadline?
    The bottom line all I am trying to do is get it working, simple as that.  I was told that configuration manager can replace WSUS and I have been working to get it working smoothly for days.  What mechanism then controls the WU Client Agent that you
    are referring to.  Sorry for all the questions, just trying my hardest to get the ADRs to work as they should.

Maybe you are looking for

  • How do I load data from R/3 into /BI0/TCUST_SALES

    Hi, There is a SAP supplied characteristic called 0CUST_SALES which has a text table called /BI0/TCUST_SALES. How do go about populating this table from the R/3 system? My version is BW 3.5 Thanks Ram

  • Blackberry Bold Media Card Backup

    I'm new to the Blackberry (Bold 9650), so I might be missing what I've been looking for.  Most of the time, when I start, and particularly reboot my device, it always comes up with the message saying that the new media card has errors and asks if I w

  • The Big Sync

    Ok, so this question will go somewhat beyond iCal, but this seems like the most appropriate place to start. I am guessing many people find themselves in the same situation as I'm in, with calendar and contact information spread across multiple applic

  • Pictures automatically saved as jpg.rem

    Hello! For some apparent reason, the pictures that I take with my BB are now being saved as jpg.rem photos.  When I attempt to transfer them to my computer, the photos are not visible at all.  Does anyone have the same problem?  If so, what's the sol

  • When viewing email in my webmail inbox there are added spaces between paragraphs, these are not there in Internet Explorer and Chrome

    I use GoDaddy's webmail service, when I open an email that has several paragraphs the spaces between them are double, sometimes triple, spaced; this is apparent in Internet Explorer and Chrome