Need help request!

Hi all

I am faced with a request to generate a model:

The problem is the following:

I have a test table in

create table test

(

Identification number,

varchar2 (20 char) value,

date date

);

and the row values are as follows:

value date: ID:

1:value1:Date1

1:value2:date2

1:value3:date 3

where date1 is today, date2 is yesterday and date 3 is the day before yesterday.

I have to generate a format like below:

ID: old_value:new_value:changed_date

1:value3:value2:date2

1:value2:value1:Date1

where id, old_value, new_value and modified date are columns.

Any suggestions would be helpful.

select *
from (
  select id
       , lag(value) over(partition by id order by dt) as old_value
       , value as new_value
       , dt as changed_date
  from test
)
where old_value is not null ;

Tags: Database

Similar Questions

  • Need help request! 2 tables

    Using Coldfusion 8 and MySQL.  I have 2 tables, one called products (100 points) and another table called Clearance (5 items).

    I see all 100 products and need to insert the discounted_price of the 5 elements of the game table in the query below.

    (* write it down field discounted_price only exists in the table).

    Also, how the returned below list can mark the checkboxes of the 5 elements of the game table.

    (* note-productid is used in both tables. I guess you could call it the foreign key between tables).

    I am a newbie and not sure how to write queries.  Any help would be appreciated.  Thanks in advance.

    < cfoutput query ="getProducts">

    < tr< cfif currentrow mod 2> class = 'weird'< / cfif >>

    < td >< div align ="left">< entry type ="checkbox" name ="promo" value ="#">< table >

    < td > (#getProducts.modelnumber #) #getProducts.modelnumber #< table >

    < td >#getProducts.modeldescription #< table >

    < td >#getProducts.category #< table >

    < td >#getProducts.subcategory #< table >

    < td > < input type ="text" name ="discounted_price" Value ="">< table >

    < /tr >

    < / cfoutput >


    Select p.modelnumber, p.modeldescription, p.category, p.subcategory, C.discounted_price
    left join products P C release on C.productid = P.productid

    <>class = 'weird'>

    checked >

    #getProducts.modelnumber # (#getProducts.modelnumber #)

    #getProducts.modeldescription #.

    #getProducts.category #.

    #getProducts.subcategory #.

    I hope this helps...

  • Need help request not having

    -QUERY1
    SELECT DISTINCT A.EMP_ID
    OF EMP_ADDRESS A, USSX B, USERTVS C, D, UAS SDE E
    WHERE A.EMPC_ID = B.EMPC_ID
    AND C.SS_ID = B.SS_ID
    AND C.SS_ID = D.SS_ID
    AND D.SS_ID = B.SS_ID;

    HAVE A TABLE MORE

    -REQUEST 2
    Select C.EMP_ID from uaddressbs A, USSX B, EMP_ADDRESS C
    WHERE a.SS_ID = b.SS_ID =
    AND b.EMPC_ID c.EMPC_ID

    I JOINED the above QUERY to EXCLUDE THE VALUES RETURNING from THE query2 in query 1, but his does not work

    SELECT DISTINCT A.EMP_ID
    OF EMP_ADDRESS A, USSX B, USERTVS C, SDE D
    WHERE A.EMPC_ID = B.EMPC_ID
    AND C.SS_ID = B.SS_ID
    AND C.SS_ID = D.SS_ID
    AND D.SS_ID = B.SS_ID;
    and A.EMP_ID not in (select C.EMP_ID from uaddressbs A, USSX B, EMP_ADDRESS C
    WHERE the a.SS_ID = b.SS_ID = AND b.EMPC_ID c.EMPC_ID)

    Published by: [email protected] on May 27, 2009 10:21

    Please run the example INTERSECT, I have given and after the release.

    Please put {noformat}

    {noformat} before and after any code you're posting -- it makes it easier to read.
    
    Please show query +and the output+ of the query that you are running:
    

    WITH table1 AS)
    SELECT emp_id 123 OF DOUBLE UNION ALL
    SELECT 456 DOUBLE UNION ALL
    SELECT DOUBLE 890),
    Table2 AS)
    SELECT emp_id 456 OF DOUBLE UNION ALL
    SELECT DOUBLE 890)
    -end of test data
    SELECT *.
    FROM table1
    WHERE emp_id NOT IN ((in English only)
    SELECT emp_id
    FROM table2);

    EMP_ID
    ----------
    123

    SELECT *.
    FROM table1
    WHERE DOES NOT EXIST)
    SELECT 1
    FROM table2
    WHERE table1.emp_id = table2.emp_id);

    EMP_ID
    ----------
    123

    As you can see, only EMP_ID 123 was returned with both queries, so I don't see how you're getting the incorrect results.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    
  • Need help to translate this into a request

    Need help to translate this into a request. I can make the followingusing a query?

    I have the data in this way and I want a report in one line.

    The available data as follows by joining 2-3 tables:

    er_id er_name carrier account records
    ------------------------------------------------------------
    1           XYZ           AT&T                     2
    1 XYZ Sprint 4
    1 Verizon Wireless XYZ 7
    XYZ T-Mobile 1 1
    2 AAA AT & T 18
    2 AAA Sprint 2
    2 AAA Sprint (Nextel) 1
    2 AAA T-Mobile 1

    Need the output in this format:

    ER_ID ER_NAME at & T, Sprint (Nextel) Sprint, Verizon Wireless, T-Mobile
    --------------------------------------------------------------------------------------------------------------------------
    1            XYZ               2            4                   0                                  7                            1
    2            AAA             18            2                   1                                  0                            1

    Is this possible with a simple query?

    It's called pivot. Assuming that you are on11g and AT & T, Sprint, Verizon Wireless and Sprint (Nextel), T-Mobile is a complete list of carriers:

    SET DEFINE OFF

    () AS T

    SELECT 1 ER_ID, ER_NAME "XYZ", "AT & T" COMPANY, NTC 2 UNION DOUBLE ALL THE

    SELECT 1, 'XYZ","Sprint", 4 DOUBLE UNION ALL

    SELECT 1, 'XYZ', "Verizon Wireless", 7 DOUBLE UNION ALL

    SELECT 1, 'XYZ', 't-Mobile', 1 DOUBLE UNION ALL

    SELECT 2, 'AAA', 'AT & T', 18 DOUBLE UNION ALL

    SELECT 2, 'AAA', 'Sprint', 2 DOUBLE UNION ALL

    SELECT 2, 'AAA', 'Sprint (Nextel)", 1 DOUBLE UNION ALL

    SELECT 2, 'AAA', 't-Mobile', 1 DOUBLE

    )

    SELECT ER_ID,

    ER_NAME,

    "" AT & T"_CNT" "AT & T"

    "" Sprint"_CNT" "Sprint."

    "" Sprint (Nextel)"_CNT" "Sprint (Nextel).

    "' T-Mobile"_CNT ""T-Mobile"

    ""Verizon Wireless"_CNT" "Verizon Wireless".

    T

    PIVOT)

    SUM (NTC) NTC

    Carriers to ("AT & T", "Sprint", "Sprint (Nextel)", "t-Mobile","Verizon Wireless)

    )

    /

    ER_ID ER_ AT & T Sprint Sprint (Nextel) T-Mobile Verizon Wireless
    ---------- --- ---------- ---------- --------------- ---------- ----------------
    1 XYZ          2          4                          1                7
    2 AAA         18          2               1          1

    Scott@pdb1orcl12 >

    Sy.

  • I'm suddenly needing help with my browser Firefox (6.0.2)

    Hello
    I'm suddenly needing help with my browser Firefox (6.0.2)

    (OS: I use Windows XP).

    When I open the browser, I don't see is a totally white screen of white, with all the toolbars at the top.

    I know that my physical connections are very good: I have tested the modem, turned the pc market etc and I can also receive/send emails.

    This problem started today, September 8, 2011 and has never happened before.

    Is it a coincidence that Firefox itself to day before I disconnected yesterday evening? Could this be something to do with this particular new update?

    I also noticed that just before I "opened" Firefox, I now get a small box indicating:

    [JAVASCRIPT APPLICATION]
    Handl exc in Ev: TypeError: this oRoot.enable is not a function

    This never appeared before - I hope that it offers a clue has what is wrong.

    The browser not be stuck in Mode safe, said by the way.

    Of course, I can't find solutions to the problem on the internet, I don't physically see all Web sites!
    (A friend sends this request in my name from their pc)

    Any light you can throw on this problem of confusion would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.

    If the only option is to uninstall Firefox and reinstall from your site, I'm also in trouble (I can not see the internet or download).
    In this case, would you be able to send the .exe file as an attachment to my e-mail address? In the affirmative, please let me know and I'll give you more details.

    Thanks in advance.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • I need to change my apple user ID e-mail address. Since I will be withdrawn and used my personal E-mail address instead of company e-mail. I need help please on how to do

    I need to change my apple user ID e-mail address. Since I will be withdrawn and used my personal E-mail address instead of company e-mail. I need help please on how to do it. I now use IPhone 6

    Launch Safari on your iPhone, iPad or Mac and go to appleid.apple.com.

    To an iOS device, tap on manage your Apple ID. If requested, please check your identity after the connection.

    Click or tap on change in section Apple ID and primary e-mail address.

    Edit with your new email address.

  • Computer laptop touch screen 15: need help - restore Partitions, OS system, start-up and drivers!

    [Need help]

    Device name: laptop touch screen, Energy Star, 15.

    Model number: 15 - f023wm

    Device status:
    [Grandma] "I broke the internet.
    [Me] "No, I have demolished just any chance I had as a computer programmer.
    I'll never do it to heaven now... »

    You want to come: difficulty this laptop!

    -Packing plant (Reset/retrieve)

    -Retrieve/Re-restore boot loader

    Retrieve/recreate/Re-restore all original scores.
    -Retrieve / Re - restore all the Original system & hardware drivers.

    -Retrieve/Re-restore Windows 8.1.

    -Possibly find computer Tech/Geek fellow/Pal.

    -Learn something new! (Not including the common sense).

    Explanation:
    -J' was too high as he tried to become the next Bill Gates and create a calculation method in which the processor completely laws of physics bi-passes.

    Topical issues:

    (1) I have little experience, I'm sure compared to most of the users on this forum; However, in the College computer Programmning.

    ---> Very adept in acquireing newly introduced information & request a great sense of understanding of puzzled, abstract and largely serious concepts. (It will be just a little easier than most to explain a simple fix).

    (2) I deleted all partitions, including the system files, System opperating, some methods of starting, all the drivers, and to add to the mess, the existing partitions are not yet check the size or formatting - I'm sure.

    ---> (Drive C is 400 GB;) Drive D is the main partition with only 20 GB)

    (3) any chance of installation/download are only feasible when my boyfriend does everything it does and 'fixed' the laptop.

    ---> Cell phone MAY start, can use internet and MAY be able to download 5 pictures before the system shuts down and the other requires a few hours to wipe the minimum amount of space on the hard disk before you reinstall Windows.

    (4) Windows 7 is the only OS (so far) that we are able to install; We have no other disks, but Windows 8.1, I think, was the original Opperating system and look forward to this return.

    (5) I don't know yet how I will receive notification here on these forums. I'm drunk at 05:59, so I'll find out tomorrow.

    ---> Assuming that I remember I wrote it.

    And I think that's all that I need a little help with if you want messages me or live chat to help solve this problem, I think that Skype is aloud; and in all the uncertainties, it is listed on my profile.

    Thank you, & your best.
    Caleb D. Parker
    @CiDiParks25

    CiDiParks25

    What will work restores your computer to its original factory state using HP recovery media.  It is a DVD and CD set that will erase the hard drive (removing all data, applications and settings, reinstall the original OS, drivers and utilities for HP. In some cases, you will be able to order a USB instead of discs.  You must order at HP; they cannot be downloaded.

    The link is on the software page and download drivers for your PC: http://support.hp.com/us-en/drivers/selfservice/HP-15-Notebook-PC-series/7137590/model/7484025

    Once there, scroll to the bottom of the page and you will see an entry for the command Recovery Media-CD/DVD/USB. Click on the symbol '+' to expand this entty and click on order to press for more details.

    Or, if you prefer, you can do the same by contacting HP Customer Service:

    If you live in the United States or the Canada, details are on this page: http://www8.hp.com/us/en/contact-hp/phone-assist.html#section1

    If you live elsewhere, contact details are on this page: http://www8.hp.com/us/en/contact-hp/ww-contact-us.html

    Note that if HP no longer provides a recovery media for your model, a few other sites, you can check are: http://www.computersurgeons.com/ and http://www.restoredisks.com/

    Don't forget to read through the material in the linked thread before attempting the recovery: http://support.hp.com/us-en/document/c00707939

    Good luck

    I'm a volunteer and I do not work for, or represent, HP.
    ========================================================================
    If you feel that my suggestions helped you, please click on the thumbs-up symbol to say thank you!

    If they helped to solve your problem, please click 'Accept as Solution' to help others find similar information.

  • Need help setting bios to boot from the cd. I did already but the laptop does not start again for cd player.

    Hello

    I forgot that my administration windows log password after the holidays.  I have loaded down a free program called Ophcrack and had set my laptop to boot from cd 1 but I just cannot get the laptop to boot from a cd.  He just continued boot from the internal hard disk.

    The cd is an image and it is bootable on my desk.

    The model of laptop: laptop HP ENVY m6

    Product number: C2N77UA #ABL

    BIOS version: F.25

    Processor type: Intel Core i7-3632QM CPU @ 2.20 GHz

    OS: Windows 8.1

    I only did a password reset disk (I'm learning the hard way now!).

    I don't want to do a "System Recovery" because I have some data on it.

    I realize there are paid there password recovery tools windows, but I would like to use this 'free' program to try to break 1.

    I just need help / instructions to set the bios for laptop can be started from a cd.  I also tried to boot from a key USB but the laptop kept begin its internal drive.

    Help, please.  Thanks a ton!

    Ted

    Hi Ted,

    You are welcome

    Boot into the bios menu and go to the very section where you have disabled the Secure Boot.

    Find an entry called materials and this value to Activate.

    Save the changes and exit the bios.

    Follow the previous procedure below:

    Insert the bootable disc of Ophcrack and laptop stop.

    Tap away at the esc you key start Notepad to open the Start Menu.  Select boot options ( f9 ), use the arrow keys to select the CD/DVD drive and press ENTER.  You can also get a prompt to "Press any key to" continuous - it if requested.

    Kind regards

    DP - K

  • I need help, open my NAT for an xbox 360 on a WRT160N v3

    Hey guys. I just got a new wrt160N v3 and I need help on opening the NAT. I use to have the wrt160N v2 but I replaced it. so can you guys please help me. Thank you

    Okay I found the solution myself. Here's what you do:

    Open a Web browser and type your default gateway which is usually: 192.168.1.1

    After you do this type in as the admin and the password admin its also admin once you open a session go in application and games and go to the subcategory "port range forwarding."

    For the first set appliction Xbox1 and the beginning and the end, the port numbers are 88. The Protocol is both and the IP address must end at 120.

    For the second application updated Xbox2 and the beginning and the end, the port numbers are 3074. The Protocol is both and the IP address must end at 120.

    For the third set appliction Xbox3 and the beginning and the end, the port numbers are 53. The Protocol is borh and IP address must end at 120.

    For the fourth request put Xbox4 and beginning and end, the port numbers are 80. The Protocol is both and the IP address must end at 120.

    Save the settings and once you go back to the installation page, make your size MTU 1364. Save the settings and then go to security and uncheck the anonymous internet requests to filter. Save the settings.

    Go to the administration tab, and then make sure that UPnP is enabled. If it is not, turn it on and save the settings.

    Tour of your router and the modem. Wait a minute and plug the modem first. Once it starts up plug in the router and your NAT must be open for xbox live.

  • Need help with Activation after upgrading to Vista

    Separated from this thread.

    Hi Gerry,

    I need help to reactivate.  I lost my case and if the product key.  I have upgraded from Vista pre-installed on my desktop HP for Windows 7 Professional 2 years back and recently meet with problems and my reason for re-setup. Please find the details below you requested.

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Code of Validation caching online: 0x0
    Windows product key: *-* - CM74G - RPHKF-PW487
    Windows product key hash: 71BRYMECVaSXedfumfu8zryHJVY =
    Windows product ID: 00371-177-0000061-85643
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {E9827CAB-B22C-4676-8C2F-F77EDCD000E6} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0x00000000
    Build lab: 7601.win7sp1_rtm.101119 - 1850
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program may Explorer\IEXPLORE.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {E9827CAB-B22C-4676-8C2F-F77EDCD000E6}1.9.0027.06.1.7601.2.00010100.1.0.048x 32*-*-*-*-PW48700371-177-0000061-856435S-1-5-21-439732754-3583098255-2330885285HP-PavilionFK869AA-Y2K A6640DPhoenix Technologies, LTD5.2220090507000000.000000 + 000A5E63007018400FA04090409China Standard Time(GMT+08:00)03HPQOEMSLIC-CPC109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: e838d943-63ed-4a0b-9fb1-47152908acc9
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00170-177-000006-00-1033-7601.0000-2262016
    Installation ID: 002356937435887266876642539776934946293206562961099182
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: PW487
    License status: Notification
    Reason for the notification: 0xC004F009 (grace period expired).
    Remaining Windows rearm count: 3
    Time to trust: 13/08/2016 23:04:17

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: n/a
    Beyond: 0 x 0000000000000000
    Event time stamp: n/a
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current Hash HWID: LgAAAAEAAgABAAEAAAACAAAAAQABAAEAJJR687d2wBKqdswpOrBWvv + i8gkqhQ is

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0x0
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    HPQOEM APIC-SLIC-CPC
    FACP SLIC-CPC HPQOEM
    HPET SLIC-CPC HPQOEM
    MCFG SLIC-CPC HPQOEM
    SLIC SLIC-CPC HPQOEM
    SSDT PmRef CpuPm

    You use the default key that cannot be used to activate Windows 7. You must enter your product key Windows 7 Professional.

    Try the Activate by phone:

    Have you tried to restart by phone?

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

  • Need help to install the network on laptop drivers

    I have a laptop of HP 2000-239WM and recently erased due to trying to sell. However, when I reinstalled everything back on the PC, no network drivers have been installed, so I have no access to the internet, wireless and wired. Should what programs I install via USB in order to solve this problem?

    The network adapter driver specifically requests the Ethernet, wifi and it...

    Hello McKinley,

    Thank you for visiting Microsoft Community and we provide a detailed description of the issue.

    According to the description, I understand that you need help to install the network drivers into the laptop.

    Certainly, I understand your concern and will try my best to help you.

    In order to install the NIC drivers in the system, I suggest to visit the link below and check if that helps.

    http://support.HP.com/us-en/drivers/selfservice/HP-2000-200-notebook-PC-series/5091493/model/5119030

    Note: Make sure you have access to the internet to another computer and download the network drivers using the USB and install on your laptop.

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

  • Need help signing keys suddenly zero

    This morning I received the error message says:

    Registration failed for client '2630980234'.  The client has 0 record attempt (s) left.

    The customer has returned the following message is displayed:

    Failed to register the client '2630980234' because there is no more the record attempts.  If you are already registered with this server, you must contact RIM to register additional users.

    But the last 9 hours:

    A request completed successfully for the '2630980234' of code signing customer.  The customer has 2147483366 request (s) to the left.

    That's happened?

    Please do not double post.  Someone will see your message below and hopefully answer. It is not necessary to post your question in this forum.

    http://supportforums.BlackBerry.com/T5/Java-development/need-help-signing-keys-suddenly-zero/m-p/548...

  • ID error blackBerry Smartphones: 40730 need help urgent to reset the password *.

    Hi team,

    I need help to reset the password for the BB APP world, I logged this site:- https://blackberryid.blackberry.com/bbid/main/login.seam?callbackuri=&i=4218081 this link is send me by email a password reset agin to the BB user ID which is (info personal removed) @blackberry.com is my user name. How can I get the password from there when I ask to reset the password.

    Donmenezes wrote:
    Hi guru,.
    Thank you for the answer. I followed the entire process, but none the case on all the links there is an option to send the password to reset BlackBerry ID to an external address is e-mail that is for example:-gmail account. I really need some request you please explain myself better.

    I think that you read correctly... re-read the Workaround"" section. He said nothing to do anything to your GMail account instead, you must follow the instructions, log into your BIS account (from a PC or your BB... it will be much easier to use a PC well) and activate the automatic redirection of your @bb to your Gmail account. Then return the password reset email, access your GMail account, and you should receive the email to reset it in order to finally use it to solve your problems.

    Please follow exactly the instructions and if you don't follow some sections, he cites exactly with what exactly you did and what exactly doesn't work correctly (point by point, please, with all the details). I can't explain that any better unless you are specific about exactly where/how you're stuck.

    Good luck!

  • Need help to administer password or power on password for computer hp mini 210

    Need help to administer password or power on password for computer hp mini 210 - code poster 85964037

    Try Kar.

    30642019

    Use this code to go into the BIOS.

    Disable all passwords that are enabled.

    IF demand for CURRENT password using this code.

    REQUEST NEW password just press ENTER.

    If asked to hit just to CHECK password to enter.

    Save and exit.

    REO

    I must inform you that these services are not endorsed by HP, and that HP is not responsible for any damages that may occur to your system using these services. Please be aware that you do so at your own risk.

Maybe you are looking for

  • Windows Update error 52F

    Original title: 52f 52f error code when you try to install the updates

  • 0x4b8 error code.

    I can not install IIS from Add and remove programs icon in Control Panel. You will be asked to insert the installation cd or specify another folder to copy from. Examination of the I386 folder, I discovered that all the files, it cannot locate are ac

  • CD-Rom indicated that all disks are not formatted.

    All of a sudden (no major changes to the system) the CD-Rom on my laptop started to say all CDs (burned and commercial) are not formatted and that Windows is unable to read the disc. I reinstalled the drivers and windows updates, but the problem is s

  • The camera driver won't install; all portable devices under Device Manager have yellow warnings

    Windows 7 64 bit All portable devices in Device Manager have yellow warnings.  I followed the directions of the driver reinstall paragraph each device status, but nothing has changed - warnings remain. Although warnings have existed for some time, I

  • notification and instant preview

    Hi all is there a sampe notice and overide instant preview? as to prevent them from be triggered?