How to find the Time zone of a given country & state

Hi,
Does anyone know how to retrieve the Time zone of a given Country/ State/ City?
If I give 'United States of America' & 'California' as input, i want to get 'Pacific Standard Time' as output.
Regards,
AMRITA..

There is no such built-in functionality. You would need a special database of all cities in US (if you want US only) or in the whole world that would tell you in which time zone a city lies. One US state may use multiple time zones, so you need a database at city (or, possibly, at least county level).
I have no idea if anybody provides such a database, but Oracle certainly does not. Note also that such database would change over time as time zone assignments change from time to time.
-- Sergiusz

Similar Messages

  • How to find the time difference..?

    HI
    How to find the time difference between two times
    for Example
    the difference between '24/10/2005 8:25:00 PM' and '25/10/2005 5:20:00 AM'
    is 8.55
    Kris

    This is a procedure taht do the job
    CREATE OR REPLACE FUNCTION Diff_Time
         LD$Date_Deb IN DATE DEFAULT SYSDATE
         ,LD$Date_Fin IN DATE DEFAULT SYSDATE
         ,LN$JJ       OUT PLS_INTEGER
         ,LN$HH       OUT PLS_INTEGER
         ,LN$MI       OUT PLS_INTEGER
         ,LN$SS       OUT PLS_INTEGER
      ) RETURN NUMBER
    IS
      dif   NUMBER ;
    BEGIN
      IF LD$Date_Fin < LD$Date_Deb THEN
         RETURN ( -1 ) ;
      END IF ;
      SELECT  LD$Date_Fin - LD$Date_Deb INTO dif  FROM dual ;
      SELECT  TRUNC ( LD$Date_Fin - LD$Date_Deb)  INTO LN$JJ  FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 24) -  ( LN$JJ * 24 ) INTO LN$HH FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 1440) - ( (LN$HH * 60) + ( LN$JJ * 1440) ) INTO LN$MI FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 86400) - ( (LN$MI * 60) + (LN$HH * 3600) + ( LN$JJ * 3600 * 24 ) ) INTO LN$SS FROM dual ;
      RETURN( dif ) ;
    END ;
    /You may have to modify it to fit your own requirement.
    Francois

  • How to find the number of fetched lines from select statement

    Hi Experts,
    Can you tell me how to find the number of fetched lines from select statements..
    and one more thing is can you tell me how to check the written select statement or written statement is correct or not????
    Thanks in advance
    santosh

    Hi,
    Look for the system field SY_TABIX. That will contain the number of records which have been put into an internal table through a select statement.
    For ex:
    data: itab type mara occurs 0 with header line.
    Select * from mara into table itab.
    Write: Sy-tabix.
    This will give you the number of entries that has been selected.
    I am not sure what you mean by the second question. If you can let me know what you need then we might have a solution.
    Hope this helps,
    Sudhi
    Message was edited by:
            Sudhindra Chandrashekar

  • How to change the Time Zone in OAM  log & audit files

    Hi All,
    I have OAM installed with all components. By default it is using the UTC Time Zone in the log files and Audit files.
    Could any one please tell me how to change the Time according to the place ?
    It is an urgent plzzz.
    Thanks & Regards,
    Vaasu.

    could you find how to change the tine zone. i am also getting this problem
    thanks

  • How to set the Time Zone for BPM 10 g participant.

    Hi All,
    One BPM 10g(version 10.3.2) application runs on windows server. There are some participants assigned to some role. How to view and adjust the time zone of any existing participant.
    Please advise. It's urgent.
    Thanks,
    Anupam

    It's been a long time, but if I remember correctly - in 10g a participant sets this by logging into the Workspace and clicking "Settings". Believe the time zone is something that the individual end user can select there.
    Dan

  • How to find the time stamp for delata

    Hi Analysts,
    I am loading data from R/3 to InfoProvider(Cube or ODS) with delta update.
    I have seen nodata was loaded to InfoProvider. But data was available at DataSource. then new delta is started. i want to load the last delta again.
    How to see the time stamp of delta?
    How to load that delta data?
    Please help me in this need.
    Hari.

    Dear Srihari,
    if your last delta failed then you can request it again by calling the same delta infopackage again, it will ask for repeat delta (in case last delta has failed), go and run it.
    this way you can have your delta figurs back, and do upload via PSA.
    Hope it helps.

  • How to change the Time Zone of a selected user programically ?

    Hi all,
    I have a specific requirement to develope using Webdynpro. I want to programically change the Time ZOne of a selected  user. Could some one help me . I promise to award points for the solution.
    Thank you in advance
    Regards
    Maruti

    Hi,
    Kindly have a look at the following threads,
    Re: Timezone of current User
    Re: Changing the Time Zone attribute
    Regards,
    Saravanan K

  • How to find the data flow for a given module.

    Hi ,
    Is there a way to find the data flow for a given module(Example AR,AP,......).
    I mean are there any predefined document other than user guides that explains with data flow diagrams(including the tables involved).
    Any help would be greatly appreciated.
    Thanks & Regards,
    Naveen.

    No such public document available from Oracle unless from Oracle Education.
    for some specific operation you can check Process tab inside Oracle Application which shows the data flow as part for workflow process.
    Regards
    Prashant Pathak

  • How to find the time taken for creating execution plan alone

    Hi,
    Is there any way to find out the division between the time taken for query parsing, creating execution plan and actual data retrieval seperately? If I enable 'set timing on' I see the elapsed time which is the total time taken for all these 3.
    Some of my queries are taking long time when I run it first time and so want to know what is it taking long, is it the parsing the query or creating the execution plan? (Since my queries run faster second time, I am assuming the major part was for parsing or creating the plan but not the data retrieval).
    Also, where does Oracle keep the execution plan? Is it in the BUFFER_CACHE? if so, I tried flushing the buffer_cache and restarting the DB as well, but still the query execution seems faster compared to the first time. How long does Oracle keep the execution plan in the cache and is there anyway to increase this cache size?
    Thanks in advance!

    user13169027 wrote:
    Hi,
    Is there any way to find out the division between the time taken for query parsing, creating execution plan and actual data retrieval seperately? If I enable 'set timing on' I see the elapsed time which is the total time taken for all these 3.
    Some of my queries are taking long time when I run it first time and so want to know what is it taking long, is it the parsing the query or creating the execution plan? (Since my queries run faster second time, I am assuming the major part was for parsing or creating the plan but not the data retrieval).
    The ideal way for finding the answer to your questions above, would be to perform a (sql) trace of your query executions. To see the difference in the trace-files, you might want to trace the first execution in one session, and the second execution in another session: so you get two different trace files, which you can then seperately tkprof, and investigate.
    Also, where does Oracle keep the execution plan? Is it in the BUFFER_CACHE? if so, I tried flushing the buffer_cache and restarting the DB as well, but still the query execution seems faster compared to the first time. How long does Oracle keep the execution plan in the cache and is there anyway to increase this cache size?
    Execution plans are held in the shared-pool, not the buffer-cache. As far as I know they will be kept in memory in an LRU way (least recently used), just like db-blocks are in the buffer-pool (I know this is not entirely correct, but for all practical purposes, think of it this way).

  • I have an intel 2006/7 MAC. I can't figure out how to change the time zone. There are no cities to choose from in Mountain time. and when I choose other times..the time zone still does not change. Please help

    My time zone is not adjusting.....I don't see how to change it, in the first place..I'm given a list with no Mountain time inclusive cities.

    Try this to learn about using keys:
    http://www.apple.com/support/macbasics/
    You can also use your PC mouse.
    As for iPhoto, it sounds like you were trying to move files around in the library. That is a bib no-no in Aperture or iPhoto.

  • How to find the time of each call

    I see that the length of a phone call is shown when I end the call. It quickly disappears. I cannot find it anywhere after that. Is the time stored someplace?
    If not, I hope that is part of the coming upgrades.

    Well, I'll be _arn! Left the "D" out again!! Must be trying to type too fast today. Thanks for pointing that out. I'm glad I was able to help you.

  • How to find the t-code of a given ABAP report, if any?

    How to find tcode if any assigned to a report program (ABAP) ?
    Instead of going to SE38, then test - run direct thru F8. An alternate fast way?
    Thanks,

    Hi,
    In order to check T.code assigned to an ABAP program, go to se38 and click on display which will open the ABAP code of the program. Now on this screen press CtrlShiftF5. On the left side of the screen you will find the object associated with the ABAP program. Expand on the object Transactions, which will show you the T.Code associated with the program.
    Hope this helps.
    VK

  • How to find the premise GUID to a given premise number in CRM

    Hi Guys,
    I try to find the PremiseGUID (VerbrSt.GUID) to a given Premise Number (Verbrauchsstellen-Nr. in German), either in  IS-U (6.0) or in CRM (2007).
    I need it as a foreign key in CRM table ISU_POD to connect the PoD with the Premise (field is named u201CFF0047u201D or u201CVerbrSt.GUIDu201D  in table ISU_POD).
    I think it should be a 22 dec. alphanum. field, corresponding to the 10 dec. num. field of the premise number.
    Any suggestions in which table(s) I can find the PremiseGUID?
    Thank you very much.
    Christian

    Hi Anji,
                The view VIAUF_AFVC  is for maintenance orders and operations. I tried giving my functional location on the selection screen and checked for the contents , but it says no entries found. Probably this table will get populated only when a maintenance order is issued.
       I need to find out the equipments at a given functional location . Is there any other way ?
    regards,
    Venkatesh.

  • How to update the time zone for Asuncion, Paraguay.

    It recently changed (03/23/2014) from the daylight saving time to the normal and now the appointments are displayed in the wrong schedule.
    Is there any update available to fix this?

    Hi py-cjgaston,
    Welcome to the Support Communities!
    The article below may be able to help you with this.  Click on the link to see more details and screenshots. 
    International settings - iPhone
    http://help.apple.com/iphone/7/#/iph3dd6171a
    Go to Settings > General > International to set the following:
    The region format (date, time, and telephone number)
    The calendar format
    Also, confirm your date and time settings:
    iOS: Troubleshooting issues with date and time
    http://support.apple.com/kb/ts3920
    Cheers,
    - Judy

  • Where/How to find the condition-types to an given order-position

    Hi,
    need to knwo the table, where the
    kondition-types to an order --> order-position
    are stored!?
    Because I want to analyse, which order (order-positions)
    have a specific kondition-type!
    Thanks for help!

    Hi,
    the condition types are stored in table konv. To get the link between an order and the corresponding condition types, first read the order header (table vbak). The field vbak-knumv is your link to table konv.
    Regards,
    Thomas Langen

Maybe you are looking for