SYSTIMESTAMP and PST again

In a previous question I proposed the following function to determine the current time as represeted in PST:
CREATE OR REPLACE FUNCTION PST_SYSDATE RETURN DATE IS
  th NUMBER;
  tm NUMBER;
  now TIMESTAMP(6) WITH TIME ZONE;
  d  VARCHAR2(200);
BEGIN
  now := SYSTIMESTAMP;
  SELECT
    TO_CHAR(now, 'YYYY-MM-DD HH24:MI:SS'),
    EXTRACT(timezone_hour FROM now) TH,
    EXTRACT(timezone_minute FROM now) TM
  INTO d, th, tm
  FROM DUAL;
  RETURN TO_DATE(d, 'YYYY-MM-DD HH24:MI:SS') - ((th+tm/60+8)/24); 
END PST_SYSDATE;
/ I got some helpful replies which suggested that I use the expression:
CAST( SYSTIMESTAMP AT TIME ZONE TZ_OFFSET('PST') AS DATE)However, my function is not agreeing with this expression:
SQL>  select SYSDATE, PST_SYSDATE,  CAST(SYSTIMESTAMP AT TIME ZONE TZ_OFFSET('PST') AS DATE) PST_DATE from dual;
SYSDATE             PST_SYSDATE         PST_DATE
04/09/2009 11:18:05 04/09/2009 08:18:05 04/09/2009 09:18:06Note that I am in the Central Timezone and we are currently using CDT. 11 AM CDT is 8 AM PST not 9 AM PST.
So is there another expression which can do the same thing as my PST_SYSDATE function?
Thanks!

Ah - this is the problem: when I say 'PST' I mean GMT-8 regardless of the time of year.
I am in the Central time zone and in a region which observes DST. Therefore, right now my offset from GMT is -5, and when reporting times one would normally use CDT to indicate that daylight time is in effect. For instance, my current time is approx. 1:11 PM CDT.
In places where daylight time is not observed (like Ontario), their offset from GMT is -6, and their local time is 12:11 PM CST.
When using the expression AT TIME ZONE TZ_OFFSET('PST'), Oracle seems to be only subtracting two hours when I think it should be subtracting three hours. Perhaps it is a feature. In any case, it is not the behavior I want.
My function does take into account if the database clock uses daylight saving time. Note that SYSTIMESTAMP has a timezone modifier of -5. This is used to determine the time in GMT and then 8 hours is subtracted to obtain the time in PST.
If I run SYSTIMESTAMP during the winter, it will report a timezone offset of -6 (for CST). Again, my function would produce the correct result.
So - I guess the lesson here is that AT TIME ZONE TZ_OFFSET('PST') is not the same as AT TIME ZONE TZ_OFFSET('GMT-8') (if this latter expression were legal in Oracle).
Edited by: user10936714 on Apr 9, 2009 11:24 AM

Similar Messages

  • Canadian BC users, how are you dealing with HST, GST and PST/QST?

    Hi, I'm new here and I've been building my first BC eCommerce site for a client for almost a year. It's a business to business site, dealing with about 5000 SKUs. It's currently in trial mode, and we're about to go live with it. I have a problem with taxes I hoped I'd be able to sort out, but haven't found a solution.
    My client's head office is in Ontario and they sell from there, and also from Quebec, though online sales will be limited from Ontario for now. Ontario, like B.C., where I am, and a number of other provinces have HST. The remaining provinces have GST and PST/QST, except Alberta, which only has GST. My client sells thoughout Canada, and also to the U.S.
    Scenario 1) When one sells from an HST province to a customer in another HST province, the seller must collect and remit the HST for the buyer's province. For example, I work from B.C. with 12% HST, and my client has 13% HST in Ontario. I have to invoice them for my services, collecting and remitting 13% HST.
    Scenario 2) When one sells from any province to a customer in a non-HST province other than Quebec, the seller charges GST and is encouraged, and depending on the province they are selling to, required, to register for that province's PST and collect and remit that tax as well. Otherwise the customer is required to self-assess the PST on the purchase.
    Scenario 3) When one sells from any province to a customer in Quebec, they must apply the GST to the purchase, and then apply the QST (Quebec Sales Tax) to that total. Again, out of province sellers are expected to collect and remit the QST.
    Scenario 1 is fine. Currently I've set up all HST provinces with their corresponding rate.
    Scenario 2 is problematic from a legal taxation standpoint. I've set up all GST+PST provinces and Quebec with 5% GST only. This will not be acceptable to my client as their sales volumes are quite high and they have to remit other province's PST.
    Scenario 3 seems impossible on BC, but will become a lesser problem until January 2013, when Quebec changes to Scenario 2 (i.e. the QST will no longer piggy-back the GST but will be raised so there is no change to the total tax)
    Further, most businesses will want to see the GST and PST appear separately on the invoice, not calculated together as seems to be the case now.
    Has anyone managed to set up GST and PST/QST in the system, so both taxes appear in the cart/checkout process, and separately on the invoice?
    Thanks for any assistance!

    This might require the discussion to move to the advanced code development section, but I'll post it here first anyway.
    So after about 2 weeks, I'm not sure there's a solution to this. I've tried a variety of JavaScript and JQuery approaches to do a show/hide of the appropriate tag based on the province chosen in the {tag_shippingoptions} drop down. The cleanest way was with JQuery and I got it to work outside of Business Catalyst, but not when implemented in my cart.
    The problems seems to be threefold.
    1. The onchange of the "shipping state" dropdown calls ApplyTaxRate() in an unmodifiable back-end .js file. If I try to have local JS or JQ work on the same function call to do my show/hide, not only does the show/hide not work, but it breaks communication with the back-end .js so no taxes get calculated/updated.
    2. If I create my own shipping menus calling the same functions (acutally just copy/pasted the inspected HTML), the taxes update OK, but the menu selections don't persist, AND if I then inject my show/hide, the show/hide doesn't work and all the functionality of the ApplyTaxRate function breaks.
    3. If I try to call an additional function for the show/hide, from the onchange of my own menu, the ApplyTaxRate function works, but the additional fucntion doesn't work as it does outside of BC.
    Here is my partial code. Any help?
    <div class="shippingStateDiv"><span id="shippingStateSpan">Destination State<br />
                </span><select onchange="ApplyTaxRate(this.value,4638834,1,1,332304);taxDisplay(this.value);" class="shippingDropDown" id="shippingState" name="shippingState">
                <option value="-1">Please Select</option>
                <option value="147264">AB</option>
                <option value="130632">BC</option>
                <option value="147266">MB</option>
                <option value="130633">NB</option>
                <option value="130634">NL</option>
                <option value="130635">NS</option>
                <option value="147269">NT</option>
                <option value="147270">NU</option>
                <option value="130631">ON</option>
                <option value="147268">PE</option>
                <option value="147267">QC</option>
                <option value="147265">SK</option>
                <option value="147271">YT</option>
                </select></div>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
            <script>
    function taxDisplay(id) {
        var mySel = $("#shippingOptions").children("option:selected").text().replace(/\s/g,"")
        $('.answers').hide() 
        $('.answer'+mySel).show()       
    </script>
    <td><strong>
                <div class="answerPleaseSelect answers" style="display: none;">Choose Dest. State</div>
                <div class="answerAB answers" style="display: none;">GST: {tag_invoicetotaltaxamount}</div>
                <div class="answerBC answers" style="display: none;">HST: {tag_invoicetotaltaxamount}</div>
                <div class="answerMB answers" style="display: none;">{tag_invoicetotaltaxamount,MB,7,GST,PST}</div>
                <div class="answerNB answers" style="display: none;">HST: {tag_invoicetotaltaxamount}</div>
                <div class="answerNL answers" style="display: none;">HST: {tag_invoicetotaltaxamount}</div>
                <div class="answerNS answers" style="display: none;">HST: {tag_invoicetotaltaxamount}</div>
                <div class="answerNT answers" style="display: none;">GST: {tag_invoicetotaltaxamount}</div>
                <div class="answerNU answers" style="display: none;">GST: {tag_invoicetotaltaxamount}</div>
                <div class="answerON answers" style="display: none;">HST: {tag_invoicetotaltaxamount}</div>
                <div class="answerPE answers" style="display: none;">{tag_invoicetotaltaxamount,PE,10.5,GST,PST}</div>
                <div class="answerQC answers" style="display: none;">{tag_invoicetotaltaxamount,QC,9.975,GST,QST}</div>
                <div class="answerSK answers" style="display: none;">{tag_invoicetotaltaxamount,SK,5,GST,PST}</div>
                <div class="answerYT answers" style="display: none;">GST: {tag_invoicetotaltaxamount}</div>
                </strong></td>

  • Mail applications is blank when I open it, then it closes and opens again by itself, keeping blank

    In my Ipad, when I open Mail application it is blank. It stays like this for a few seconds, then it closes and open again by itself.  Keeping all time blank.

    Have you tried to force quit the app. Double tap the home button. Scroll sideways if needed to bring the mail app preview up on the screen. Flick that preview up and off the screen to close the app. Tap on the home page preview to exit the mode. Then try your mail again.
    Other things people have needed to do, especially after an update is to go into the settings, mail contacts and calendars, delete their mail account (it only deletes it off the iPad not out of existence) then exit out, go back i and re-enter the info.

  • I am on windows 7 and I upgraded to 10.0.2 and now it will not open. I have removed firefox completely and uploaded it again and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version and once again nothing.

    I am on windows 7 and I upgraded to the newest verison of firefox and now it will not open. I have removed firefox completely and uploaded it again and that did not work. I then made sure it could get through my firewall and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version hoping that would do it and once again nothing. It will not open at all. Please help - is there a live chat or a number to talk to someone at Firefox?

    I think when uninstalling you may also have to choose (tick) to delete the preferences and other personal data like the bookmarks, stored passwords etc. to erase completely. If you are installing afresh, please try right-clicking on the file and '''Run as administrator''' to install. And when uninstalling, please also make sure choose to delete all data and also manually delete any '''Mozilla''', '''Mozilla Firefox''' or '''Firefox''' from %appdata%, %localappdata% and %programfiles%. You can open a location by typing for eg. %appdata% in the '''Run''' box (Windows key + R). You may also have to check the '''VirtualStore''' folder in %localappdata%. Files in the VirtualStore can be problematic. I think a clean installation may help.
    [https://www.mozilla.org/en-US/firefox/new/ Firefox]
    [http://kb.mozillazine.org/Installation_directory Installation Folder]
    [http://kb.mozillazine.org/Profile_folder Profile Folder]
    Please note that using system restore would usually damage the Firefox installation.

  • Is there a way to create an e-mail template to send over and over again to different people?

    Can I create a template and use it over and over again? I found where I was able to save an e-mail as a template but I cannot find where to access it to be able to send it.

    Read this.
    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Using_Templates

  • Getting error while creating a new web app saying "The password supplied with the username domainname\username was not correct. Verify that it was entered correctly and try again"

    Hi ,
    I am trying to create a new web app using Central Administration in Sharepoint 2010 and getting an error "The password supplied with the username  was not correct. Verify that it was entered correctly and try again".
    I tried running this command also "stsadm -o updatefarmcredentials -userlogin <domain\username> -password <newpassword>" but when it got executed it showed me "Access Denied".
    What should i do ??
    Thanks in advance.
    Regards, Anurag

    HI,
    right click on command icon and click run as administrator then use above stsadm commend to update credential. If still you face same issue then try with powershell as mention in below link: (make sure that you open sharepoint powershell as run as administrator)
    http://smartrider.wordpress.com/2010/07/15/powershell-script-to-create-web-application-and-site-collection-in-sharepoint-2010/
    let us know your result
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)

    We are getting the following error "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)" and a gray screen appears (Image not viewable) with multiple users. We are using Adobe Reader XI (11.0.05) and (11.0.06). The current workaround is to log off the website and log back in. Once the user logs back in, the pdf will appear. However it occurs anywhere from 2-8 times in a day. Anyone else having this issue or know of another workaround? Any suggestion with how to fix? Please help!!

    Hi Valerie,
    Please let me know the version of Adobe Acrobat/Reader & operating system installed on your computer?
    Also, try this:-
    Launch Adobe Reader/Acrobat.
    From the menu, choose Edit -> preferences -> General
    Uncheck the option for "Enable Protected Mode at startup"
    Restart the Adobe Reader and web browser.
    Regards,
    Aadesh

  • Cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    Not sure about yahoo, but for gmail, I done the following:
    Set up using Exchange on iPhone, it'll keep prompting for password.  On PC use captcha option, log in to gmail account from PC after completingg captcha option, enter password on iPhone.
    See how that goes for gmail, let us know.
    Hopefully someone will have fix for yahoo.

  • Couldn't find root user.  Sleeping and trying again.

    Last week I installed an MSO 2004 update on my G5 iMac running 10.4.11.
    Then I attempted to repair permissions. The repair permissions process
    halted at about half of the progress bar. I let it cook for about two
    hours without success, then tried to force quit Disk Utility. I
    couldn't force quit it, so I very reluctantly turned off the Mac;
    something I've rarely ever done. I waited five minutes and then turned
    the Mac back on. The startup sequence progressed to the point where the
    system displays the gray apple on the gray background, and the circular
    progress indicator or gear begins turning. I let it turn for one hour
    and then powered off the iMac, then powered it back up with the same
    results.
    I powered it off again and then commenced a Safe Boot. Same results as
    before.
    I powered it off again and then started it in Single User Mode. No
    problem. I ran /sbin/fsck -fy. No problem.
    I typed "reboot" and it rebooted. This time I start it in Verbose mode.
    After the preliminary startup code, the system began repeating the same
    message lines:
    dsFindDirNodes returned -14071, count = 0 count = 2147483646
    Couldn't find root user. Sleeping and trying again.
    A Google search produced very few results. I don't have a backup
    because I inherited this iMac from my 75 year old semi retired father
    who wanted a 20-inch Intel iMac instead. I just goof around with the G5
    iMac from time to time, and am considering giving it to my little niece and
    nephews. It worked great for about a month. I have customized my
    user account and the accounts for the little ones, so I really don't
    want to wipe the hard drive and reinstall Tiger again from scratch.
    I booted from the suspect internal hard drive into single user mode.
    I ran /sbin/fsck -fy on the internal hard drive.
    All tests passed.
    I ran fsck_hfs on the internal hard drive.
    It returned a message that stated that I needed
    to add additional information.
    I ran fsck_hfs with several switches enabled, but
    it continued to return this message.
    I performed the procedures in Apple's article 107210
    "Mac OS X, Mac OS X Server: How to Replace the NetInfo
    Database (Restoring from defaults).
    This did not solve the problem.
    I booted this computer from my external Firewire hard drive that I use
    to create nightly backups on my G4 iMac using SuperDuper!.
    I ran Disk Utility Repair Disk Permissions on the
    internal hard drive.
    There were no permissions errors.
    I ran Disk Utility Repair Disk.
    All tests passed.
    I ran the TechTool Pro Suites --> Advanced Tests on
    the internal hard drive.
    All tests passed except for "Startup File" which it
    listed as " <Not Present>".
    The description of this test is:
    "This test checks the Startup file. The parameters
    within this file contain the information used by
    the computer ROM to determine what program will
    boot the computer as well as other system-specific
    aspects."
    I ran the TechTool Pro Performance --> Maintenance
    routine on the internal hard drive.
    It completed the maintenance successfully.
    I ran DiskWarrior on the internal hard drive.
    It reported no directory errors, but I replaced it
    anyway.
    While booted from the external Firewire hard drive, I viewed what
    appears to be the proper compliment of folders on the internal hard
    drive. Of course, I didn't examine and verify every subfolder in the
    hierarchy, however, examining the Applications, Library, System, and
    Users folders two deep seemed to indicate that everything was there.
    I booted this computer from my Tiger installation disk. I selected
    Utilities --> Reset Password... (I think.). It listed only the
    Administrator account (root) on the internal hard drive. It did not
    list the other three accounts that I created on this hard drive, even
    all three respective folders are present in the Users folder. However,
    it did list all four accounts on the still attached external Firewire
    hard drive.
    By every measure, this drive and its directory are sound. I am
    concerned that TechTool Pro reported that the Startup File is Not
    Present. Beyond the meaning that the words suggest, I'm not sure what
    this really means. I checked the Micromat site and found the following:
    The Startup File has been defined but not yet
    implemented by Apple.
    What does the message signify:
    dsFindDirNodes returned -14071, count = 0 count = 2147483646
    Couldn't find root user. Sleeping and trying again.
    Can I effect a simple repair?
    Thank you.

    I think besides a reinstall, only DiskWarrior from Alsoft...
    http://www.alsoft.com/DiskWarrior/
    stands a chance of fixing it.

  • I keep getting an error message when trying to log on to FaceTime and iMessage on my iPad mini with wifi...could not sign in. Please check your network connection and try again. Help!

    I keep getting an error message when trying to log on to FaceTime and iMessage on my iPad mini with wifi...Could not sign in. Please check your network connection and try again. Help!

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • I have an iPad 2 and all of a sudden I have no sound in game apps. I have usual volume in videos and YouTube, I do get volume for games if I plug in headphones. I have switched to screen lock off and on again and I have also done a reset twice.....help :)

    I have an ipad2 and all of a sudden I have stopped getting sound in my game apps. I get normal sound on YouTube and I player and downloaded DVDs. If I plug headphones in then I can get sounds for the games. I have switched the lock screen button off and on again and done a reset twice, can anyone help me with this?

    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
     Cheers, Tom

  • Unable to reach Adobe servers, Please check firewall settings and try again

    I have been a creative cloud customer since it started and I've never experienced such buggy software as the app manager. The customer experience is just shocking and I wish Adobe would just offer direct downloads for the software we need rather than use the app manager.
    I'm currently trying to install the latest versions of the programs but the app manager keeps showing "Unable to reach Adobe servers, Please check firewall settings and try again in a few minutes".
    I do not have any firewalls on my network.
    I've uninstalled all previous versions of the applications.
    The app manager will download a few % and then the message appears again. I click retry and it downloads another few % before showing the message again. I keep doing this until the program is fully downloaded and installed which take hours. Because I am able to eventually download the app, the error should be anything to do with my setup or internet connection as I've never had this issue before when installing adobe products.
    Is there a way we can bypass the app manager and install the programs directly? This is getting very annoying and I just need my apps to install without wasting days clicking the retry button.

    I'm having the exact same problem. Photoshop is stuck at 0%.
    Have the links for direct download changed? When I went to  http://prodesigntools.com/adobe-cc-direct-download-links.htmland then scrolled down the page to:
    Photoshop CC 2014 (64-bit)
    740 MB
    File 2
    801 MB
    File 1
    and then clicked on File 1 and File 2, I reached a page that says "You don't have permission to access "http://trials3.adobe.com/AdobeProducts/PHSP/15/win64/Photoshop_15_LS20_win64.7z?" on this server."

  • Is anyone else having trouble setting up messages with the new mountain lion software? I keep getting a notification that i cant sign in and it is saying, check network connection and try again, but i have full wifi bars, thanks, Justin

    is anyone else having trouble setting up messages with the new mountain lion software? I keep getting a notification that i cant sign in and it is saying, check network connection and try again, but i have full wifi bars, thanks, Justin

    Install this to get X11 functionality back in 10.8
    http://xquartz.macosforge.org/landing/
    Worked great for me and others.
    Jerry

  • When I publish my site on one specific page where i've added {tag_pagecontent} I get the error:Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.

    When I publish my site on one specific page where I've added {tag_pagecontent} I get the error:
    'Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.'
    I'm trying to get a blog module going, I've even deleted the html insert bog with the tag in and re-published which then I don't get the error but as a result no blog either. But then I add the tag in again and publish the error comes back. I've used the dev console and it says that my musicians sample.css is out of date but why is it only out of date when I add in html to my muse site?
    HELP!!!! I've searched other threads and to no avail I'm publishing so no direct ftp going on. the only thing I changed in business catalyst was the module stylesheet in order to style the blog. I've tried uploading and replacing all files nothing seems to work. the site is here:
    http://www.musicstudentsforhire.co.uk/musicians-samples.html
    It's only this page as it has the blog on. Also I've noticed when I've re-published occasionally it will show the mobile version on my desktop and not the desktop version??? no idea why that's happening so I've had to turn that off. any explanation on why that is happening would also be much appreciated.

    I haven't received an answer as of yet, I'll post t on here when I do. I de-activated the mobile site because it's my clients site so he needs it to be operational during the day. I hope someone gives me an answer soon.

  • HP Photosmart 7515 wireless printer reverts to Offline, won't print until turned off and on again.

    All of the software is installed and it worked without any problem.  The problem appears to occur after the computer has gone into standby.  The only way I can get anything to print is to turn it off the printer and then turn it back on again.  The troubleshooter simply tells me that the printer appears to be off (which it isn't) and tells me to turn it on.  Is there any way to bring an offline printer back online without either rebooting the whole system or turning the printer off and on again? Needless to say, this is very annoying. I have never had this problem with any other printer.

    CampValdez, did you ever solve your problem?  I'm having a similar problem with a Photosmart 7525.  I just returned a 7510 because of the same problem and now the 7525 won't work.  I've spent the better part of 3 days on the phone with HP tech support to no avail and I'm ready to take the 7525 back.  The software and printer have been reinstalled many times.  I've changed the printer IP to a static IP.  I've removed my Norton security software, I've tried to set it up on another computer, I've changed the channel on the router to channel 11 and nothing works for more than 10 minutes.  The blue light on the printer indicating that it is on the network always is steady blue.  I can get it to work by pressing the wireless symbol and then turning off the wireless and then turning it back on.  When it's working I can access the printer from my web browser with the printer's IP.  It seems once it goes to sleep, I cannot access the printer from the browser.  Touching the screen and waking up the printer does not restore the communication between the computer and the printer.  Since this problem persists with two printers and two different computers, I'm suspecting a router setting but I'm stumped.   If you find your solution, I bet it's the same problem I'm having.   It's unbelieveable that HP tech support seems clueless.  A search shows this is not an uncommon problem. 

Maybe you are looking for

  • Personalizing SUN Portal 6.2

    I am having limited sucess personalizing Sun Portal Server. I haven't seen a really good step by step guide on how to accomplish the following task. I have multiple roles configured in the console. When a person logs on with one role I want them to b

  • Problem with IView Callable in GP

    Hi Guys, I encounter a similar problem to the one in thread Problem to execute a Callable Object in UWL iView doesn't work in my GP process at all. I always get the error message in GP Runtime when it comes to an iView callable: “The portal page buil

  • Signature Password Recovery

    I created a signature for signing PDFs, but forgot my signature. I can't figure out how to either create a new signature or recover my password for the current one. Any suggestions? Thank you!

  • Transfering songs from ipod to a new itunes library

    my dad accidently deleted my itunes library and i dont know how to transfer the songs from my ipod to a new library without deleting the songs off my ipod. how do you transfer the songs from your ipod to the itunes library with the songs that were no

  • Search-mailbox phrase

    Hello  I'm running Exchange 2013 sp1. I need to search for  emails that contain a specific phrase, delete the emails and log the results. I have come up with two different commands, but not sure which one is better to use. #1 Search-Mailbox  -SearchD