Database time is 1hour ahead of server time....pls help resolving this.

Hi experts...
I have a critical problem.
Our production database time i.e sysdate is showing time 1 hour ahead of the server time. How can I correct this?
Is DB restart is the only solution or any other alternative is available?
If so, will it affect my DB retoration activity if any disaster occurs?
Please suggest .....
Message was edited by:
chotudba

it has been known for people to write a utility that sets fixed_date and then automatically move it forward in real-time.
issuing "alter system set fixed_date = NONE" should clear fixed_date depending on how resilient their utility is (if indeed this is a fixed_date problem) but I wouldn't run that command until you've thought through the consequences.
your bigger concern as this is a production database is when to resolve this issue, if you do it during office hours then you are going to have a combination of timestamp entries in your datababase and this will make it hard to identify the incorrect ones.
If you leave it until out of office hours then you should be able to alter all timestamp columns back an hour (for today), but any output (reports, letters etc) produced during office hours will have datetime entries an hour out.
If it's a 24/7 system then you've got a lot more thinking to do.
Good luck, and I'd be interested to know what it was and how you fixed it

Similar Messages

  • I am using Vodafone at Delhi India with my Iphone 5S, 3g is activated with my number but i am not getting 3G signals iphone is also activated with vodafone but still waiting for 3G signals contacted vodafone but wasted my time pls help using APN www

    I am using Vodafone at Delhi India with my Iphone 5S, 3g is activated with my number but i am not getting 3G signals iphone is also activated with vodafone but still waiting for 3G signals contacted vodafone but wasted my time pls help using APN www

    Keep on talking to Vodafone and keep pestering them until you get a satisfactory answer.  Whether you get a 3G signal or not, is entirely the responsibility of Vodafone India because they are your carrier/phone company and nobody here can help you with that on a public user to user technical support forum.
    Contact Vodafone as they are the only ones who can help you.

  • How can I restore my iPad Air to factory settings as I don't have internet on my laptop. After I erased everything from settings. It shows to restore n update through Apple server. Pls help me how to restore it to factory settings.

    How can I restore my iPad Air to factory settings as I don't have internet on my laptop. After I erased everything from settings. It shows to restore n update through Apple server. Pls help!

    Without internet connection there is no way for you restore the iPad.

  • Get 15 mins back time from current time (pls help writing query)

    Dear all,
    I need to write a query that gives time 15 mins before the current time.
    I need to calculate hits on a website for last 15 mins.
    Kindly help writing this query.
    Regards, Imran

    select sysdate - 15/(60*24)
    from dual;
    Regards
    Asif Kabir

  • My imac desktop wont boot up there is the logo and the timer pls help

    my imac desktop wont boot up there is the logo and the timer pls help

    What model iMac do you have and what operating system are you running? By Timer are you referring to a progress bar?
    Mac OS X: Gray screen appears during startup - Support - Apple
    Resolve startup issues and perform disk ... - Support - Apple

  • Essbase Gurus this is the time to help for this scenario in securityfilters

    Hi Gurus,
    I have one scenario in ASO(11v) ,I have to create security filters for two users
    for eg:
    GEO Account  30000
    wen we drill down
    india turnover 10000
    paris turnover 100000
    UK turnover noacess
    I created "GEO","india","paris"
    this security filter is working fine for one user
    but i need second filter like below
    in total sumof aggregation it doesnt show that is diffrent for both users (UK turnoover dont show in upper level)
    Actually UK have the measure but we have to restrict that measure for some users
    like below
    for another user
    GEO Account 20000
    wen we drill down
    india turnover 10000
    paris turnover 100000
    UK turnover noacess
    i m struggling here I tried with different options but no use ,my client wnt this requirement ,plz ur help gr8forly Appriciated
    Thanks
    Edited by: user98631 on Dec 18, 2009 4:31 AM

    Its amazing how the same off the wall question pops up around the same time. There is another thread about this. A security filter alone will not get you want you want.
    The best solution I can offer is to create multiple rollups that give you what you want, and use metadata security to restrict the users from seeing the geo member. Have the filter only allow them to see their rollup.
    I guess in an out of the box solutions would be to have one cube with all the data then multiple cubes partitioned to the soruce cube with the data for specific rollups. Allow the users to only see the cube that has the rollup they need.

  • Hi, I am from Maldives can anyone pls help me this sms problem.. I restored many times but sms not delivered.. pls help me????

    about one month this problem but I can't solve...

    Are you using a supported carrier? SMS is a carrier feature. Talk to them about it.

  • File Upload, only work in server directory, PLS HELP!!

    hi all,
    my sevlet program work only if the source file is in the server where tomcat is installed. Can I upload the file in pc's local harddisc?
    The following is my code:
    import sun.net.ftp.*;
    import sun.net.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class xupload extends HttpServlet
         FtpClient ftpClient;
         public void closeConnect()
              try{ ftpClient.closeServer();
              catch (IOException ex) {System.out.println(ex);}
         public void doGet(HttpServletRequest req, HttpServletResponse res)
              String ftpip = req.getParameter("ftp");
              String ftpuser = req.getParameter("user");
              String ftppwd = req.getParameter("password");
              String source = req.getParameter("source");
              String target = req.getParameter("target");
              try{
                   PrintWriter out = res.getWriter();
                        FtpClient client = new FtpClient();
                        client.openServer(ftpip);
                        client.login(ftpuser, ftppwd);
                        client.binary();
                        out.println(ftppwd);
                        try {
                                  TelnetOutputStream os=client.put(target);
                                  java.io.File file_in=new java.io.File(source);
                                  out.println(file_in);
                                  FileInputStream is=new FileInputStream(file_in);
                                  byte[] bytes=new byte[1024];
                                  int c;
                                  while ((c=is.read(bytes))!=-1){ os.write(bytes,0,c); }
                                            is.close();
                                            os.close();
                        catch (IOException ex) {System.out.println(ex);}
                        client.closeServer();
              catch (Exception e) { System.out.println(e.getMessage()); }
         public void doPost(HttpServletRequest req, HttpServletResponse res)
    }

    java.io.File file_in=new java.io.File(source);This is just picking up a filename sent from the browser and loading it from the server's filesystem.
    You actually need to have the client send the file to the server. Libraries such as Jakarta Commons FileUpload make this easy. See:
    http://www.onjava.com/pub/a/onjava/2003/06/25/commons.html?page=last&x-order=date
    http://jakarta.apache.org/commons/fileupload/using.html

  • ICal stuck "moving to server account", how to resolve this?

    I just got an iPhone and finally am syncing with iCloud, but now my calendars are stuck "moving to server". I have tried many resolutions found on support threads but none are working. I have tried logging out of iCloud, restarting computer, force quitting iCal...when I try to log out of iCloud and Delete on my Mac, System Preferences fails and quits on me. I can't uncheck the Calendars and Reminders box because it's greyed out and spinning. i'm on OS 10.8.5

    Same issue...and not happy about switching to Mac!

  • PB With Java Embedded Server! Pls Help

    I'm trying to install the Java Embedded Server Framework and I did it like this! I extracted setup.class into g:\jes2.0. My jdk is installed in "G:\winnt\jdk\bin".
    I add "g:\jes2.0" to my environment variable based on the help file
    "Make sure your CLASSPATH environment variable contains . (the current directory) at the beginning of the list."
    Is this correct?
    Then when I type this in the Command Prompt, this happens :
    G:\>cd jes2.0
    G:\jes2.0>java setup
    Exception in thread "main" java.lang.NullPointerException
    at java.io.RandomAccessFile.open(Native Method)
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:98)
    at setup.loadOffsetTable(ArchiveClassLoader.java:344)
    at setup.instantiateArchiveReader(ArchiveClassLoader.java:155)
    at setup.<init>(ArchiveClassLoader.java:136)
    at setup.main(ArchiveClassLoader.java:1079)

    [omnigunk],
    May we suggest that you post your question under the topic 'Embedded Server' of "Consumer and Commerce" section. This section is dedicated to discussions on Java Embedded Server and thus you might get the correct audience to assist you with your problem.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developer/support/

  • Portal server question, pls help!

    Hello,
    I have Portal server 5.04 installed in my local PC. It works well until I modified LoginActions.xml file. After I changed LoginActions.xml, I could not login to portal any more and got "The server has experienced an error. Try again, or contact your portal administrator if you continue experiencing problems" error. Then I changed LoginActions.xml file back to original one. However, I still could not login and got the same error.
    I am wondering if there is cache in the server and how can I restart Portal server and kill the cache? I rebooted IIS server, but it didn't help.
    Thanks in advance!

    I got three lines of error code from PTSpy:
    Error 1:
    Location: com.plumtree.uiinfrastructure.activityspace.Redirect.GetSpaceName() Message: Attempting to read from redirect before the space has been set.
    Error 2
    Loction: com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleRequest() Message: Unable to proccess request._System.NullReferenceException_ at com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleRedirects(Redirect myRedirect, RequestData tempData) _ at com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application)
    Error 3:
    Location: com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleError()
    Message: Server error._System.NullReferenceException_ at com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleRedirects(Redirect myRedirect, RequestData tempData) _ at com.plumtree.uiinfrastructure.activityspace.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application)
    I am using UI Source Code.
    Thanks again!

  • ActiveSync Result: Not enough space on server. How can I help resolve this problem? Won't let me send out emails.

    I can't seem to send out emails because I keep getting an error when it's trying to Sync by reading" There is not enough space on the server to sychronize info. Deletoe some old items from your exchange mailbox"
    I dont have any messages in my folders, and I'm trying to send an email. How come this isn't working? Any way to help solve it would be greatly appreciated, thanks!
    Post relates to: Treo 800w (Sprint)

    Do you have any items in the delete items? If not check with your IT and see if any changes to the server was made or what could be causing this problem.
    Post relates to: Palm Z22

  • Transaction takes more database time

    Hi friend,
    Today morning one user excute transaction CK40N shows more time at the database level.It impacts on performance of our production system.Now i want to investigate why this transaction takes more database time .
    I want to compare with last 2 months database time taken  by excuting this transaction (CK40N) in the same date and time.
    i tried but i am unable   to get i checked in st03n,stad.
    can  any body can help me how to find out.
    Best Regards,
    kiranchaitanya.
    mine environment:-
    ECC6.0,
    IBM-AIX-5.3
    ORACLE-10.0.2.0.2

    Dear Kiranchaitanya
    Regardless of the issue I recommend implementing BR*Tools 7.10 and SAP note [Note 1020260 - Delivery of Oracle statistics|https://service.sap.com/sap/support/notes/1020260] if not yet performed.
    Check the following:
    - Oracle statistics are created daily
    - Oracle system statistics are created quarterly (or after specific interventions)
    - Oracle dictionary statistics are created quarterly (or after specific interventions)
    Check your performance details of Oracle (hit cache ratio and so on) to ensure those are correct in DB02 under Performance Overview.
    To check the transaction in ST03N go into expert mode and on the left pane under "workload" you can compare by week for example
    double-click the week of which you want data. Next go the lower left pane, there you need to db-click on "Standard" under Analysis Views --> Transaction Profile.
    Next find or the list so you have your transaction displayed in the list on the right pane.
    Repeat these steps for other weeks and compare the data.
    Can you tell me how many % of the response time is database time (once you have the transaction on the right pane in ST03N with statistical data, go
    to the third tab there called "parts of response time" and check the %DB Time column) ?
    Kind regards
    Tom

  • I need the server run time for weblogic server. Please help

    Hi ^^,
    I am trying to create a web project in Eclipse WTP europa. I do not have the bea weblogic server installed on my desktop. My organization has issues running it locally. I need to first create a project and then create a war and then deploy it on server.
    I am going through the tutorial at the following website:
    http://www.eclipse.org/webtools/community/tutorials/BuildJ2EEWebApp/BuildJ2EEWebApp.html
    It says "To do this tutorial you will need a server runtime that is supported by WTP"
    Also "During web application development, we will need a server runtime environment to test, debug and run our project".
    Hence I need the link where I can download the server runtime for bea weblogic server.
    I have tried to download the tomcat runtime from the following location:
    http://apr.apache.org/download.cgi
    But tomcat is not accepting it as a server runtime, pls help...

    Crossposted over all places:
    [http://forums.sun.com/thread.jspa?threadID=5347690]
    [http://forums.sun.com/thread.jspa?threadID=5348001]
    [http://forums.sun.com/thread.jspa?threadID=5348002]
    Don't crosspost. It's very rude.

  • I installed Oracle database 10g on SuSE Linux Enterprise Server 8 edition.

    I installed Oracle database 10g on SuSE Linux Enterprise Server 8 edition.
    But this massage pop up when I used my browser first time before start database.
    Actually when I clicks on yes to start database.
    The web browser you are using is not optimized for this release of Oracle enterprise manager. It is recommended that you use one of the following:
    * Microsoft Internet Explorer version 5.5, 6.0 or higher
    * Netscape Navigator version 7 and higher
    *Mozilla version 1.3.1 and higher
    Dose any one know hoe to upgrade mozilla or install internet explorer 5.5, 6.0 or higher or SLES 8.
    Regards,
    D

    You can download package for your distribution (for example) from http://www.mozilla.org or directly from SuSE ftp server ftp://ftp.suse.com/pub/suse/i386/9.1/suse/i586
    IE for linux does not exist.

Maybe you are looking for

  • SharePoint 2010 search error on searchadministration.aspx page in Windows Server 2012

    Hi, I am facing the below error on when I click on any of the page under the Search Serve System.ArgumentException: Could not find the sitemap node with URL '/searchadministration.aspx'. at Microsoft.Office.Server.Search.Internal.UI.SearchCentralAdmi

  • How do I re-arrange and delete icons?

    I can't figure this out. Please help me!

  • All queries in workflow 2.5 running on 10g slow .. recently

    Hello, I would really appreciate any help in this regards. I have a table that has 350,000 records in the database. We recently migrated from 9i to 10g. select context from wf_notifications where begin_date > sysdate - 1; While in 9i, the following q

  • Shadow problems

    Sorry if this question has already been asked...I'm having some frustrations with shadows in Pages. I have placed a colored shadow behind a photo and then altered the shadow to appear more like a glow around the photo. However, when I go to preview,

  • Is this pointless???

    hey guys! Im building a page and i have a lide show. I used XML code and the slide show is flash. When i preview it, it works but when I upload it to the site it doesnt work. here is were its located, click on the studio pic for the window with the f