Help w/  "where TRUNC(date_field)"

I'm a "newbie" to pl/sql - Oracle and I'm hoping someone can help me.
I need to extract records based on a given date range and I've put together the following query:
SELECT *
FROM abc.table
WHERE TRUNC(ld_dt) = TO_DATE('11-SEP-10','DD-MON-YY')
When I run this thru SQLplus or ODI any date fields output as 04/11/2010 12:00:00 (or 00:00:00) - I'm loosing the time portion of the field... I've narrowed it down to the WHERE TRUNC(). This query runs correctly in SQLplus & ODI if I remove the WHERE clause and format any date columns as TO_CHAR(ld_dt,'MM-DD-RR HH:MI:SS')... Its been a bit mind-boggling because it works in TOAD but I need it to work with SQLplus or ODI.
NLS_DATE_FORMAT: DD-MON-RR
NLS_DATE_LANGUAGE: AMERICAN
We’re running ODI 10.1.3.6.2 – 10g R2 Database
Thanks !

Hi,
I am not sure what you are doing. I cannot reproduce your problem.
Please post some create table and insert statement, test cases of your queries that are reproducible.
Try it in sqlplus and copy paste your output here.
SQL> alter session set nls_date_format='MM/DD/YYYY HH24:MI:SS';
Session altered.
SQL>
SQL> select * from test;
DT                  LD_DT
04/04/2011 16:54:45 04/04/2011 16:53:45
04/04/2011 16:54:15 04/04/2011 16:53:45
04/04/2011 16:54:05 04/04/2011 16:53:45
04/04/2011 16:54:00 04/04/2011 16:53:45
SQL> select * from test where trunc(ld_dt)=trunc(sysdate);
DT                  LD_DT
04/04/2011 16:54:45 04/04/2011 16:53:45
04/04/2011 16:54:15 04/04/2011 16:53:45
04/04/2011 16:54:05 04/04/2011 16:53:45
04/04/2011 16:54:00 04/04/2011 16:53:45
SQL>
SQL> SELECT * FROM test WHERE TRUNC(ld_dt)=TO_DATE('04-APR-11','DD-MON-YY');
DT                  LD_DT
04/04/2011 16:54:45 04/04/2011 16:53:45
04/04/2011 16:54:15 04/04/2011 16:53:45
04/04/2011 16:54:05 04/04/2011 16:53:45
04/04/2011 16:54:00 04/04/2011 16:53:45
SQL>

Similar Messages

  • On my MacBook with Lion Safari does start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library did not help. Where can I find and remove all components (LastSession ...)?

    How can I reset Safari with all components? On my MacBook with Lion, Safari does not start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library does not help. Where can I find and remove all components as LastSession and TopSites?

    The only way to reinstall Safari on a Mac running v10.7 Lion is to restore OS X using OS X Recovery
    Instead of restoring OS X in order to reinstall Safari, try troubleshooting extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.
    If it's not an extension or plug-in issue, delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • What is the use of search helps? where can we creat it?

    use of search helps and where can we create it?

    Hi narendra
    LOCK OBJEC TS
    Lock objects are use in SAP to avoid the inconsistancy at the time of data is being insert/change into database.
    SAP Provide three type of Lock objects.
    - Read Lock(Shared Locked)
    protects read access to an object. The read lock allows other transactions read access but not write access to
    the locked area of the table
    - Write Lock(exclusive lock)
    protects write access to an object. The write lock allows other transactions neither read nor write access to
    the locked area of the table.
    - Enhanced write lock (exclusive lock without cumulating)
    works like a write lock except that the enhanced write lock also protects from further accesses from the
    same transaction.
    You can create a lock on a object of SAP thorugh transaction SE11 and enter any meaningful name start with EZ Example EZTEST_LOCK.
    Use: you can see in almost all transaction when you are open an object in Change mode SAP could not allow to any other user to open the same object in change mode.
    Example: in HR when we are enter a personal number in master data maintainance screen SAP can't allow to any other user to use same personal number for changes.
    Technicaly:
    When you create a lock object System automatically creat two function module.
    1. ENQUEUE_<Lockobject name>. to insert the object in a queue.
    2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.
    You have to use these function module in your program.
    check this link for example.
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    tables:vbak.
    call function 'ENQUEUE_EZLOCK3'
    exporting
    mode_vbak = 'E'
    mandt = sy-mandt
    vbeln = vbak-vbeln
    X_VBELN = ' '
    _SCOPE = '2'
    _WAIT = ' '
    _COLLECT = ' '
    EXCEPTIONS
    FOREIGN_LOCK = 1
    SYSTEM_FAILURE = 2
    OTHERS = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    SEARCH HELPS
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
    pls go through this for search help creation
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
    Search Help Exits:
    Re: dynamic values for search help
    Re: Dynamic search  help
    Match code objects are same as Search helps, where they are used in Previous versions of SAP.
    Now in the newer versions Search helps are replaced them.
    Standard Texts are the texts which are maintained in SO10 Tcode
    Every SAP application document is maintained with HEADER and ITEM texts
    and these texts are fetched from SAP using the READ_TEXT Function module
    by passing TEXT ID, TEXTNAME,TEXTOBJECT and LANGUAGE fields
    You can double click on any long text in the systesm and you can see these paramters in the text editor.
    Text Modules are created and used in Smartforms.
    check these links
    http://www.sap-img.com/abap/attach-a-search-help-to-the-screen-field.htm
    http://help.sap.com/saphelp_webas620/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/97/24a23fa34ffb47e10000000a114084/content.htm
    Reward points if useful
    Regards
    Pavan

  • HT1338 Need help locating where and how to update Mac OS-X 10.6.5 to the latest Mountain Lion Software...thanx John

    I need help locating where and how to update Mac OS-X to Mountain Lion.....Thanx....Jay

    First update your 10.6 version to 10.6.8 from the software update under the Apple Menu.
    This will add direct access to the Mac App store via a new application.
    Now launch the App Store from your Applications folder - Its the new icon a letter A formed from a ruler pencil and pen on a blue circle !
    Once launched you need to add your iTunes account details or create an account add payment details etc...
    Sign in purchase download and follow install processes to upgrade to 10.8 Mountain Lion.
    OH and to be safe BEFORE you install backup your current system to an external drive !

  • Rewrite condition WHERE TRUNC (data_operac) = to_date(:1, 'YYYY-MM-DD')

    Hi,
    I've got query with condition
    WHERE TRUNC (data_operac) >= to_date(:1, 'YYYY-MM-DD') there is index b-tree on data_operac but cant be used (because of trunc) .
    Is there any way I can rewrite that condition to make index usage possible ?
    Regards.
    Greg

    Like this?
    WHERE data_operac >= to_date(:1, 'YYYY-MM-DD')because following is always true
    data_operac >= TRUNC (data_operac)

  • HELP! Where should I put my codecs and plug-ins!?

    I do a bit of amateur editing, and I have a bunch of codecs and plug-ins. And a few months ago, I realized I MIGHT have been putting them in the wrong folder!
    Macintosh HD / Library / Quicktime
    So... I "copied all" and I pasted into the OTHER folder that seemed to have some codecs and plug-ins:
    Macintosh HD / System / Library / Quicktime
    Then, I "copied all" from THAT folder into the other folder, not overwriting duplicates.
    I DO remember that there were some in BOTH folders before I started adding...
    HELP! Where should they all go?
    tia,
    e

    Um, mpeg2, Divx, etc... flip and perian are fine, but don't come anywhere NEAR allowing you to play the totality of formats out there.
    However, I guess my question should have been, which ones are "Apples" and which ones aren't... I'd love to NOT have duplicates in both folders.
    Is there anywhere that lists the "default" Apple Quicktime Pro codecs and plug-ins that should be in that "apple only" folder?
    e

  • I bought a second license and I can't find the serial number, I have tried to contact adobe like 4 times and got no luck. Any help on where to find it? is it the same serial as the first copy we have?

    I bought a second license and I can't find the serial number, I have tried to contact adobe like 4 times and got no luck. Any help on where to find it? is it the same serial as the first copy we have?

    Hello,
    This order no is for subscription of Adobe Captivate 8. In order to install subscription you need not to enter any serial key .During the installation it will prompt you to enter your Adobe Id and it will validate your subscription after validating your Adobe Id from the server. I mean you have to sign in with your Adobe Id during the installation which you have used at the time of purchasing the subscription.
    So for installation and activation you dont need any serial key . Just sign in and it will automatically activate your subscription .
    For more information on subscription please click on the link below.
    http://www.adobe.com/in/products/captivate/faq.html#subscription
    Regards,
    Rajeev.

  • Pls help me, where can i find the place to download JDK1.2 ?

    pls help me, where can i find the place to download JDK1.2 ?
    i think the download site has been moved to elsewhere...
    i have searched for the site but it is coming as japanese site.
    kindly guide me to locate the download page

    Go to the URL:
    http://java.sun.com/products
    There you shall find a drop-down combobox listing all the products. Select the JDK1.2/JDK1.3 and proceed.
    Ironluca :D

  • IPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

  • Oh, help! Where is the "my stuff" link??????

    The new site design is incomprehensible.  when I used to open the forums and sign in I'd get a link to "my stuff" -- all my old posts or posts I'd been following.  No longer there!!!!  Please help. Where is that link. Where is that stuff????

    @Peter – true. I was literally swamped in messages at my Inbox. Now I tick "Not follow" everywhere I can ;-)
    I just don't know where I can follow a specific thread without following any other threads in the same forum AND getting mails like before. Just the ones that I posted to. And not a crammed Inbox for EVERY thread I just looked into and did not post to.
    Hm. Let's see how this will develop…
    Btw. Following YOU personally is a bit scary. Too much mails are generated ;-)
    Uwe

  • Hi i am from india and i am using iphone 5 but i have problem with charging last 20 % suddenly my phone switched off every day and som heating when i am using internate pls help me where i can check whether my phone waranty is valid on expire

    hi i am from india and i am using iphone 5 but i have problem with charging last 20 % suddenly my phone switched off every day and som heating when i am using internate pls help me where i can check whether my phone waranty is valid on expire

    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • HELP! Where do I get the software development kit 1.3 for windows 98?

    HELP! Where do I get the software development kit 1.3 for windows 98? I got this java book and it tells me "http://java.sun.com". I guess it expects me to find it myself. I aint no good at finding stuff on the internet. Can someone give me like the exact address to download it or something? (Also, it wants me to get the java software development kit installation instructions and documentation... I have no idea what all that stuff is, or where to find it. I'm completely lost... Can someone tell me where to get that stuff?)

    Actually, the latest version is now jsdk 1.4.1
    From java.sun.com, you can click on "Downloads" at the left
    Then, you click on "java 2 platform, standard edition"
    Then, you can click on "J2SE 1.4.1"
    This leads to a page with the URL http://java.sun.com/j2se/1.4.1/download.html (you could use this URL wight now, in fact)
    That page has a table.. look for the row entitled "Windows (all languages, including English)", and in the column headed "SDK", you'll see a link "DOWNLOAD". Click on it (make sure you click on the right one!)
    You will then have to read the terms and conditions, and at the bottom, click the button labeled "ACCEPT"
    This will show a page with a link "Download j2sdk-1_4_1-windows-i586.exe"
    You click on that link, and the download will start. The file you are downloading is the installer for the J2sdk version 1.4.1
    Hope that helps!!
    Once you have downloaded it, you'll need to set it up. That's not very difficult, but if you need advice on that, I'll be watching this thread.
    Yours, Mike H...

  • When I updated my phone to be able to get iCloud it restored my phone to factory settings and I've lost everything. Please help! Where did it all go and how do I get it back?

    When I updated my phone to be able to get iCloud it restored my phone to factory settings and I've lost everything. Please help! Where did it all go and how do I get it back?

    I have just done exactly the same thing! How frustrating!!!

  • Help! Where should I post this question, so I can get it answer?

    I'm with the greastest Apple communuty on earth, but know ones responds to my question, except once. Is it worded incorrectly or difficult to understand. I been at for 4-5 months. Any help is well appreciated.
    see below for my past adventures:
    Can you help? I have pot this problem on the discussion board times 3 with no response except this time. See below.
    down;oading podcast
    Posted: Jun 23, 2007 8:04 AM

    Reply

    Email
    Can Itune get too full whereas it will stop downloading podcast automatically or manually? I just exported my 2006 " bibleonradio" podcast to a folder on my harddrive. Immediately itune started downloading podast from that site. But for the last 4-5 months it would hit and miss with downloading and the last 2 weeks it quit altogether.I would go to the site and download the podcast to a selected itune folder as a mp3 for listening.
    Do I need to do some type of maintenance to prevent this from occurring? The site is simple reading of bible scriptures. Could itunes get confuse with 2006 podcasts, thinking I already have the podcast, even though the release date for the new podast are mark 2007?
    imacG5 , super drive   Mac OS X (10.4.7)  

    Diane Wordsmith


    Posts: 266
    From: Nashville
    Registered: Feb 20, 2007
    Re: down;oading podcast
    Posted: Jun 24, 2007 9:23 AM    in response to: Austin Smith2

    Reply

    Email
    Look at the Podcasts in your iTunes Library. Do you see a little exclamation point to the left of the listing? If so, click on that.
    iBook G4 (& an iMac running OS 9)   Mac OS X (10.3.9)   iPod Video

    Austin Smith2

    Posts: 114
    Registered: Oct 31, 2001
    Re: down;oading podcast
    Posted: Jun 25, 2007 3:35 PM    in response to: Diane Wordsmith

    Reply

    Email
    Thank you for your reply:
    I have that symbol on some of my other podacst sites, but not this one because I listen to it daily, sometimes 2-3 times a day. Could the exclamation symbol for the othe sites, which goes away if I start listening to them again affect this podcast? but these site with the exclamation also hit and miss when itunes downloads, as much as 2-3 weeks once I start it back up.
    imacG5 , super drive   Mac OS X (10.4.7)  

    Diane Wordsmith


    Posts: 266
    From: Nashville
    Registered: Feb 20, 2007
    Re: down;oading podcast
    Posted: Jun 25, 2007 3:49 PM    in response to: Austin Smith2

    Reply

    Email
    What's happened to me is that some Podcasts I subscribe to I might get lazy about listening to. Several of the Podcasts will pile up, and after a while iTunes will stop updating if you haven't listened to them. When I click on that little exclamation point in a circle, it will tell me that iTunes hasn't been updating that podcast because I haven't listened to it in a while. I think it asks if you want to continue (or maybe you have to click on subscribe again to get them started back).
    If you are listening to this particular podcast every day, that shouldn't be a problem. And not listening to the other ones shouldn't affect this one. Sorry I can't be of more help, but I'm not sure what is causing it.
    You might go to iTunes> Preferences and click on the tab for Podcasts and see what your settings are there.
    Diane Wordsmith
    iBook G4 (& an iMac running OS 9)   Mac OS X (10.3.9)   iPod Video

    Austin Smith2

    Posts: 114
    Registered: Oct 31, 2001
    Re: down;oading podcast
    Posted: Jun 25, 2007 8:07 PM    in response to: Diane Wordsmith

    Reply

    Email
    Thank you again for your reply.
    My settings in preference for podcast are::
    check for new episodes-every hour
    when new episodes are available-download all
    keep-all episodes
    does anyone else have this problem or any idea how to fix it?
    2nd post

    Converting
    Posted: Jun 13, 2007 8:49 AM

    Reply

    Email
    Trying to come up with an alternative to incomplete podcasts downloads from a website. What I'm trying to do is convert some the missing podcasts file from a website that itune don't download-reason unknown. I'm able to download a mp3 file of the podcast from the web site to my desktop, but I would like to add this to my podcast library under the same name of the podcast that I subscribed, then add to my playlist for continuous playing. Is this possible?
    Thank for any Help,
    Austin
    3rd post

    automatic podcast downloads incomplete
    Posted: Jun 9, 2007 10:54 AM

    Reply

    Email
    I was on the wrong forum. Hope someone might have an answer.
    Austin Smith2
    Posts: 102
    Registered: Oct 31, 2001
    automatic downloads incomplete
    Posted: Jun 4, 2007 7:54 AM
    Reply Email
    Some Podcasts have many episodes and when I subscribe, I get them all at once. But with some podcasts ( http://www.bibleonradio.com/ ), only a few episodes download, and I know there are many others available either because I can see them listed by going directly to the site or because they are numbered and some are clearly missing. I have tried setting my preferences both to download the latest edition of a podcast when I update or to download ALL editions. No difference either way.
    Strangely enough, if I am patience , sometimes the gaps will fill themselves in or all at once when I choose to click update. Anyone have any ideas why this might be happening? Any help would be greatly appreciated. I email the web administrator and they said they were able to go to the itune store and download all the recent episodes. Below is my email conversation.
    Thanks,
    Austin
    imacG5 , super drive Mac OS X (10.4.7) Report this post
    Austin Smith2
    Posts: 102
    Registered: Oct 31, 2001
    Re: automatic downloads incomplete
    Posted: Jun 7, 2007 4:07 PM in response to: Austin Smith2
    Reply Email
    Oops, I left off the dialog. Hope someone can Help.
    Austin
    From: Austin Smith [mailto:[email protected]]
    Sent: Monday, February 19, 2007 7:16 AM
    To: [email protected]
    Subject: podcast
    no podcast downloading after feb 17th. Can you help?
    On Feb 19, 2007, at 8:45 AM, MasterMedia wrote:
    Austin,
    If you mean podcasting of the One Year Audio Bible, then whenever the podcasting is behind you can always go out to the website and download from there. That’s usually been updated even when the podcast has not. Sorry for the inconvenience but the podcast should be brought up to date soon.
    MasterMedia
    From: Austin Smith [mailto:[email protected]]
    Sent: Tuesday, February 20, 2007 7:21 AM
    To: MasterMedia
    Subject: Re: podcast
    Thank you for your quick reply.
    I was able to get itunes to download all the updates except,
    Feb 18 New testament,
    Feb 20 New Testament,
    Feb 22 Old and New Testament.
    Is this a problem on my end?
    You wrote, "If you mean podcasting of the One Year Audio Bible, then whenever the podcasting is behind you can always go out to the website and download from there."
    If I manually download the mp3 from your website, can I put them into the postcast library?
    From: [email protected]
    Subject: RE: podcast
    Date: February 20, 2007 9:14:44 AM CST
    To: [email protected]
    Austin,
    I just went out to the iTunes store and tried to download those dates you had a problem with and I was able to download them without any problem. Maybe you should try again. And yes, you can manually download them from our website and store them into your podcast library. I’ve done that before and it works too.
    MasterMedia
    imacG5 , super drive Mac OS X (10.4.7) Report this post
    StarDeb55
    Posts: 6,134
    From: Chandler,Az.
    Registered: Jan 8, 2005
    Re: automatic downloads incomplete
    Posted: Jun 7, 2007 4:12 PM in response to: Austin Smith2
    Reply Email
    Just a suggestion, since this is a podcast issue, you might find more help in the podcast section of the Mac forum.
    iMac G5 2.0 Mac OS X (10.4.9) 60GB 5G iPod, 2G iPod shuffle, iTunes 7.2 Report this post
    Austin Smith2
    Posts: 102
    Registered: Oct 31, 2001
    Re: automatic downloads incomplete
    Posted: Jun 9, 2007 10:50 AM in response to: StarDeb55
    Reply Email
    Thanks.
    imacG5 , super drive Mac OS X (10.4.7)
    imacG5 , super drive   Mac OS X (10.4.7)  
    Report this post
    Austin Smith2

    Posts: 114
    Registered: Oct 31, 2001

    Re: seeking wisdom-please help-automatic podcast downloads incomplete-
    Posted: Jun 13, 2007 7:29 AM    in response to: Austin Smith2

    Reply

    Email
    Guys am I asking the wrong question? I have posted this question 3 times, but I don;t get a reply. Am I in the wrong section? Am I the only one experiencing this problem?
    imacG5 , super drive   Mac OS X (10.4.7)  

    Hi I found the answer from another post. So far everything is working find. I been trying to fix this since march,
    from
    Mike N. (nahyun...
    Posts: 2,814
    From: New York, NY
    Registered: Oct 1, 2003
    Re: itune application and itune folder
    Posted: Jun 27, 2007 7:16 AM in response to: Austin Smith2
    Solved
    Reply Email
    Deleting the application rarely solves anything on Macs. A better starting point is normally to delete the preference file for the application (in Users/~/Library/Preferences/com.apple.itunes.plist) or see if you have the same problem in another user account on the computer.
    PM MDD(1.25GHz 1.25G-RAM 320G-HD) Mac OS X (10.4.10) 20"ACD USB2Connect MacBook (2.0 White)-2GB Report this post
    Austin Smith2
    Posts: 118
    Registered: Oct 31, 2001
    Re: itune application and itune folder
    Posted: Jun 27, 2007 12:51 PM in response to: Mike N. (nahyun...
    Reply Email
    Mike, deleting the preferences did the trick, but I don't know why. Itunes downloaded 5 days of podcast! Hurray!! Thank you!!!!!!!!!

  • HELP. Where is my registration code?

    I just bought Quicktime Pro and received the confirmation e-mail. No where in the e-mail does it list my registration code. I can see an ORDER NUMBER, a PRODUCT NUMBER, and even a PURCHASE ORDER NUMBER. The e-mail mentions 'To get started, enter your name and registration code exactly as they appear above...'
    It does not appear above. Anywhere.
    My online account has no info anywhere about my registration code either.
    Help please! I even called support (1800MYAPPLE) and they all I got was a 'I can't help you, man.'

    I've seen a few errors in the automated delivery of QuickTime Pro product registrations and you should be patient and persistent with the Apple Store to get a solution.
    The product "key" is generated by the OS version you purchased and your account name used.
    Ask if you can send a copy of the email to a supervisor or have them cancel your purchase and do a new purchase. They should be able to make sure the registration number is included in the email before it is sent to you.

Maybe you are looking for

  • How do I add a simple arrow to my video on FCE

    This is driving me nuts! I can pretty much do anything on FCE, but how do I add an arrow to my video? I have no trouble with text, but where is the choice to add an arrow??? or a circle??? very confusing.

  • Click "adapter monitoring"  cause  "The page cannot be displayed"

    At RWB, the "adapter monitoring" used to be OK. But now it gives "The page cannot be displayed". How to debug it? Thanks!

  • My DSL is still down in June 29, technical support said there is still outage in Vienna area

    Hi, My Internet DSL is still down since the June 29 storm.  It has been more than 11 days.  I spent hours waiting for technical support from India, remote modem so many times and they is still outage my Vienna area with no ETA.  Is this correct?  Aft

  • OracleAQ  JCA with JBoss

    JBoss EAP 4.x and 5.x ships with a generic JMS JCA RA that can be used to integrate with most JMS compliant providers (e.g. ActiveMQ, SonicMQ, etc.). The key to integration using this generic JMS JCA RA is creating a properly configured JMSProviderLo

  • Derive the function values

    Hi All, I have got functions stored in the a column. while selecting it I have to get the result of the function instead of the function itself. could you please let me know how to achieve this. I tried searching and found evaluate function but I am