PS Count - not displaying whole number in results.

Hi,
I'm having trouble with the results display format from the following command:
Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort count -desc
Where my results are:
Count Name                     
...60 .tif
...43 .JPG
 4022 .doc
 2831 .pdf
  969 .wbk
  938 .db
  870 .eml
  587 .bmp
  518 .msg
How do I get the full number of .tif and .JPG, instead of ...60.tif & ...43.JPG?
Any help would be very much appreciated.
Regards
Tim

Hi Tim,
You can try this below modified cmdlet:
Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort count -desc | ft * -Autosize
Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort-object -Property Count -desc | Format-Table -Property Name,Count -AutoSize
Have you tried
Measure-Object.
get-process | measure-object -property workingset -minimum -maximum -average -count
What exactly are you trying to do here, what is your input \ source.
References:
Using the Measure-Object Cmdlet:
https://technet.microsoft.com/en-us/library/ee176900.aspx
Regards,
Satyajit
Please“Vote As Helpful”
if you find my contribution useful or “MarkAs Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

Similar Messages

  • Invoice not displaying assignment Number

    Hi Experts,
    GL account line item display (T.Code FBL3N) for Proforma invoice not displaying assignment Number. in assignment field in production Server, but it is displaying in Quality server, can any one help me about this issue.
    Regards,
    Prakash. P

    Dear,
    Go to the transaction code "FS00" in quality and put the GL account and find the sort key in control data tab, the same sort key you assign in the current client and do one posting to check whether it is getting stamped with assignment.
    In sort key you have to pick the assignment.

  • Filr 1.1 LDAP Preview Not Returning Correct Number of Result

    I'm finishing set up of Filr 1.1 in our environment but noticed today that the LDAP preview does not return the correct number of results. The query:
    (&(objectClass=Person)(|(employeeType=E)(employeeT ype=Y)(employeeType=Z)))
    has been tried against multiple AD domain controllers and has so far returned 3 different user counts - 2895, 2800, and 2700. Mostly it always returns 2800. The correct count using powershell with the exact same ldap filter is over 5000.
    I would prefer not to try a sync until I have some confidence that it will complete successfully. Any suggestions?

    On Wed, 22 Apr 2015 17:26:03 GMT, jameswatson3
    <[email protected]> wrote:
    >
    > I'm finishing set up of Filr 1.1 in our environment but noticed today
    > that the LDAP preview does not return the correct number of results. The
    > query:
    >
    > (&(objectClass=Person)(|(employeeType=E)(employeeT ype=Y)(employeeType=Z)))
    >
    > has been tried against multiple AD domain controllers and has so far
    > returned 3 different user counts - 2895, 2800, and 2700. Mostly it
    > always returns 2800. The correct count using powershell with the exact
    > same ldap filter is over 5000.
    >
    > I would prefer not to try a sync until I have some confidence that it
    > will complete successfully. Any suggestions?
    Could you try it with filr 1.2?
    https://download.novell.com/Download...d=q-mgVFDsOKQ~

  • Cross References Will Not Display Page Number

    Got some documents created in InDesign CS3 (MAC). When bringing them into CS4 (Windows) and trying to create a paragraph cross-reference the page numbers will not display. All the other text in the cross reference ("paragraph", the word "page", etc.) displays correctly. Even the cross reference under the "hyperlinks" toolbar shows nothing (instead of the usual # indicating a page number).
    However If I copy some of the same pages into a new document and create a cross reference in it the page number displays correctly. But since it's over 300 pages I really would hate to have to do that!
    Any ideas?

    Is it maybe because CS3 does not include the cross references function (not a feature until CS4)?
    That's a real problem if we use an outside source to create a lot of our documents and they're working in a previous version.

  • Not displaying my number

    I had this problem before, it's a pain in the ass, when I call someone from my skype number it's supposed to display my number, but 40% of the time it shows some bogus number and I always have to go and manually set it again, now I can't even do that is so frustrating

    I have found a solution to the problem of my number not being dispalyed properly. I now can see my number in itunes and at the top of the contacts and in the phone settings. It has something to do with the number being on the sim card, i went to my old (02) motorola KRZR mobile and went to my numbers with the o2 iphone sim installed, i saw that under my telephone numbers had no numbers listed, so i went to edit and added my iphone number. I now can see my telephone nmber listed where it should! I do think though that you cant just put the numbers on the sim (i tried that with a sim reader/writer) which didnt work, it has to be on the part of the sim which stores YOUR mobile number. I rang both apple support and o2 and neither of them were any help at all (see previous post)
    Well this solution worked for me anyway.
    dave

  • How to count and display the number of records in a database table

    My webpage has a list of items and their details, every item has a button
    Read / Make comments that loads the item in its own page displaying
    a comments form and previous comments.
    This is all working fine.
    I would like to add to each item information stating how many comments have
    been made about that item.
    Allowing the user to see before hand if it is worth while clicking on the
    Read / Make comments button.
    Ideally each item will have a different number of comments.
    The problem I have is outputing the number of comments associated with each item.
    My comments table is called guest my items table is called titles.
    I'm sure mysql statement is correct -
    The table guest currently has 7 comments,
    Item 1 has 3 comments
    Item 2 has 2 comments
    Item 3 has 1 comment
    Item 4 has 1 comment
    When I test the query in dreamweaver
    $Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY guest.software_id";
    the outoput is a list showing 2, 3, 1, 1
    My problem is, getting the totals into my repeat region.
    I tried the following line
    <td align="left" valign="top" bgcolor="#e5f8cb">Current comments:<?php echo $row_Recordset1['COUNT']; ?></td>
    resulting in all comments so far displaying 0
    I have highlighted in bold the parts that I am having difficulty with.
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsTitles = "-1";
    if (isset($_GET['id'])) {
      $colname_rsTitles = $_GET['id'];
    mysql_select_db($database_abe, $abe);
    $query_rsTitles = sprintf("SELECT title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE id = %s ORDER BY id ASC", GetSQLValueString($colname_rsTitles, "int"));
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = "-1";
    if (isset($_GET['id'])) {
      $totalRows_rsTitles = $_GET['id'];
    $colname_rsTitles = "-1";
    mysql_select_db($database_abe, $abe);
    $query_rsTitles = sprintf("SELECT title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE id = %s ORDER BY id ASC", GetSQLValueString($colname_rsTitles, "int"));
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = mysql_num_rows($rsTitles);
    mysql_select_db($database_abe, $abe);
    $query_rs_comments = "SELECT * FROM guest";
    $rs_comments = mysql_query($query_rs_comments, $abe) or die(mysql_error());
    $row_rs_comments = mysql_fetch_assoc($rs_comments);
    $totalRows_rs_comments = mysql_num_rows($rs_comments);
    mysql_select_db($database_abe, $abe);
    $query_rs_users = "SELECT * FROM users";
    $rs_users = mysql_query($query_rs_users, $abe) or die(mysql_error());
    $row_rs_users = mysql_fetch_assoc($rs_users);
    $totalRows_rs_users = mysql_num_rows($rs_users);
    mysql_select_db($database_abe, $abe);
    $query_Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY guest.software_id";
    $Recordset1 = mysql_query($query_Recordset1, $abe) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    mysql_select_db($database_abe, $abe);
    if(!isset($_POST['softwareLevel'])){
    if (!isset($_GET['class_id'])) {
    //show all software titles
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles ORDER BY id ASC";
    }else{
    //show software titles filtered by Literacy of Numeracy (using URL GET variable)
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE titles.class_id = ". GetSQLValueString($_GET['class_id'], "int") ." ORDER BY id ASC";
    }else{
    //show software titles filtered by Level (using Form POST variable)
    $query_rsTitles = "SELECT id, title, company, `description`, resources, location, url, image, keyword, copies FROM titles WHERE titles.level_id = ". GetSQLValueString($_POST['softwareLevel'], "int") ." ORDER BY id ASC";
    $rsTitles = mysql_query($query_rsTitles, $abe) or die(mysql_error());
    $row_rsTitles = mysql_fetch_assoc($rsTitles);
    $totalRows_rsTitles = mysql_num_rows($rsTitles);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <?php $pagetitle="ABE Software Locator"?>
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title><?php echo $pagetitle ?></title>
    <link rel="stylesheet" href="../../includes/styles.css" type="text/css" media="screen" />
    <style type="text/css">
    body {
    background-color: #FFF;
    </style>
    </head>
    <body>
    <?php include("../../includes/header.php"); ?>
        <div><table width="70%" border="0" align="center" cellpadding="3" cellspacing="0">
      <tr>
        <td width="29%" height="50" align="center"><a href="software_detail.php">Back to Locator</a></td>
        <td width="50%" align="center"><a href="../../index.php">Welcome Page</a></td>
        <td width="21%" align="center"><a href="../../logout.php">Log Out</a></td>
      </tr>
      <tr>
        <td colspan="3" align="center"><strong> There Are <span class="totalrecordsnumber"><?php echo $totalRows_rsTitles ?></span>  Software Titles Listed</strong></td>
      </tr>
      <tr>
        <td> </td>
        <td> </td>
        <td> </td>
      </tr>
    </table>
        <?php do { ?>
          <table width="820" border="0" align="center" cellpadding="3" cellspacing="2">
            <tr>
              <td width="206" height="200" rowspan="3" align="center" bgcolor="#FFFFFF"><img src="images/<?php echo $row_rsTitles['image']; ?>" alt="<?php echo $row_rsTitles['title']; ?>" /></td>
              <td colspan="3" align="center" bgcolor="#086b50"><h2><?php echo $row_rsTitles['title']; ?></h2></td>
            </tr>
            <tr>
              <td colspan="3" align="center" bgcolor="#f6b824"><strong>Made by:</strong> <?php echo $row_rsTitles['company']; ?></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><p class="ptaglineheight"><strong>Description: </strong><?php echo $row_rsTitles['description']; ?></p></td>
            </tr>
            <tr>
              <td colspan="2" align="left" valign="top" bgcolor="#e5f8cb"><span class="tabletext"><strong>Keywords</strong></span><strong>: </strong><?php echo $row_rsTitles['keyword']; ?></td>
              <td colspan="2" align="left" valign="top" bgcolor="#e5f8cb"><strong>Resources:</strong> <?php echo $row_rsTitles['resources']; ?></td>
            </tr>
            <tr>
              <td colspan="4" align="left" valign="top" bgcolor="#e5f8cb"><strong>Web Address:</strong> <a href="<?php echo $row_rsTitles['url']; ?>" target="_blank"><?php echo $row_rsTitles['url']; ?></a></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><strong>Is installed on:</strong> <?php echo $row_rsTitles['location']; ?></td>
              <td width="195" align="left" valign="top" bgcolor="#e5f8cb"><strong>Copies available:</strong><?php echo $row_rsTitles['copies']; ?></td>
            </tr>
            <tr>
              <td colspan="3" align="left" valign="top" bgcolor="#e5f8cb"><a href="fulltitle.php?software_id=<?php echo $row_rsTitles['id']; ?>&amp;id=<?php echo $row_rsTitles['id']; ?>">Read / Make Comments About This Software</a></td>
              <td align="left" valign="top" bgcolor="#e5f8cb">Current comments:<?php echo $row_Recordset1['COUNT']; ?></td>
            </tr>
          </table> 
          <br />
          <?php } while ($row_rsTitles = mysql_fetch_assoc($rsTitles)); ?>
        </div>
        <?php include("../../includes/footer.php"); ?>
    </body>
    </html>
    <?php
    mysql_free_result($rsTitles);
    mysql_free_result($rs_comments);
    mysql_free_result($rs_users);
    mysql_free_result($Recordset1);

    I changed the mysql as you suggested GROUP BY titles.id
    and added a while loop to iterate over the data
    mysql_select_db($database_abe, $abe);
    $query_Recordset1 = "SELECT COUNT(guest.software_id) as COUNT, titles.id FROM titles LEFT JOIN guest ON titles.id = guest.software_id GROUP BY titles.id";
    $Recordset1 = mysql_query($query_Recordset1, $abe) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    $row_Recordset1 = mysql_query($query_Recordset1) or die(mysql_error());
    <td>Current comments:<?php
    if($row_Recordset1)
    while($row = mysql_fetch_array($row_Recordset1))
    echo $row['COUNT'];
    } ?></td>
    The first item now displays the following,
    comments:2311000000000000000000000000000
    all others
    comments:
    the number matched the database table exactly, 30 records 4 of which have 2, 3, 1, 1 comments.
    It looks as if the problem is trying to get the repeat region to pick up on it!

  • "No limit" not displaying for number of days to sync email

    I recently purchased 16GB iPad w/ retina display (MD513LL) running IOS 6.0.1
    I successfully set up MS Exchange email account, but it does not give me the option of "no limit" under number of days to sync.
    I read in a few prior posts that deleting the email accounting and setting it up again works, but I tried that at least 6 times (it worked for my new iPhone 5, but not the iPad).

    I might be wrong but I don't think so because I set up the same account on my iPhone 5 which allowed for the "no limit" option.

  • Formula Variable in WAD (Counts) Not Displaying

    Hi Gurus,
    I am using BI7.0.  I have a query that analyzes a charactersitic, such as Priority, uses 2 date (charactersitic[Create Date and Close Date) fields.  I created a new forumla variable, using a Replacement path, to calculate the difference between the dates to derive the difference between the dates and a formula variable to derive the average number of days between the dates.  That is working well.
    However, when using the Bar Graph or the Pie graph I can not see the value of the formula variable that contains the average number of days. 
    I am assuming that because the key figure is a formula variable and not a 'key figure' then I would need to remodel my date fields as Key Figures in order for the Web Items, such as Pie/Bar Charts to view them.
    Has anyone seen this before.....is there anything I can do at the query level in order for my formula variable to show up in the WAD?
    Thank you

    Pallavi
    You are correct.  I had to select the "show summary/total" on the Web Item properities and the results defaulted.
    Thank you

  • LDAP not returning correct number of results through Java?

    Hello all,
    I've written a little testing application for my new shiny LDAP server and have the following method in it, which performs a search based on department number:
    public Vector searchLDAP(String depNumber) throws NamingException          
              String uid;
              String mobile;
              String givenName;
              String sn;
              String telephoneNumber;
              String departmentNumber;
              String employeeType;
              String employeeNumber;
              String reportsTo;
              Vector people = new Vector();
              Attributes matchAttributes = new BasicAttributes(false);
              matchAttributes.put(new BasicAttribute("departmentnumber", depNumber));
              NamingEnumeration results = ctx.search(base, matchAttributes);
              SearchResult tempSR;
              Attributes tempAtt;
              LDAPPerson tmp;
              while(results.hasMore())
                   uid = "";
                   mobile = "";
                   givenName = "";
                   sn = "";
                   telephoneNumber = "";
                   departmentNumber = "";
                   employeeType = "";
                   employeeNumber = "";
                   reportsTo = "";
                   tempSR = (SearchResult) results.next();
                   tempAtt = tempSR.getAttributes();
                   if(atts.get("uid")!=null)
                         uid = (String)atts.get("uid").get();
                   if(atts.get("mobile")!=null)
                          mobile = (String)atts.get("mobile").get();
                   if(atts.get("givenname")!=null)
                          givenName = (String)atts.get("givenname").get();
                   if(atts.get("sn")!=null)
                          sn = (String)atts.get("sn").get();
                   System.out.println("Working with " + sn);
                   if(atts.get("telephonenumber")!=null)
                          telephoneNumber = (String)atts.get("telephonenumber").get();
                   if(atts.get("departmentNumber")!=null)
                          departmentNumber = (String)atts.get("departmentNumber").get();
                   if(atts.get("employeeType")!=null)
                          employeeType = (String)atts.get("employeeType").get();
                   if(atts.get("employeenumber")!=null)
                          employeeNumber = (String)atts.get("employeeNumber").get();
                   if(atts.get("reportsTo")!=null)
                          reportsTo = (String)atts.get("reportsTo").get();
                   tmp = new LDAPPerson(uid, mobile, givenName, sn, telephoneNumber, departmentNumber, employeeType, employeeNumber, reportsTo);     
                   people.add(tmp);
              return people;
         }But for some reason (perhaps too much coding and not enough coffee?) I get the same person's details twice, instead of the two users I'm a) expecting and b) have retrieved using ldapsearch on the command line.
    Have I done something really stupid or is there something I'm not aware of?
    Thanks!
    Gemma

    Hello Gemma!
    I think you have used a global class attribute atts and not tempAttr. So you get anything else but not what you wish.
    So i think you should change the code in the following way,
    i thing it should work ...
    (Sorry for the bad code formatting ...)
    Greetings
    public Vector searchLDAP(DirContext ctx, String base, String depNumber) throws NamingException     
    String uid;
    String mobile;
    String givenName;
    String sn;
    String telephoneNumber;
    String departmentNumber;
    String employeeType;
    String employeeNumber;
    String reportsTo;
    Vector people = new Vector();
    Attributes matchAttributes = new BasicAttributes(false);
    matchAttributes.put(new BasicAttribute("departmentnumber", depNumber));
    NamingEnumeration results = ctx.search(base, matchAttributes);
    while(results.hasMore())
    uid = "";
    mobile = "";
    givenName = "";
    sn = "";
    telephoneNumber = "";
    departmentNumber = "";
    employeeType = "";
    employeeNumber = "";
    reportsTo = "";
    SearchResult tempSR = (SearchResult) results.next();
    Attributes atts = tempSR.getAttributes();
         if(atts.get("uid")!=null)
         uid = (String)atts.get("uid").get();
         if(atts.get("mobile")!=null)
              mobile = (String)atts.get("mobile").get();
         if(atts.get("givenname")!=null)
    givenName = (String)atts.get("givenname").get();
         if(atts.get("sn")!=null)
         sn = (String)atts.get("sn").get();
         System.out.println("Working with " + sn);
         if(atts.get("telephonenumber")!=null)
    telephoneNumber = (String)atts.get("telephonenumber").get();
         if(atts.get("departmentNumber")!=null)
    departmentNumber = (String)atts.get("departmentNumber").get();
         if(atts.get("employeeType")!=null)
    employeeType = (String)atts.get("employeeType").get();
         if(atts.get("employeenumber")!=null)
    employeeNumber = (String)atts.get("employeeNumber").get();
         if(atts.get("reportsTo")!=null)
    reportsTo = (String)atts.get("reportsTo").get();
    LDAPPerson tmp = new LDAPPerson(uid, mobile, givenName, sn, telephoneNumber, departmentNumber, employeeType, employeeNumber, reportsTo);     
         people.add(tmp);
    return people;

  • Idoc not displaying check number

    Hi Gurus
    I am running f110 program to make a payment, but the idoc does not have the E1EDK12 segment that we use to carry the check number. Rest all information looks fine in the idoc. only this segment is missing. And also we have this problem only for one Account ID (CAD) of the House bank, other Account ID(USD) displays the check information correctly.
    Do any one know why this is behaving so...?
    Thanks
    Princeoflight

    Hi
    May be you are using custom outbound program, check with ABAPER- if any hard coding is in relation to CAD in the program.
    VVR

  • Post Count not Displaying Correctly

    My post count was somewhere over 2000+ posts before the forum change and now it's 1/10th of that at 289... another poster, I see, has over 200,000 which seems rather skewed. If the web developers who did the change can verify the post counts with a simple query of the actual records based off my user account then they'll see the actual record count doesn't match the number showing up for me under a post.

    Um... Yeah, thanks for the reassurance Mr. Smarty Pants. I guess I was not clear enough for the non-technical minded among us... Using my own account as an example I was trying to point out that there's still a bug with the way the new forums query the data from the database and it's an easy test to run a query based on the number of actual records that come up for my user account... the physical record count should be 2000+ and not 280.
    As well, it's very difficult with this current forum format to tell that I'm not logged into it... I was showing as logged into the general Adobe site as indicated at the very top-left of the site by the 'Welcome Chunick', but apparently I wasn't logged into the forum section which was indicated by a Login/Register line of text just below the black Forums header that was in a light blue which was not only hard to catch, but also not indicative that I need to login to the Forums separately which is new with the new forums. Now it seems pretty clear since I worked it out, but it was a bit confusing at first, to be sure.

  • Comma not displaying for number reaching to billions

    Hello All,
    I noticed that if a packed number has reached to billions, the comma doesn't get displayed.
    EXAMPLE:
    DATA: v_num1 type p decimals 2,
          v_num2 type p decimals 2,
          v_sum  type p decimals 2.
    v_num1 = '98067382712.56'.
    v_num2 = '123456789.54'.
    v_sum = v_num1 + v_num2.
    write:/5 v_sum color 4.
    When I look into the report output, it displays <b>98190,839,502.10</b> and not <b>98,190,839,502.10</b>. Is there a way to do solve this? I was hoping to find this in the user settings.
    Many thanks in advance!
    Regards,
    Kristine

    Dear Kristine  ,
    I think the problem is the field length.
    Try to define your field like
    data: v_num1 type p length 16 decimals 2.
    (16 is the max length for type p !)
    Best regards,
    Manuel

  • IPhone not displaying my number to my contacts

    When I call or text anyone from my iPhone my email address is displayed not my number. It happens with whoever I'm texting or calling.
    Any ideas??  
    Todd

    I have found a solution to the problem of my number not being dispalyed properly. I now can see my number in itunes and at the top of the contacts and in the phone settings. It has something to do with the number being on the sim card, i went to my old (02) motorola KRZR mobile and went to my numbers with the o2 iphone sim installed, i saw that under my telephone numbers had no numbers listed, so i went to edit and added my iphone number. I now can see my telephone nmber listed where it should! I do think though that you cant just put the numbers on the sim (i tried that with a sim reader/writer) which didnt work, it has to be on the part of the sim which stores YOUR mobile number. I rang both apple support and o2 and neither of them were any help at all (see previous post)
    Well this solution worked for me anyway.
    dave

  • Email count not displaying in iOS 8.0.2

    So immediately after upgrading to iOS 8.0.2 my email count stopped showing up on the screens icon. I've tried restarting and deleting my email accounts and adding them back and nothing changes. Anyone else experiencing this?

    I recently upgraded Mountain Lion to Mavericks. Until now it's been disappointing. I read about these so-called syncing features too late.
    See How to locally sync an iPhone with OS X Mavericks? iCloud is NOT an option.

  • Not displaying whole line

    Hi,
    I wrote a query that extracts out data in xml format, but the output gets truncated after about 25 lines. I've tried to set linesize and pagesize to their max values but that doesn't seem to help.
    Anybody know how to get it so it displays the entire results ?
    Regards,
    Ned
    ==============================================
    Here is a sample of the output: (notice the truncation at the bottom of the file)
    <site_list xmlns:xsi="http://www.w3.org/2001/XMLScmema-instance" xsi:noNamespaceSchemaLocation="http://server:8080/home/aventisdm/tombstone.xsd">
    <site>
    <enable_site_id>308645</enable_site_id>
    <external_site_id>1000131909</external_site_id>
    <enable_house_id>309044</enable_house_id>
    <site_type>FACILITY</site_type>
    <site_name>DUNHAM SERVICES INC - HUMBOLDT</site_name>
    <address>BOX 2709 </address>
    <city_name>HUMBOLDT</city_name>
    <province_name>SK</province_name>
    <code>S0K2A0</code>
    <privacy_status>N</privacy_status>
    <edit_date>04-AUG-03</edit_date>
    </site>
    <site>
    <enable_site_id>309044</enable_site_id>
    <external_site_id>1000131910</external_site_id>
    <enable_house_id>309044</enable_house_id>
    <site_type>FACILITY</site_type>
    <site_name>DUNHAM SERVICES - HEAD OFFICE</site_name>
    <address>BOX 159 </address>
    <city_name>WATROUS</city_name>
    <province_name>SK</province_name>
    <code>S0K4T0</code>
    <phone_

    I've noticed in SQL*Plus 9.2 there is a column width
    "feature" that by default causes truncation after
    2000 bytes. To get longer lengths use an explicit
    COLUMN FORMAT on the xmltype column.
    Below is a testcase. Change 'string1' to a string of
    approximately 2000 bytes. Enable only one of the lines
    marked Test 1, 2 or 3. Test 1 will truncate each row to
    2000 bytes. Test 2 will put a newline in the middle of
    each row. Test 3 shows the data displayed correctly.
    -- CJ
    Testcase is:
    set long 32000
    set longc 32000
    set pagesize 10000
    set linesize 32000
    set heading off
    set trimspool on
    set trim on
    set newpage none
    set echo off
    set termout off
    -- Test 1
    -- Truncate each line at 2000 bytes
    SET WRAP OFF
    -- Test 2
    -- Put a newline each 2000 bytes
    -- SET WRAP ON
    -- Test 3
    -- To get all data explicitly set a column format
    -- for the XMLType column.
    -- COLUMN result FORMAT A32000
    -- Change 'string1' to a 2000 character string before running the tests
    select xmlelement ("Emp",
    xmlattributes (e.empno, e.ename||'string1' AS "name")) AS "result"
    FROM emp e;
    exit

Maybe you are looking for

  • Here we go again guys!!

    After a couple of weeks without problems on BT/Yahoo mail just tried to send an email and got the dreaded password not recognised message. On going over to webmail and logging in this is the result: We're sorry, but BT Yahoo Mail can't load due to a

  • How to track the changes to a table and update the other table ?

    Hi Guys,                I am looking to track deletion of entries on KONV table and sync these missing entries in an other table which has primary key entries of KONV. How to do this.. is ALE change pointer is any good for this purpose ? Thanks AJ

  • Touchsmart 9100 Audio Cuts Out

    I have Touchsmart 9100 with Realtek High Definition Audio running Win 7 Home Premium SP1, 8GB RAM (currently: 7.75GB Physical, 1.88GB Available, Total Virtual 13.7GB, Available Virtual 7.53); Dell 5650 5.1 surround sound with the three-to-one reducer

  • Spotlight icon constantly flashing

    Hi! My spotlight icon is constantly flashing and most of my Apple aps, plus my preferences don't work anymore. All I did was to trying to follow this suggestion to fix a QT issue: Re: Workaround for 7.1.6 video freeze (audio continues) Posted: 2007-0

  • Polling a particular directory, retrieve only new file(s)?

    Hi, I have a requirement of polling a particular directory, and retrieving all new files posted. Say, i have a file called file1 in a particular directory, i keep polling the same directory every "n" minutes or even seconds, and will try to fetch fil