How to edit my profile's public visibility?

I want to edit my profile visibility in public to change only my contacts. But I can not edit in my profile editing section. Please give me a solution. Thanks

Hi, Goodle, and welcome to the Community,
These profile settings are determined by Skype.  Where you see a default setting as "public" or "contacts only," that is precisely where the information will be displayed.  The Time and Number of Contacts settings are the only two items for which we are granted choices, as indicated by the drop-down arrow beside each setting.
Many Skype users have posted here in the Community that they would like Skype to change these settings to enable more choices, in other words to make the profile settings more flexible.   If you do not wish the information to appear as "public" or "contacts only," simply leave the setting blank or not specified.
Regards,
Elaine
Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Similar Messages

  • How to edit USER profiles ?

    Hi, friend
    i am newbee to JSP technology.
    NOw i made some customers database and when fire a query
    they are listed in one table.
    like below
    Customer_ID CustName CustCity Mobile
    now i want that when perticular customer id is clicked on the table displayed, it should open that customer page to be edit.
    How to achieve that ?
    i mean each CUSTOMER ID field should be in link ( hyperlink) format
    WHAT TO DO ? and HOW TO ACHIEVE IT
    and HOW TO EDIT DATA IF PAGE IS OPENED.
    PLEASE DEAR oneS.
    SOlve my confusion.
    Thanks

    I am posting my Both Pages to you
    ========================================
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ include file="dbServer.jsp"%>
    <%@ page errorPage="loginerror.jsp" %>
    <%@ page import="java.util.*" %>
    <%
            String user = (String)session.getAttribute("username");
            String dist =(String)session.getAttribute("district");
            String talu =(String)session.getAttribute("taluka");
            String vil =(String)session.getAttribute("village");
             if(session.isNew() || user != null)
            {    System.out.println("admin- session is new");    }
            else
                    response.sendRedirect("login.jsp");
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>userSelection</title>
    <style type="text/css">
    <!--
    .style1 {font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    .style10 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
    .style11 {font-family: Arial, Helvetica, sans-serif; font-size: 10px; }
    .style15 {color: #660000}
    .style16 {font-size: 12px}
    .style19 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; }
    .style9 {font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    .style20 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; }
    .style21 {font-family: "Courier New", Courier, monospace; font-size: 12px; }
    .style22 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; }
    .style25 {font-size: 10px}
    -->
    </style>
    </head>
    <body>
    <form method=post name="form2" id="cid">
    <table width="100%" border="1" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td><div align="center"><span class="style1">Fortification System </span></div></td>
        </tr>
    </table>
    <table width="100%" height="72" border="1" cellpadding="2" cellspacing="0">
        <tr>
            <td bgcolor="#CCCCCC"> </td>
        </tr>
    </table>
    <table width="100%" border="1" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td width="9%" height="25" bgcolor="#FFFFCC"> </td>
            <td width="64%" bgcolor="#FFFFCC" class="style1"><div align="left">
                    <p><span class="style16">Welcome :</span> <strong><span class="style15"><%=user %></span> !</strong></p>
            </div></td>
            <td width="27%" bgcolor="#FFFFCC"><div align="left"><span class="style19"><a href="logout.jsp" class="style10">Logout</a></span></div></td>
        </tr>
    </table>
    <table width="44%" border="0" align="center" cellpadding="2" cellspacing="0" class="style10">
        <tr>
            <td width="51%" bgcolor="#CCFFFF" class="style11"> </td>
            <td width="49%" bgcolor="#CCFFFF" class="style11"> </td>
        </tr>
        <tr>
            <td colspan="2" bgcolor="#33FFFF"><div align="center" class="style20">Fair Price Shop Owners </div>      </td>
        </tr>
        <tr>
            <td bgcolor="#CCFFFF"> </td>
            <td bgcolor="#CCFFFF"> </td>
        </tr>
    </table>
    <p align="center" class="style21"><%=dist%> > <%=talu%> > <%=vil%> </p>
    <table width="84%" border="1" align="center" cellpadding="2" cellspacing="0">
    <tr bgcolor="#CEFEC2" class="style10">
        <td width="10%"><div align="left"><strong>FPS ID </strong></div></td>
        <td width="14%"><div align="left"><strong>ReceiveDate</strong></div></td>
        <td width="20%"><div align="left"><strong>Receive Quantity </strong></div></td>
        <td width="15%"><div align="left"><strong>Lot Number </strong></div></td>
        <td width="20%"><div align="left"><strong>Distribution Date </strong></div></td>
        <td width="21%"><div align="left"><strong>Quantity Supplied </strong></div></td>
    </tr>
    <%
            String q ="SELECT FPS_ID,RC_date,RC_Qty,Lot_Num,Dist_date,Qty_sup From receiver_master WHERE Operator_ID IN( SELECT Operator_ID from flour_operator_details WHERE Role_ID =2)";
            stmt = con.createStatement();
            rs =stmt.executeQuery(q);
            System.out.println(q);
            while(rs.next())
            int fpsid = rs.getInt("FPS_id");
            java.util.Date rc_date = rs.getDate("RC_date");
            float rc_qty = rs.getFloat("RC_Qty");
            String lot   = rs.getString("Lot_Num");
            java.util.Date dist_date=rs.getDate("Dist_date");
            float qty_sup = rs.getFloat("Qty_sup");
    %>
    <tr class="style10">
    <td ><div align="left"><span class="style10"><a href="editFPS.jsp?CustomerID=<%=fpsid %> "><%=fpsid%></span></a></div></td>
    <td><div align="left"><span class="style10"><%=rc_date.toString() %></span></div></td>
    <td><div align="left"><span class="style10"><%=rc_qty %></span></div></td>
    <td><div align="left"><span class="style10"><%=lot%></span></div></td>
    <td><div align="left"><span class="style10"><%=dist_date.toString()%></span></div></td>
    <td><div align="left"><span class="style10"><%=qty_sup %></span></div></td>
    </tr>
    <%    
    %>
    </table>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <p align="center" class="style22"> </p>
    <table width="100%" border="0" align="center" cellpadding="2" cellspacing="0">
        <tr>
            <td><div align="center"><span class="style9">All rights reserved@9879152949-Ghanshyam Rathod </span></div></td>
        </tr>
    </table>
    <p> </p>
    </form>
    </body>
    </html>================================================
    to get that Clicked ID i used this code
    but got null value
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ include file="dbServer.jsp"%>
    <%@ page errorPage="loginerror.jsp" %>
    <%@ page import="java.util.*" %>
    <%
            String user = (String)session.getAttribute("username");
            String dist =(String)session.getAttribute("district");
            String talu =(String)session.getAttribute("taluka");
            String vil =(String)session.getAttribute("village");
            String  cid   = (String)session.getAttribute("cid");
             if(session.isNew() || user != null)
            {    System.out.println("admin- session is new");    }
            else
                    response.sendRedirect("login.jsp");
    %>
    <%
            System.out.println("CUSTOMER ID SELECTED is :"+ cid);
            out.println("ID :="+cid);
    %>

  • How to edit your profile picture in OS X Mountain Lion?

    I am trying to edit my picture in System Preferences > Users & Groups
    Default obviously shows you the stock photos. Recents, shows you recents... and camera allows you to take a new photo now and use photobooth style effects.
    How can I... use a photo on my Mac... one of my photos like you used to be able to?

    On way (there may be others) is to save the picture you want to use to your desktop and simply drag it onto your existing pic is User & Groups Prefs.

  • Does anyone know how to edit your profile if you have more than one apple device but only 1 email address?

    Hi I am trying to update my email address since I quit work and left my work email address behind.  I now only have one email address, but an iphone and ipod classic and want both of them to use the same email address - but am having problems using the address for my iphone as it is already attached to the ipod classic.  Does anyone know how I fix this??
    thanks
    Jenny

    My profile: bookmarks - I added one of someone that did manage, it does take planning.
    take a look and good luck, it is not supported or standard but can be done.
    NTFS and HFS drivers to write back and forth may be easier and better though.
    or 2nd hard drive - and use NTFS along with HFS driver as needed.

  • How to edit template for report generator in stimulus profile editor in Veristand 2011?

    How to edit template for report generator in stimulus profile editor in veristand 2011?
    We are using Veristand 2011.When we run any sequence in stimulus profle editor,we get test results in form of ATML file.
    We want to customise the template for this test result generation as per our requirement.
    For example:
    Test case No.: Description of test case.
    Objectives: Explanation of objectives.
    Result: Passed/ Failed.
    Graph: If any.
    Please suggest how to do this.

    You cant really change too much in the report, you can customize TRML.xsl which is created every time in the Test Results\UUT 1 folder and that would give you some flexibility on what is shown. I dont know what a xsl is actually able to do in terms of composing data from multiple files (if at all possible) but it definitely allows you to change the visual format of the existing xml data.
    Otherwise I modified the xsl to customize the look of the xml report when opened in a browser to have less clutter and some coloring on the Pass/Fail but, the reports are XML files anyway so it's easy to extract data out of them and you can probably write your own report creation tool to compose the report in whatever format you like.

  • How to edit the defaul profiles in profile manager?

    Hello:
    I'm setting up Profile Manager for the first time, and I'd like to change some of the auto-generated content from the EVERYONE group.
    Specifically, I would like to chnage the ports in the Mail.app container so that IMAP mail accesses port 993 (not 143).  I would also like to provicde a third-party outbound mail server...
    I can't seem to find how to edit these settings this anywhere, please help

    I believe you are looking for Banner.  This is shown below.
    But now are you trying to craft a dynanic message based on each user?  Of this is generic info?

  • Hi, I have the DPS Single Edition is but the Folio Producer public when the folio I alone was deprived. Why? How do I publish for the public? Thank You

    Hi, I have the DPS Single Edition is but the Folio Producer public when the folio I alone was deprived. Why? How do I publish for the public? Thank You

    You should look at our Single Edition publishing guide. You don't use Folio Producer with Single Edition. http://help.adobe.com/en_US/ppcompdoc/Step_by_step_guide_to_dps_se.pdf
    Note that support for Single Edition in Creative Cloud ends on May 1st. Make sure you get your app completed and approved by Apple before then.
    Neil

  • Question:How to edit root's profile

    Hello everyone,
    I am new to Solaris administration and I am trying to find a way to modify the profile of the superuser(root).
    I wanted to set its ENVIRONMENT VARIABLES, and edit some things necessary.
    I tried editing /etc/profile and exported some PATH, MANPATH but when I execute "su", it seems not to take effect.
    I looked for the the .profile under root's home directory but I can't find it.
    Also when I try to edit the root user's properties(this is through Solaris Management Console) and change its default shell from sh to BASH.. the SMC will output an error.
    Any way to workaround this?
    Thanks

    Changing root's shell can be a source of serious problems. That is unless you replace it with another statically linked shell (like the default shell is).
    One way around this is to exec bash from your /etc/profile or .profile. All the benefits of bash without the potential gotchas.
    As for your profile problems. First of ~/.profile doesn't exist you can create it. That's probably the best place to put any customization to environmental variables you want to do that are specific to the root account.
    As for the problem with environmental variables not being set, I've found that what seems to consistently work best for me is to set the variable then export it: e.g.
    HOSTNAME=`/bin/hostname`
    export HOSTNAME
    I wouldn't follow the advice to set up a 2nd uid 0 user account. That only exposes you to security risks of having two superusers accounts as well as muddying up any audit/logging trails for actions taken. A much better (IMESHO) approach is to use RBAC or sudo to enable a normal user account access to the need root commands.

  • How to edit the device profile

    I need to edit it but I cannot find it.
    Please help with how to edit it? Thanks!

    Hi,
    if necessary you can edit the properties directly in the file. Go to the MI installation folder, openthe settings folder and in there you will find the file MobileEngine.config. In there you can enter all properties you like.
    Hope that helps!
    Regards,
    Oliver

  • How to edit cell in a Data Grid

    Hai
        I have pasted the mxml below.
       I need how to edit a cell in a datagrid.
      1. Run the mxml, enter the values in the textbox and click add button.
      2. then click AND button, now u can see the values displayed in the grid.
    3. Then again change the second combobox and enter the values in the textbox and click add
    4. Now i need to edit the values for a particular cell in the datagrid.
    In the below code u can see the Value column,
    i need to edit oly that cell of a particular row .
    Can anyone help me.
    Thanks in Advance
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
    <![CDATA[
    // ActionScript fileimport  
    mx.rpc.events.FaultEvent;
    import  
    mx.controls.Alert; 
    import mx.managers.CursorManager;
    import  
    mx.collections.ArrayCollection;[
    Bindable] 
    public var adhoc:ArrayCollection = new ArrayCollection();[
    Bindable] 
    public var serverString = "" ; 
    private function initImage(event:MouseEvent):void { 
    if(adhoc.length > 0){CursorManager.setBusyCursor();
    private function onChange():void{ 
    if(comboBox.selectedIndex == 0){ 
    else{ 
    private function onChange1():void{ 
    if(combo2.selectedItem == "DATEDEPLOYED" || combo2.selectedItem == "DATEUPLOADED"){datepick.visible =
    truetxt.visible =
    false}
    else{txt.visible =
    truedatepick.visible =
    false}
    private function add():void

    You can enable editing in a DG to the whole DG or only to certain columns
    http://blog.flexexamples.com/2008/05/11/creating-an-editable-datagrid-control-in-flex/
    If you want to enable editing to a very specific cell then you use the event itemEditBegin to prevent editing a cell that doesn't meet your criteria
    http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_7.html

  • Editing community profile info and privacy settings

    I would like to change the first/last name on my community profile (the name that shows up here).  I made the mistake of not entering a coded name.  Gives scammers TMI!  Community profile updates allow changing or hiding everything but that information. 

    To edit your profile, click the down-arrow tab next to your name at the top-right of your screen. In the menu, you'll see "Edit profile and privacy" From this screen, you will be able to edit your information.
    Please note that you are in full control of how your information appears. On the "Edit Profile" screen, you'll see a tab for "Privacy Settings". Click to the privacy settings tab, and from there, you can choose who is able to see your name and other info. You can choose to set these fields as visible to only yourself, if you so choose.

  • How to make outbound plug to Public attr

    Hi All,
               I am trying to call outbound plug from get_v method for f4 help. But when i click on f4 help, it getting dump by giving below error.
    View 'ZXXXX/GeneralData' does not have the public outbound plug 'OP_FINDXXXX' for value help navigation
    In get_v method, using below piece of code.
         CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_navdescr
         EXPORTING
          iv_outbound_plug = 'FINDXXXX'.                    "#EC NOTEXT
    My concern is how to make Outbound plug to public or if there any other way to call Outbound plug from Get_v then please advice.
    I appriciate your suggestion.
    Thanks
    RI

    Hi Imran!
    To make outbound plug public please do the following things:
    1)In BSP_WD_CMPWB: go to the code of your outbound plug and switch to edit mode;
    2)Save & Activate your outbound plug.
    3)Menu "Go to" -> "Method Definition"-> tab "Attributes":
    - set "Visibility" = Public
    - "Event" block: "Active" should be marked.
    Warning: after changing of visibility the content(code) of method will be removed automatically!
    So, save it beforehand.
    4) Then go to method and try to do save and activate.
    You will get a error message. Double click at this message - so you will be redirected to the error place - protected section of the current class.
    5) Find out in this protected section the rows with your outbound plug - cut out them.
    6)On the toolbar you will see button for public section - go there and past you rows there.
    7) save and activate everything.
    8) Now you can fill your outbound plug with your logic and activate again.
    I did this just recently many times and it worked fine.
    Please tell me if something is unclear or doesn't work.
    Good luck!
    Evgenia

  • How to edit JVC/Panasonic/Canon .mod video in Windows Movie Maker then upload to YouTube for sharing

    Quick View:
    Part 1: How to import .mod video to Windows Movie Maker
    Part 2: How to edit the video with Windows Movie Maker
    Part 3: How to upload your video to YouTube
    Know More:
    1. Which Camcorders record video in .MOD type?
    2. What file types are supported by Windows Movie Maker?
    3. What file types are supported by YouTube? 
    Part 1: How to import .mod video to Windows Movie Maker
    Step 1: Load files
    First copy the MOD file from your video camera to your hard drive, then download, install and run MOD Converter, click the "Add Files" button to browse your computer hard disc and load the MOD/TOD video files you want to convert to the program. 
    Step 2: Output Setting
    In the bottom of the main interface, select an output format supported by Windows Movie Maker for each video file and specify a directory on your computer to save the output files. 
    Step 3: Start convert
    Click "Start" button on right bottom of the main interface, you are allowed to start conversion. 
    Step 4: Import converted video to Windows Movie Maker
    Click on "File". Then click on "Import". A window will appear. In the window, navigate to the video clip you converted just now. Then double click on the file. You'll see the icon for the file in your Windows Movie Maker "Collections". 
    Part 2: How to edit the video with Windows Movie Maker
    Step 1: Add transitions and special effects
    In the Movie Tasks pane, under Edit Movie, click View video transitions. 
     Preview transitions by double-clicking them and watching the Preview Monitor. Once you've found a transition you like, drag it from the Video Transitions pane, under Edit Movie pane to the box between two of your clips. This inserts the transition between the two clips. 
    Step 2: Add titles and credits
    If you want to add a title before, after, or on top of a clip, click the clip on the storyboard or timeline.
    In the Movie Tasks pane, under Edit Movie, click Make titles or credits. 
    Step 3: Add Music
    In the Movie Tasks pane in Movie Maker, under Capture Video, click Import audio or music. 
     In the Import File dialog box, click the name of the song you want to use in the background. Then click Import. This adds your song to your collection but does not add it to your video. Drag the song from the collection to the video clip where you want the music to start playing. 
    Step 4: Add narration
    If you have a desktop computer, connect a microphone. Microphones are available from most electronics stores. If you have a portable computer, you can use the built-in microphone. However, you will get a better-quality recording if you connect an external microphone. In Movie Maker, click the Tools menu, and then click Narrate Timeline. On the timeline, click the clip you want to narrate. You can narrate clips one at a time, or you can narrate the entire movie all at once. If you narrate individual clips, you can rearrange them later and keep your narration synchronized. If the narration is too loud or too soft in comparison to the movie, right-click the narration on your timeline, and then click Volume. 
    Step 5: To save your movie to your computer
    In the Movie Tasks pane, under Finish Movie, click Save to my computer. 
     The Save Movie Wizard appears. On the Save Movie File page, type a name for your movie. You can also choose a folder to save it in by clicking the Browse button, but My Videos (the default) is usually the best place to save your movie. Then click Next. On the Movie Setting page, click Next to accept the default setting of Best quality for playback on my computer.
    Movie Maker saves your movie, which might take several minutes. On the Completing the Save Movie Wizard page, click Finish. If Play movie when I click Finish was selected (it is selected by default), the movie will automatically play in Windows Media Player. Now you can watch your videos anytime by opening your My Videos folder and double-clicking your movie. 
    Part 3: How to upload my video to YouTube
    A video file should meet the following requirements so that it can be uploaded to YouTube site.
    1. In an acceptable format: WMV, MPEG4, MOV, AVI and MPEG.
    2. Video length is shorter 10 minutes.
    3. File size is smaller than 1GB. 
    Step 1: Sign up a YouTube account or Gmail account, then click the Upload button on any YouTube web page. See the figure below: 
    Step 2: Type in the information of your video file, including Title, Description, Category and tags. To increase the chances that your video can be easily found, you should put as much information as possible. 
    Step 3: Set this video to be public or private. 
    Step 4: Click the "Upload a video" button. When you see the next window, click the "Browse" button to select the video file you want to upload. Then click the "Upload Video" button to upload it. After the upload is finished, you will see the completion page. See the figure below: 
    Step 5: Click "My Videos" and you will see the video. 
    Know More:
    1. Which Camcorders record video in .MOD type?
    MOD is the video file type used on many digital camcorders, such as the JVC Everio, the Canon FS100 and the Panasonic D-Snap SD-card camcorders. Accompanying the MOD video file, there exists MOI file that stands for the index file for MOD. 
    2. What file types are supported by Windows Movie Maker?
    You can import files with the following file name extensions into Windows Movie Maker to use in your project:
    Video files: .avi, .wmv, .mpeg, .mpg., .asf, m1v, .mp2, .mp2v, .mpe, , .mpv2, and .wm.
    Audio files: .mp3, .wav, wma, .mp2, .aiff, .aif, .aifc,.asf, .au,.mpa, and .snd.
    Picture files:.jpeg, .jpg, .jpe, .png, .bmp, .dib, .emf, .gif, .jfif,.tif, .tiff, and .wmf 
    3. What file types are supported by YouTube?
    YouTube accepts a wide range of video file formats.The video files below are all accepted by YouTube. Some video formats work best and are most compatible with certain computers, software or devices. Windows Media Video (.WMV)
    .3GP (cell phones)
    .AVI (windows)
    .MOV (mac)
    .MP4 (ipod/psp)
    .MPEG
    .FLV (adobe flash)
    .SWF (shockwave flash)v
    .MKV (h.264) If you do not think your current video file format is recognized by YouTube, you may get the best uploading results from converting your file to MPEG4 video with MP3 audio.

    I prefer this
    iPad Manager software, with the assistance of iPad Manager, you can make iPhone ringtone, connect your PC to iPad to backup iPad files to Computer directly, import computer file or folder to iPad. 
    Furthermore, it's easy to convert DVD/video to iPad. 
    This versatile iPad Manager can help you transfer videos, songs, photos from computer to iPad and from iPad to PC in fastest speed. Have a try with this tool and manage your iPad, iPod, iPhone in a much easier way. 
    * Convert DVD/video to iPad
    * Backup iPad files to PC
    * Import computer file or folder to iPad 
    iPod Manager
    iPod Video Converter
    DVD to iPhone Converter
    iPod Mate

  • Get-splogevent Correlation ID, login failed for "Edit My Profile" in My Profile Error An unexpected error has occurred

    Hello Community
        Edit My Profile in My Site displayed an error that "An unexpected error occurred" with a
    Correlation ID. I have tried to read the logs in the 14 hive Logs folder but unsuccessfully. 
    I was able to  understand Event Viewer logs, there was supposed to be 4 possibilities
    one was wheter UPS was running, the other was clearing the cache and the other 2 I also fixed
    I even recreated the Search Service Application, Metadata and UPS but when I fixed the problems
    the error still occurred.
        Then I used a Powershell command that displayed output but the Output doesn't make sense
    because it is saying the login failed associated with the database that was created by the Search
    Service application when it was created.
        But  how can that username be related to the Search Service database?  Below is the output:
    Area     : SharePoint Foundation
    Category : Logging Correlation Data
    Level    : Medium
    EventID  : xmnv
    Message  : Name=Request (GET:http://site/_layouts/EditProfile.aspx?accountname=Server1%User1)
    Area     : SharePoint Foundation
    Category : Logging Correlation Data
    Level    : Medium
    EventID  : xmnv
    Message  : Site=/
    Area     : SharePoint Server
    Category : Database
    Level    : High
    EventID  : 880i
    Message  : System.Data.SqlClient.SqlException: Cannot open database "SrchSvc_DB_5e06e8c82d5446e39da18d70a5a7e78e" r
               equested by the login. The login failed.  Login failed for user Server1\User1.     at System.Data.SqlCli
               ent.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)     at System.Data.SqlCli
               ent.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser
               .Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkC
               opyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLog
               in(Boolean enlistOK)     at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo server
               Info, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)     a
               t System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean re
               directedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
                  at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnecti
               onString connectionOptions, String newPassword, Boolean redirectedUserInstance)     at System.Data.SqlClient
               .SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Ob
               ject providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)     at Sy
               stem.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProvi
               derInfo, DbConnectionPool pool, DbConnection owningConnection)     at System.Data.ProviderBase.DbConnectionF
               actory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions opti
               ons)     at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject)     at System.
               Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject)     at System.Data.ProviderB
               ase.DbConnectionPool.GetConnection(DbConnection owningObject)     at System.Data.ProviderBase.DbConnectionFa
               ctory.GetConnection(DbConnection owningConnection)     at System.Data.ProviderBase.DbConnectionClosed.OpenCo
               nnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)     at System.Data.SqlClient.S
               qlConnection.Open()     at Microsoft.Office.Server.Data.SqlSession.OpenConnection()
    Area     : SharePoint Server
    Category : Database
    Level    : High
    EventID  : 880k
    Message  : at Microsoft.Office.Server.Data.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQu
               eryData monitoringData, Boolean retryForDeadLock)     at Microsoft.Office.Server.Data.SqlSession.ExecuteRead
               er(SqlCommand command, Boolean retryForDeadLock)     at Microsoft.Office.Server.Search.Administration.Schema
               Database.GetSchemaHighLevelInfo()     at Microsoft.Office.Server.Search.Administration.Schema.get_LastChange
               Time()     at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.SynchronizeManagedPropertyM
               appings(Guid partitionID, SearchServiceApplicationProxy searchAppProxy)     at Microsoft.Office.Server.Admin
               istration.UserProfileApplicationProxy.GetManagedPropertyMapping(Guid partitionID, String propertyName)     a
               t Microsoft.Office.Server.UserProfiles.Co...
    Area     : SharePoint Server
    Category : Database
    Level    : High
    EventID  : 880j
    Message  : SqlError: 'Cannot open database "SrchSvc_DB_5e06e8c82d5446e39da18d70a5a7e78e" requested by the login. Th
               e login failed.'    Source: '.Net SqlClient Data Provider' Number: 4060 State: 1 Class: 11 Procedure: '' Lin
               eNumber: 65536 Server: Server1\Servers
    Area     : SharePoint Server
    Category : Database
    Level    : High
    EventID  : 880j
    Message  : SqlError: 'Login failed for user Server1\User1.'    Source: '.Net SqlClient Data Provider' Number: 18456
                State: 1 Class: 14 Procedure: '' LineNumber: 65536 Server: Server1\Servers
    Area     : SharePoint Server
    Category : Database
    Level    : High
    EventID  : tzku
    Message  : ConnectionString: 'Data Source=Server1\Servers;Initial Catalog=SrchSvc_DB_5e06e8c82d5446e39da18d70a5a
               7e78e;Integrated Security=True;Enlist=False;Connect Timeout=15'    ConnectionState: Closed ConnectionTimeout
               : 15
    Area     : SharePoint Foundation
    Category : Runtime
    Level    : Unexpected
    EventID  : tkau
    Message  : System.Data.SqlClient.SqlException: Cannot open database "SrchSvc_DB_5e06e8c82d5446e39da18d70a5a7e78e" r
               equested by the login. The login failed.  Login failed for user Server1\User1.    at System.Data.SqlClie
               nt.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)     at System.Data.SqlClie
               nt.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.
               Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCo
               pyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogi
               n(Boolean enlistOK)     at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverI
               nfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)     at
                System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean red
               irectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
                 at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectio
               nString connectionOptions, String newPassword, Boolean redirectedUserInstance)     at System.Data.SqlClient.
               SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Obj
               ect providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)     at Sys
               tem.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProvid
               erInfo, DbConnectionPool pool, DbConnection owningConnection)     at System.Data.ProviderBase.DbConnectionFa
               ctory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions optio
               ns)     at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject)     at System.D
               ata.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject)     at System.Data.ProviderBa
               se.DbConnectionPool.GetConnection(DbConnection owningObject)     at System.Data.ProviderBase.DbConnectionFac
               tory.GetConnection(DbConnection owningConnection)     at System.Data.ProviderBase.DbConnectionClosed.OpenCon
               nection(DbConnection outerConnection, DbConnectionFactory connectionFactory)     at System.Data.SqlClient.Sq
               lConnection.Open()     at Microsoft.Office.Server.Data.SqlSession.OpenConnection()     at Microsoft.Office.S
               erver.Data.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringDat
               a, Boolean retryForDeadLock)     at Microsoft.Office.Server.Data.SqlSession.ExecuteReader(SqlCommand command
               , Boolean retryForDeadLock)     at Microsoft.Office.Server.Search.Administration.SchemaDatabase.GetSchemaHig
               hLevelInfo()     at Microsoft.Office.Server.Search.Administration.Schema.get_LastChangeTime()     at Microso
               ft.Office.Server.Administration.UserProfileApplicationProxy.SynchronizeManagedPropertyMappings(Guid partitio
               nID, SearchServiceApplicationProxy searchAppProxy)     at Microsoft.Office.Server.Administration.UserProfile
               ApplicationProxy.GetManagedPropertyMapping(Guid partitionID, String propertyName)     at Microsoft.Office.Se
               rver.UserProfiles.CoreProperty.GetManagedPropertyMapping(String propertyName)     at Microsoft.Office.Server
               .UserProfiles.CoreProperty.get_ManagedPropertyName()     at Microsoft.SharePoint.Portal.WebControls.ProfileP
               ropertyLoader.ApplyFormattingEx(ProfileManagerBase objManager, Dictionary`2 highlightedProperties, Property
               prop, Object[] propValue, Boolean ignoreFormat, Boolean allowLinkToSearch)     at Microsoft.SharePoint.Porta
               l.WebControls.ProfileUI.LoadProfileTable()     at Microsoft.SharePoint.Portal.WebControls.ProfileUI.LoadCont
               rol(Object sender, EventArgs e)     at System.EventHandler.Invoke(Object sender, EventArgs e)     at System.
               Web.UI.Control.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control
               .LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()
                  at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.U
               I.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint
               , Boolean includeStagesAfterAsyncPoint)
    Area     : SharePoint Foundation
    Category : Monitoring
    Level    : Medium
    EventID  : b4ly
    Message  : Leaving Monitored Scope (Request (GET:http://site/_layouts/EditProfile.aspx?accountname=Server1%User1)). Execution Time=88.6628049095625
        What does that username have to do with the database created by Search Service Application creation
    and why can't I "Edit my profile" in My Profile?
         Thank you
         Shabeaut

    Use Netmon to analyze the traffic and understand more on same
    Check available DISK SPACE on SharePoint Servers and SQL Server. On SQL Instance especially check if any databases have set Size limits.
    Did we modify something on EditProfile.aspx page. Any custom solution deployed related to search
    or mysite
    http://blogs.msmvps.com/brianmadsen/2011/12/06/sharepoint-2010-connectiontimeout-issues-from-wfe-to-profile-db/
    add the SQL Server details into the hosts file on the WFE server.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/7efeefce-129e-4a03-9ff7-900d6168952b/moss-event-id-3351-login-failed-for-user-nt-authorityanonymous-logon?forum=sharepointadminlegacy
     Running Windows sharepoint services vss writer service under AD farm account (instead of Local system) is the solution of my issue!
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/ca7d53d8-88e2-4a82-9978-8695a7074e5d/application-pool-identity-does-not-have-access-to-profiledb?forum=sharepointadminprevious
    If this helped you resolve your issue, please mark it Answered

  • Setting up a publically​-visible home web server w/ DSL residentia​l?

    Is there a how-to guide for setting up a small publically-visible home web server, basically for testing purposes?
    I have a DSL modem, Westell.
    The web server software is running and I can see the site on my home network, but everyone else on the Internet gets a timeout.  The server is not reachable.
    When I run traceroutes, the Modem's IP address does not show a timeout, but the Computer's IP address does show a timeout.  This is with all firewall software disabled.
    Can anyone help?

    Before I try to help you, I am just wondering.
    Since you are using this server for testing, why does it have to be publically-visible?
    In the meantime as I wait for that reply to my question, pre-check list for allowing user from the net to connect you:
    #1 The Default Gateway on your computer is the same IP Address as the Westell A90-750015-07?
    For example, if on Windows XP
    a) Go to Start -> Run.
    b) Type in cmd and press enter.
    c) In the new window, called the command prompt, type in ipconfig /all and press enter.
    #2 In the router go to Advanced -> Private LAN
    #3 What is the Starting and Ending IP Address?
    #4 In the router go to Advanced -> Universal Plug and Play
    #5 If you do not have at least two game consoles behind this two router, turn off UPnP in the router.
    By game console, a special type of computer with no keyboard or mouse (and it/they are usually connected to a TV).
    #6 In the router go to System Monitoring  -> Gateway Status
    #7 With another web browser Window OR Tab, go to https://www.grc.com/x/ne.dll?bh0bkyd2
    #8 Below the text that says The text below might uniquely identify you on the Internet is an IP Address.
    #9 In the web browser window or tab, that is still looking in the router, you should see that same IP Address.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

Maybe you are looking for

  • ECM11g: How to enforce HTTPS access for Content server console

    Hi, We have a requirement of accessing Content Server console (https://<hostname>:<port>/cs) with https protocol only. If a user sends a http request (http://<hostname>:<port>/cs) it should get converted to https. The managed server is running with n

  • Message handling in ALV events

    I have a screen with ALV Grid control. This grid has columns (attributes of more than one material). Now when I select more than one column and click on a button added on the ALV grid toolbar……it triggers a button click event and in the implementatio

  • How do I get my iPad to play Netflix on my tv

    I have a Netflix account and have successfully downloaded movies to the ipad2. How do I get the movie to play on my Tv?

  • User exit, secondary key

    hi friends, 1.there r so many ways to find user exit can any one suggest me which is easy and helpful method 2.will performance increase if we use secondary index r key in select query plz explain me with eg code how to assign secondary thanks regrad

  • Wacky wifi problem. Completely broken.  Anyone help? Please?

    My macbook(10.5) suddenly dropped my wifi connection last night. I clicked the airport tab in the menu bar and noticed all the available networks (mine and neighbors) are all there, but they are spelled wrong. For instance, my network is called "iRiz