Are client sessions KILLed or DISCONNECTed, when you shutdown a database?

When we stopped the oracle service, one of the clients got the error: "ORA-00028: your session has been killed" and then
instead of: "ORA-03114: not connected to ORACLE"
it got: "ORA-01012: not logged on"
That means that the connection stood alive.
Similar things happen when you execute "ALTER SYSTEM KILL SESSION" on an inactive connection
(killing connections that are, for example, performing SELECTs at the moment, disconnects them)
The fact that a connection may stay alive after the error "your session has been killed" means that clients that get this error should close the connection themselves.

Hi,
Based on my experience,  the notice about restarting Outlook will appear if there is something changed about the mailbox. Thus, I’d like to confirm if users can reconnect to Exchange server after restarting Outlook.
Addintioanlly,  this issue also occurs because the IP address of the Client Access Array is being returned to the client instead of the server that is hosting the Public Folders. Observed when Public Folders are mounted on a multirole Exchange 2010
server that is a member of a Client Access Array. 
For more information, you can refer to the partition named Same AD site with just one CAS Array in the following article:
http://blogs.technet.com/b/aljackie/archive/2013/11/14/outlook-rpc-end-point-and-pf-the-microsoft-exchange-administrator-has-made-a-change-that-requires-you-quit-and-restart-outlook.aspx
If you have any question, please feel free to let me know.
Thanks,
Angela Shi
TechNet Community Support

Similar Messages

  • TS2755 how do I see which apps are downloaded from a certain device when you have multiple devices

    how do I see which apps are downloaded from a certain device when you have multiple devices

    you can't.

  • Purchased paradise island game and it doesn't save when you shutdown.  What is wrong?

    I purchased the game Paradise Island from iTunes.  I try asking iTunes but they don't know.  When you play the game on our iPad 2 it seems to work great and you build things and make changes on the game.  When you shutdown the game and go back later and open the game, all the changes are gone and it is like you never did anything.  I also have it on my Droid X and it works fine and saves everything but not on the iPad2. I downloaded the game from my iPad from iTunes.

    You would need to ask the maker of that game that question.

  • Why are external servers STILL auto-opening when you connect to them!

    This never happened in classic. One of the many reasons why I stopped liking "macs".

    Hi efacg,
    Most printing issues are solved by resetting the Printing preferences. When you print from Firefox and you click on the down arrow, do you see Defualt and Firefox? Please make changes to the preferences here and preview the document.
    If this continues to be an issue please also see [[Fix printing problems in Firefox]]
    If there are any other questions, please do not hesitate to ask, we are here to help.

  • What Strategies are there for updating a table when you're using a multi-table view to display it.

    I'm using a view and am able to create a grid that allows editing of one of the columns. Let's call the table where the column is updated "DepartmentFeeDetail." The view has several joins but up till now the column was editable.
    Today I needed to join DepartmentFeeDetail with itself to pick up the debit side of a debit/credit pair. I want to show the gl account number for both
    the debit and credit on the same row. I also need to update the value for both debit and credit.
    I can no longer edit the column to no surprise. When updating using MSSQLMS I get the following error:
    View or function 'MyTestView' is not updatable because the modification affects multiple base tables.
    What should my strategy be in lightswitch? The grid is populated by a query that includes my lynq expressions in DepartmentFeeRateQuery_PreprocessQuery. The query may return 1000+ rows. I need to allow the accountant to edit either a single row's column
    or enter a value in a field outside the grid and click a button "Apply fee rate to entire page."
    All this was working fine until the requirement to show the debit side gl account number and to change the debit side value somehow.
    I've tried adding a property to DepartmentFeeDetail but the "Is Computed" property wouldn't allow me to uncheck it. Is there a way to add an editable property for each grid row and initialize it to the
    current value of the column returned by the view? I could then update a collection when one of the fields changes. If they change the global value and press "Apply fee rate to entire page"
    I can update the collection as well.
    Scott Mitchell

    What I do is instead of using a View I use a updatable
    WCF RIA Service.
    This is an example of an updateable method:
    public void UpdateQuestionDetailForUser(QuestionDetailForUser objQuestionDetailForUser)
    // Get the current user
    string strCurrentUserName = System.Web.HttpContext.Current.User.Identity.Name;
    // We are under Forms Authentication so if user is blank then we
    // are debugging and we are TestUser
    if (strCurrentUserName == "")
    strCurrentUserName = "TestUser";
    // Check for an existing Answer for this Question for this User
    var objSurveyAnswer = (from SurveyAnswers in this.Context.SurveyAnswers
    where SurveyAnswers.SurveyQuestion.Id == objQuestionDetailForUser.QuestionId
    where SurveyAnswers.UserName == strCurrentUserName
    select SurveyAnswers).FirstOrDefault();
    if (objSurveyAnswer != null)
    try // This is an update ****
    // Set values
    objSurveyAnswer.Choice = Convert.ToInt32(objQuestionDetailForUser.SelectedChoice);
    objSurveyAnswer.Comment = objQuestionDetailForUser.Comments;
    // Update LightSwitch Database
    this.Context.SaveChanges(
    System.Data.Objects.SaveOptions.DetectChangesBeforeSave);
    catch (Exception ex)
    throw new Exception("Error inserting QuestionId " + objQuestionDetailForUser.QuestionId, ex);
    else // This is an Insert ****
    // Query the GetAllQuestionsForUser method because it calculates if a Question
    // is Active or not for the QuestionId being inserted
    // If it is not in the collection, do not allow the insert
    var objUserQuestion = (from QuestionForUser in this.GetAllQuestionsForUser()
    where QuestionForUser.UserName == strCurrentUserName
    where QuestionForUser.QuestionId == objQuestionDetailForUser.QuestionId
    select QuestionForUser).FirstOrDefault();
    if (objUserQuestion != null)
    try
    // Get the Survey Question
    var objSurveyQuestion = (from SurveyQuestions in this.Context.SurveyQuestions
    where SurveyQuestions.Id == objQuestionDetailForUser.QuestionId
    select SurveyQuestions).FirstOrDefault();
    // Create a SurveyAnswer object
    SurveyAnswer objNewSurveyAnswer = this.Context.CreateObject<SurveyAnswer>();
    // Set values
    objNewSurveyAnswer.UserName = strCurrentUserName;
    objNewSurveyAnswer.Choice = Convert.ToInt32(objQuestionDetailForUser.SelectedChoice);
    objNewSurveyAnswer.Comment = objQuestionDetailForUser.Comments;
    objNewSurveyAnswer.SurveyQuestion = objSurveyQuestion;
    // Update LightSwitch Database
    this.Context.SurveyAnswers.AddObject(objNewSurveyAnswer);
    this.Context.SaveChanges(
    System.Data.Objects.SaveOptions.DetectChangesBeforeSave);
    catch (Exception ex)
    throw new Exception("Error inserting QuestionId " + objQuestionDetailForUser.QuestionId, ex);
    else
    throw new Exception("Error inserting Answer. Answer is not marked Active.");
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

  • ARES movie session killing my network

    If one of my kids starts up an internet ARES P2P movie playing session,  my home network (Linksys routers and hubs) gets buried in data.  The activity lights are on almost solid.  No other network users can get service from the router and all existing network connections time out.   No other application(s) behaves like this.  Any ideas on how to throttle this ARES session down?  Why does the Linksys technology allow one session to eat up all the available network resources? 
    Thanks in advance for any help.

    Hi… Check on which port does this ARES works. Enable QoS on your router and set low priority for this port. So whenever there is any request form any other port on your network, the router will allow that port traffic first and then the traffic for ARES. This may resolve your Issue. Upgrade the firmware if required.

  • Are vector graphics still high res when you import into Premiere?

    Someone in our company is producing a commercial and he asked me for our logo. I sent him a PDF of a logo I created in Illustrator, so it's completely vector.
    He now says he needs a bigger logo that is high res. I thought vector was always high res and that you can scale it as much as you want and it won't matter.

    He just asked me to scale it to fit 1280x720 aspect ratio. I have no idea what that translates to in inches or picas which is what I'm used to (sorry, my math skills are pathetic).
    Do you know?

  • Last update - disconnect when you restore from a s...

    Hi all, 
    After installing the latest skype update it works pretty weird and annoying. If you move your laptop into sleep mode, and during waking up you changed your network (i.e. moved from office to home) - skype loose the connection and will not renew it till you make a full system reboot(!). It's completely disgusting and annoying. The previous version doesn't have any kind of these issues. 
    Any thoughts or comments what can help? 

    Everything on your phone will be replaced with whatever data is in the backup you restore from, except iTunes content, which is not included in an iPhone backup. The only pics in an iPhone backup are pics from your camera roll.

  • Are your computers warranties really void when you open up its side panel?

    This is a question that makes me ask if its legal for a company such as Acer or Gateway
    or eMachines to do this. You break the seal and add memory. 1 month later the mobo goes bad.
    Boom, you have a 200 to 300 dollar paperweight on your desktop.
    Anyone elses thoughts on this?
    *******DISCLAIMER********
    I am not an employee of BBY in any shape or form. All information presented in my replies or postings is my own opinion. It is up to you , the end user to determine the ultimate validity of any information presented on these forums.

    As a firedog I replaced a video card for a customer that owned a dell. They ordered it from dell and then they paid for me to install it.
    The interesting thing was that it was a laptop I felt really special replacing a video card in a laptop, I mean, how many computers on the market actually have replaceable GPUs?
    That being said, I think that dell has some major quality control issues, but so do most. I prefer Asus out of all the pre-fabs that BBY carries, and IBM above all others.
    Give a man a fish and he'll eat for a day, but hit a man with a brick and you can have all his fish...and his wife!
    My views may not represent the views of my employer, Best Buy.

  • CF 8, Client Sessions, & the Registry

    Hello all!
    There are an abundance of posts in regards to storing the Client Session data in the Windows Registry.  http://forums.adobe.com/message/4302560 being the most related to my issue.  (http://www.carehart.org/blog/client/index.cfm/2006/10/4/bots_and_spiders_and_poor_CF_perfo rmance has been a handy article as well.)  However, none of them seem to behave the way mine does after ColdFusion and the application are told not to store values there.  I updated my configurations,  restarted the Cold Fusion services, delete the old session data via "reg DELETE HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\ColdFusion\CurrentVersion\Clients", and confirm that everything is deleted.  However, after I restart the server and check that place in my registry, there's still several GB of data in there that references sessions months old.  What repopulates this?  I deleted all of it, why does it come back?  Anyone able to tell me what I'm not doing correctly?
    Thanks in advance,
    bmj

    Just to be sure, before deleting the registry values, instruct ColdFusion not to store client sessions in the registry. You do so by navigating to
    Server Settings >> Client Variables
    in the ColdFusion Administrator. Select to store client variables in cookies, for example.

  • I forgot the code for my iPhone to access the Home screen I do , please help me try formatting the iphone but when I put in nfc mode and connect it to the pc recognizes it and everything when you try to format the error 3004 appears

    I forgot the code for my iPhone to access the Home screen I do , please help me
    try formatting the iphone but when I put in nfc mode and connect it to the pc recognizes it and everything when you try to format the error 3004 appears

    Hello polo-angulo,
    I apologize, I'm a bit unclear on the nature and scope of the issue you are describing. If you are saying that you are getting an error code (3004) when you try to restore your iPhone (because you could not remember your passcode), you may find the information and troubleshooting steps outlined in the following articles helpful:
    Resolve iOS update and restore errors in iTunes - Apple Support
    Get help with iOS update and restore errors - Apple Support
    Sincerely,
    - Brenden

  • What gets copied when you copy a warehouse?

    Hi
            We are debating whether to copy one of our existing warehouses or the SAP standard for our new warehouse setup.
    Does someone know what are the things that get copied when you copy a warehouse ?  (eg storage types , Storage locations etc.... ) Would any customized transactions that we have in our existing warehouse be copied ( eg: customized RF transactions etc)
    Please advise.
    Thanks

    Hi,
      It copies only standard warehouse structure. It will not copy customized ones.
    Thanks,
    DV

  • Stop Video & sounds when you flip pages

    Hi !
    We are many to have this problem :
    When you have an auto-play video or audio in a page, when you flip the page, the video or the audio continues to play and doesn't stop !
    There's a trick : on the next page and on the page before, we can place a "white" video (or a "white sound"). It means an empty short video or sound, with auto-play action. When it starts, it stops the video or the sound from the other page. That's it !
    BUT there is a problem, and this is my question :
    When you flip BACK the page, the video or audio doesn't autoplay again ! It's a real problem.
    For exemple, if the video is on the last page, when you flip it back, the video is still playing, even if you placed a white video on the page before.
    Does anyone have a solution or a trick?
    Regards,
    Vincent

    yeow, i can't believe how many threads you've started on this and how long you've been working on it.
    if you want to hire me to solve this, send an email via my website:  www.kglad.com

  • Some RST are seen during TCP disconnection when using SSL connection

    Some RST are seen during TCP disconnection when using SSL connection
    It is expected that the disconnection sequence for a secure connection to be as follow:
    client ************************* server
    --- alert (warning, close notify) --->
    <--- alert (warning, close notify) ---
    in any order;
    and then:-
    --------------- FIN, ACK ------------>
    <----------- FIN, ACK ---------------
    ------------------ ACK ----------------->
    Instead of the sequence described above, the TCP connection for a secure connection is closed with an RST.
    For instance, Wireshark capture shows that an SSL+SASL TCP connection is closed in the following manner:
    client ************************** server
    --- alert (warning, close notify) ---->
    ---------------- FIN, ACK ------------>
    <--- alert (warning, close notify) ---
    <----------- FIN, ACK ---------------------
    ------------ RST -----------------> *(This RST message should be investigated, an ACK message was expected)*
    Server: OpenLDAP: slapd 2.4.23
    Client: (java version "1.6.0_16")
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.InitialLdapContext;
    import java.util.Hashtable;
    import javax.naming.ldap.InitialLdapContext;
    import javax.naming.ldap.StartTlsRequest;
    import javax.naming.ldap.StartTlsResponse;
    class Client {
    private static final String DEFAULT_INITIAL_CONTEXT_FACTORY = "com.sun.jndi.ldap.LdapCtxFactory";
    public static void main(String[] args) {
    //SSL
    try {
    System.setProperty("javax.net.ssl.keyStore", "c:\\\keystore");
    System.setProperty("javax.net.ssl.keyStorePassword", "adminadmin");
    System.setProperty("javax.net.ssl.trustStore","c:\\\keystore");
    System.setProperty("javax.net.ssl.trustStorePassword","adminadmin");
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use the name of the server that is found in its certificate
    env.put(Context.PROVIDER_URL, "ldap://1.2.4.4:16415");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "cn=manager,dc=operator,dc=com");
    env.put(Context.SECURITY_CREDENTIALS, "password");
    env.put(Context.SECURITY_PROTOCOL, "ssl");
    // Create initial context
    InitialLdapContext ctx = new InitialLdapContext(env, null);
    // Close the context when we're done
    ctx.close();
    catch(Exception e)
    e.printStackTrace();
    Is it a bug ? Can I expect to have a patch for this issue?
    Regards,
    Olivier
    Edited by: 975464 on 6-Dec-2012 11:21 AM

    I agree it should be an ACK not an RST but it doesn't really matter. The connection is closed, and as neither the client nor the server has any pending data it is benign. Worth investigating in a later JRE.

  • Starting a managed server session and keeping the session when you exit

    I created a managed server named "xxx_mgd" with the create managed server wizard in the admin console
    when I start the managed server it produces a prompt for the username and password, whcih is the same username
    and password entered when i was created. The issue I have is that when I exit the session, the process dies.
    In comparison to the starting of the admin server, which is started with custom scripts which calls the standard wl startup scripts and it runs in background using nohup....
    Is there away to start my managed server the same way, so that it stays running when you exit. I have tried running it as the admin server, using an option where the password if fed, but it dies and never startup
    If you have any clue let me know
    Joseph

    Assuming that you are running WebLogic version 9.x and above.
    Copy the "security" folder inside DOMAIN_HOME/servers/AdminServer directory to DOMAIN_HOME/servers/ManagedServer directory.
    This security folder will have boot.properties file which contains encrypted username and password which is used when starting the server.
    You can run Admin Server in background using nohup command as below from DOMAIN_DIRECTORY. This command will redirect stdout to AdminServer.out file.
    nohup ./startWebLogic>>AdminServer.out &
    You can run Managed Server in background using nohup command as below from DOMAIN_DIRECTORY/bin folder. This command will redirect stdout to ManagedServer.out file.
    nohup ./startManagedWebLogic.sh <Managed Server Name> t3://<AdminServerListenAddress>:<PortNo> >>ManagedServer.out &
    Hope this helps.
    - Tarun
    Edited by: Tarun Boyella on Feb 3, 2011 2:09 PM

Maybe you are looking for