Timezones Help Required..Pls

Hi,
Have clients who may be based in different timzones to the database server. The clients need to do their own ad-hoc SQL queries. Is it possible to set the clients timezone when they connect via a SQL Plus session so that times retrieved are shown not as stored but as their timezone?
Really need help ASAP on this if possible.
Regards

Roy, you can use the ORA_SDTZ environment variable on the client machine to set the session timezone for different clients. The variable will take the following arguments.
ORA_SDTZ=DB_TZ (Will use the database timezone)
ORA_SDTZ=OS_TZ (Will use the clients OS timezone)
ORA_SDTZ=EST (Will use Eastern Standard Time)
ORA_SDTZ=-05:00 (UTC-5 hours)
Refer to the Oracle Globalization Support Guide for your version of the database for more details.
http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96529.pdf

Similar Messages

  • Win 7 Pro Installation on HP Pavillion 15 E077SG - Help required pls

    I like to install Win 7 Pro 64 on the above Laptop, but have noticed that HP does not support that with drivers.
    Does anyone know, if it is generally possible to install Win 7 on this laptop and where to get the drivers from?
    If more info is required pls. let me know.
    Thx in advance

    Yes it is possible but not advised. We can locate Windows 7 drivers for slightly earlier models with the same hardware or by finding the plug and play hardware ID and hunting them down on the internet. Also just installing Windows 7 is not nearly as straightforward as it once was. You have to make adjustments in the BIOS which compromise the security of the system to some extent.
    Rather than switch to Windows 7 I suggest you look into one of the skin programs that will restore a Start button to Windows 8 and will boot into the desktop rather than the "Metro" interface. With those changes Windows 8 is actually very useable, and is more secure and faster than Windows 7.
    http://www.classicshell.net/
    Still, if you must do this we are of course here to help. But I have been there and back and no longer attempt to downgrade Windows 8 machines unless somebody insists.  Some of my colleagues are actually running Windows 8 in my office and I would not alow that unless I was comfortable with it and all our software ran OK on it.

  • Help Required Regarding Bill Estimation

    Hi all,
    I have a Requirment like based on meter read remark i have to bill the consumer,Hence for this bill estimation what exact algorithm spot i need to take. one algorithm is sufficient for this bill generation or more algorithms is required, pls help me to solve this.
    thanks
    sivaram

    Thank you for u r reply KCS.But in this Custom Meter Read Remark Action Algorithm i have only setter methods for setMeterRead(),setMeterReaderRemark() no getter meathods,How can i send output?
    Could you pls clarify my doubt , if present Meter Remark is no read then i dont get any meterRead there i require previous reading+Average Consumption as meterread. And if next bill generation is regular then iwill it take previous reading or this estimated reading.Could you pls explain how can i do this.

  • Help Required ASAP.

    Hi,
    I have a friend of mine his name is Atul Tembe he has a functional expereince of 10 years in sales with L.I.C and he has done SAP SD Certification in the month of November, from Genovate Mumbai he has still not got placed and he is lookin for his first SAP Break. He is a Bcom and a P.G.D.B.A. Would request all of you to kindly help him out please. His e-mail id is [email protected] .If he gets a good break would reward with points do pls help. Pls mark a cc to me too my e-mail id is [email protected]
    Regards
    Atul Keshav

    It is being mentioned over and over in this forum that this is not the place to place job openings or requests for jobs opportunities. This is the forum for knowledge sharing in SAP.
    With the tag line <b>"Help Required ASAP"</b>, you are wasting the time of people who genuinely like to help others who are in need of serious help with SAP Project issues.
    Please desist from posting this kind of things and also irrelevant tag lines.
    Ayub Khan

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Urgent help required for gtalk

    im using gtalk through my gmail account.the reason behind it to use gtalk from gmail for audio and video stuffs with other pc..wen i first started using it,gtalk asked me for add application..and i did..but now wenever i log in to gmail it always ask me the same thing "add audio/ video chat" and everytime i hav to do install.. im not getting why it always ask the same thing wenever i log in?? every time im downloading that dmg file it is occupying the space as well.. pls somebody help?? coz for me gtalk is very important..and especially the voice chat thing...unfortunately i cant use ichat for voice chat..pls reply asap..thanks..

    thanks for tellin me.. actually im pretty new on this stuffs..so dont know where to post my queries?? kindly help me pls..

  • HT201304 Why is it not letting me download free apps on my iPad when ? It's asking for my bank details again and when I type my security number in its says its been declined from a previous purchase? Can u help me pls!

    Why is t not letting me download free apps on my iPad when it's asking for my security number and when I type it in my details on my iCloud account it's saying its been declined and asking for another payment card ? Can some1 help me pls!!

    You will need to contact iTunes support to get that sorted out: http://www.apple.com/support/itunes/contact/

  • I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    I have a problem while typing in my MacBook pro. it is showing different characters when i type. for example: qw`e§r]t[y=   this is how when we type "qwerty|" can anyone help me pls?

    You could just try changing your Input Sources under System Preferences>Language & Text:
    But I kind of doubt that's going to work. It may be a hardware problem or a system problem. If you take it into Apple they might be able to determine which and might advise a reinstallation of System software. I would take it to an Apple Store or an AASP but, first, make sure that you have a backup just in case they suggest a clean install of the system.
    Good luck,
    Clinton

  • Help required - Sales order item is partially delivered but the item grayed

    I have a sales order 123 having say item10 with qty 1, item20 with qty 10 , item 30 qty 12
    Item 1 confirmed qty 1 and delivered qty is 1
    Item 2 confirmed qty 10 and delivered qty 10
    Item 3 confirmed qty 1 and delivered qty is 1
    Now the item3 still has open requirements of 11 to be delivered. But the item is GRAYED OUT already.
    even if I do ATP the qty is not confirming for the remaining 11 pieces.
    Why is that? How to make that item out from GRAY.
    How to confirm the remaining 11 qty for that item.
    Help required as early as possible.
    Appreciate ur help guys
    Radha

    hi Radha, how are you ?
         ---the partial deliveries in master data must have not been mentioned.
         ---the deliveries should be upto target quantity.
         ---check order type, item category and schedule line category.
         ---check unrestricted stock availability.
    thank you
    regards
    Khera.

  • Can anyone help me pls. , I deleted an app on my Ipod Touch, and It was deleted but when I connected my device on my computer and went to iTune "apps" , I saw the app I deleted and it says "install" .  Guys, how will I delete it permanently? Pls help me.

    Can anyone help me pls. , I deleted an app on my Ipod Touch, and It was deleted but when I connected my device on my computer and went to iTunes>"apps" , I still saw the app I deleted and it says "install" .  Guys, how will I delete it permanently? May you Pls help me. Thanks

    Just don't click install

  • HT204291 Im trying to use my apple TV to see a movie from my iphone. Since i select the airplay icon on my phone, i can only hear the voice of the movie on my screen but i cant see the movie, can anybody help me pls? Tks

    Im trying to use my apple TV to see a movie from my iphone. Since i select the airplay icon on my phone, i can only hear the voice of the movie on my screen but i cant see the movie, can anybody help me pls? Tks

    Is this a movie from iTunes? If so is it a rental or one you've purchased?

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

  • Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying "attempt to access invalid address" then "application not respo

    Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying “attempt to access invalid address” then “application not responding” Suggestions how to access would be much appreciated. Tks. Stuart

    What is the size of your hard disk?  PSE 4 is a very old program and I suspect it is not able to access the entire hard disk on your machine.  Just a thought here.

  • Help require with installing Adobe Acrobat onto my Macbook Pro Retina.

    Help require with installing Adobe Acrobat onto my Macbook Pro Retina.
    I have successfully installed all of my creative cloud apps with the exception being acrobat.
    I cannot print from Indesign to PDF.
    I have unistalled, reinstalled and still no Adobe Acrobat.
    I now have to go back to Windows 8 and create the PDF's there.
    Any one know how to get around this issue?
    Thanks in advance
    Kelvin

    OSX has effectively killed the ability to print to pdf, (print to pdf eliminates most of the "Rich features" of current pdf).
    Export from InDesign, always, excpet for the 1% of the time where you know why print to pdf would produce a better result.

Maybe you are looking for

  • Report confirming for Spain

    Hi gurus. I have to costumize my system to can pay throw a bank with the confirmnig way of payment. I need to do it for the spanish bank La Caixa. The problem is that i dont know what is the customizing for that and i dont know how to do the special

  • Swf Loader doesn't display properly

    I have created an entry page for our website that has some text and entry button and a loader that displays a 40 second swf file of images of the Company. The stage is 500 X 600 and the loader is 400X400. and aligned to the top and right of the stage

  • JFrame background is white on Mac, grey on PC

    I have a program which uses a JFrame set to be in full-screen mode, using DisplayMode oldMode = device.getDisplayMode();         this.setSize(new Dimension(oldMode.getWidth(), oldMode.getHeight()));         this.validate();         this.setUndecorate

  • Why can't I download anything from app store or itunes on my iphone, appletv, or mac mini?

    Just says waiting on all my devices. AppleTV, iPhone 4s, and mac mini.

  • SetScrollOffset(0) does not work with Plugin

    I have some JTextField's that are a certain length but can have longer text put into them. Initially when this happened you would only see the right side of the text. Adding the setScrollOffset(0) made the text left aligned when it was displayed. I h