Difficulty in obtaining registration with the last moment!


Hello

I you are trying to join two tables and terms just to get the record with the highest timestamp!

I already wrote this but do not know how should I include the RANK to get the last?

Select i.isin, i.id, i.mkt, i.tm, o.obst, row_number () on)

rank of partition by order of i.tm desc i.id)

of instrument_info i, orderbookstate o

where i.id = o.id

and i.mkt = o.mkt

------------------ 

CREATE TABLE ORDERBOOKSTATE

( ID             VARCHAR2(33 BYTE) NOT NULL,

MKT           VARCHAR2(11 BYTE) NOT NULL, 

OBST         NUMBER(2),

TIME_INSERTED VARCHAR2()20 BYTE)

);

CREATE TABLE INSTRUMENT_INFO

(

ISIN VARCHAR2 (13 BYTE) NOT NULL,

ID VARCHAR2 (33 BYTE),

VARCHAR2 (20 BYTE) TM,

MKT VARCHAR2 (11 BYTE) NOT NULL,

NUMBER (10),.

CTL VARCHAR2 (4 BYTE)

);

insert into INSTRUMENT_INFO (ISIN, ID, TM, MKT, ITY, CTL)

values ('SE0001535568', 'LLSW-B','2013-03-11 06:55:11 ', 'SSEFN', 0, 'SEK')

insert into INSTRUMENT_INFO (ISIN, ID, TM, MKT, ITY, CTL)

values ('SE0005126125', 'LLSW-B','2013-11-08 06:57:20 ', 'SSEFN', 0, 'SEK')

insert into ORDERBOOKSTATE (id, mkt, obst, time_inserted)

values ('LLSW-B', 'SSEFN', 4,'2013 - 11 - 08 12:37:27 ');

When I add the rank = 1, it returns me an error!

Do you know how should I join them to get just the last?

Need any more made Hotel me know!

Thanks in advance!

Select * from

(

Select i.isin, i.id, i.mkt, i.tm, o.obst, row_number () on)

rank of partition by order of i.tm desc i.id)

of instrument_info i, orderbookstate o

where i.id = o.id

and i.mkt = o.mkt

)

where rank = 1

Tags: Database

Similar Questions

  • Obtain registration with the date max - rank question

    I use the statement below to get rank for records with the same data with max date. But I still see rank 1. Someone help me understand this?

    SELECT T.*,
           RANK() OVER(PARTITION BY T.UNIQUEID ORDER BY T.LOADDATE DESC) RNK
      FROM DEMO_TBL T
     ORDER BY T.STARTTIME ASC
    
    create table DEMO_TBL
    (
      NUMBERID  VARCHAR2(50),
      STARTTIME DATE,
      STOPTIME  DATE,
      TOTAL     NUMBER(19,10),
      UNIQUEID  NUMBER(10),
      LOADDATE  DATE
    );
    
    
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('01-07-2013', 'dd-mm-yyyy'), to_date('01-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 705.0000000000, 15353856, to_date('06-07-2013 12:58:57', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('02-07-2013', 'dd-mm-yyyy'), to_date('02-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 698.9950000000, 15353857, to_date('06-07-2013 12:57:08', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('03-07-2013', 'dd-mm-yyyy'), to_date('03-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 701.9970000000, 15353855, to_date('07-07-2013 12:58:17', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('04-07-2013', 'dd-mm-yyyy'), to_date('04-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0020000000, 15353854, to_date('08-07-2013 13:00:07', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('05-07-2013', 'dd-mm-yyyy'), to_date('05-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 90.9970000000, 15353853, to_date('09-07-2013 12:59:35', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('06-07-2013', 'dd-mm-yyyy'), to_date('06-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0060000000, 15353852, to_date('10-07-2013 12:56:36', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('07-07-2013', 'dd-mm-yyyy'), to_date('07-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0020000000, 15353851, to_date('11-07-2013 13:02:47', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('08-07-2013', 'dd-mm-yyyy'), to_date('08-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0010000000, 15353847, to_date('14-07-2013 13:01:26', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('08-07-2013', 'dd-mm-yyyy'), to_date('08-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0010000000, 15353850, to_date('12-07-2013 12:55:28', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('09-07-2013', 'dd-mm-yyyy'), to_date('09-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 1015.4440000000, 15353842, to_date('23-07-2013 12:59:34', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('09-07-2013', 'dd-mm-yyyy'), to_date('09-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0000000000, 15353849, to_date('14-07-2013 12:56:59', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('10-07-2013', 'dd-mm-yyyy'), to_date('10-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.0040000000, 15353848, to_date('14-07-2013 12:59:13', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('10-07-2013', 'dd-mm-yyyy'), to_date('10-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 1023.9450000000, 15353844, to_date('23-07-2013 12:59:02', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('11-07-2013', 'dd-mm-yyyy'), to_date('11-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 92.0010000000, 15353846, to_date('15-07-2013 12:57:14', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('11-07-2013', 'dd-mm-yyyy'), to_date('11-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 1019.0510000000, 15353841, to_date('23-07-2013 13:01:24', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('12-07-2013', 'dd-mm-yyyy'), to_date('12-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 1042.8390000000, 15353843, to_date('23-07-2013 12:59:34', 'dd-mm-yyyy hh24:mi:ss'));
    
    
    insert into DEMO_TBL (NUMBERID, STARTTIME, STOPTIME, TOTAL, UNIQUEID, LOADDATE)
    values ('11110008524705', to_date('12-07-2013', 'dd-mm-yyyy'), to_date('12-07-2013 23:59:59', 'dd-mm-yyyy hh24:mi:ss'), 91.9940000000, 15353845, to_date('16-07-2013 12:58:28', 'dd-mm-yyyy hh24:mi:ss'));
    

    you are looking to do this,

    SELECT T.*,
    max(t.starttime) OVER(PARTITION BY NUMBERID,STARTTIME,STOPTIME,TOTAL ORDER BY T.LOADDATE DESC) mx_strt_dt,
    max(t.stoptime) OVER(PARTITION BY NUMBERID,STARTTIME,STOPTIME,TOTAL ORDER BY T.LOADDATE DESC) mx_stop_dt
    
    FROM DEMO_TBL T
    ORDER BY T.STARTTIME ASC
    
  • Obtain registration with the maximum Date within a group

    People,
    Need to find the file that has the most recent date. Here's what the table looks like:
    desc student_ldg;
    
    account_number   not null   varchar2(10)
    dept_code        not null   varchar2(5)
    assignment_date  not null   date
    We had to find the last record in the table that has the largest assignment_date.

    Any help is appreciated.

    Thank you

    Which version of DB you are working on?

    Try this

    select *
      from (select * From student_ldg order by assignment_date desc)
     where rownum = 1;
    
  • Windows 7 crashes when stopped at the last moment on the blue screen

    I know that the new card USB 3.0 installed is cursing the fault. I need USB 3.0 and it is the third card, I installed, but all with the same fault; When I closed windows 7, at the last moment, it hangs on the blue screen, some, but not all the time that this model of plate washing appears. Please can you help me? I have Windows, new driver search, but all drivers are OK. It seems to me like a time-out; as Windows has no time to finish closing. But I'm not experience enough if this is correct, and what to do if this is correct.

    Sorry, it is not the blue screen of death. It's normal when blue screen windows 7 is going down at the last moment it stops crash and sometimes she as well has this Board band appearance.

    When I remove the USB card, the computer works and closing down as usual. This is certainly the card USB curse the problem.

    Windows 7 accepts the driver USB works fine, no update available.

    Computer:

    Windows 7 Home Premium, 32-bit

    CPU: AMD Athlon (fm) 64 x 2 Dual Core Processor 3800 + 2000 MHz frequency

    Motherboard: ASUS A8N-E

    RAM: 4 GB

    WS

    You will probably need to communicate with the computer of the Mfr and the developer of the card USB 3.0 to see whether there is a newer (patch or beta) driver.

    Without a kind of diary, there is not a lot, we can help you.  The driver for USB 3.0 must be dated June 13, 2009 or newer.

    Alternatively, you can try to reinstall the USB driver in compatibility mode,

    If you want we can take a look at your Event Viewer logs

    Please provide us with your administrative Event Viewer logs by following these steps:

    Click on Start Menu
    Type eventvwr in the find programs and files (do not hit enter)
    Click with the right button on eventvwr.exe and click Run as administrator
    Expand custom views
    Click the administrative events
    Right-click Administrative events
    Record all events in custom view as...
    Save them to a folder where you will remember which folder and save it as Errors.evtx
    Go where you saved Errors.evtx
    Make a right click Errors.evtx-> send to compressed (zipped) folder of->
    Download the .zip to skydrive or a file sharing service file and link to it in your next post

  • Why Firefox always opens with the last session tabs?

    When I open firefox always opens with the last session tabs? How can I solve this problem?

    You can check if you have a user.js file in the Firefox profile folder that affects the pref browser.sessionstore.resume_session_once true value.

    The user.js file is present than if you or another software has created this file and normally it wouldn't be here.
    You can check its contents with a text editor (right click: 'Open with'; do not double-click).
    The user.js file is read whenever Firefox is started and initializes the preferences to the specified value in this file, so the preferences set via user.js can be changed temporarily for the current session.

    You can remove the user.js file if you do not create this file yourself.

    You can use this button to go to the Firefox profile folder currently in use:

    Windows hides certain default file extensions.
    Among them are .html, .ini and .js, .txt, so you can see only file name without the file extension.
    You can see the type of actual file (file extension) in the properties of the file via the context menu in Windows Explorer.

  • I encountered the problem with the last iOS 9.3.2 update I can't receive call from people, I can call any body, but when l'm calling people any body can ring me just now, I thing the problem where new soft

    I encountered the problem with the last iOS 9.3.2 update I can't receive call from people, but I can call any body, but when l called people any body can ring me only at this time, I think that the problem of the new update. can u check this and answer my question.

    and my phone

    iPhone 6plus

    You see a Crescent Moon at the top of the screen icon? If Yes, disable does not bother to: settings - do not disturb = Off.

  • FF is slower with the last update.

    FF is worse with the last 13.0.1 update. He uses too much RAM, scrolling of the page is a lot slower and YouTube vids stall all playing. What is a paradox?

    First of all, try resetting Firefox. Refresh Firefox – reset settings and Add-ons. This simple step will eliminate the many problems in Firefox with just one click.

  • difficulties with the last OS update

    Hello

    I was struggling with the last update of OS X on my Mac Mini and my MacBook Air for the last two days.

    The App Store has informed me that there is an update available for download and installation, requiring a reboot. (1.44 GB)

    When I clicked ok to go ahead and download, the download starts ok and then crashes every 40-50 MB. Once glued, it does not recover by itself, but needs a manual foot start cycling through the update cycle. Initially, he remembered that he had already downloaded the file and continued (up to about 900 MB).

    Unfortunately, it falls back to zero after that. Restarting the computer didn't help. I checked my Internet connection and regularly confirmed that I had between 8 to 10 MB per second of bandwidth. Someone has an idea what is happening?

    Try to download the update mode without failure or another admin account.

    Safe mode - on El Capitan

    Start Mode without failure-El Capitan.

  • My iPhone with iOS 9.2.1 5s is deleting random contacts.  This happened for several months is not just with the last update of iOS.  Any suggestions?

    My iPhone with iOS 9.2.1 5s is deleting random contacts.  This happened for several months is not just with the last update of iOS.  It deletes recently used contacts and removes also from my iPad.  Any suggestions?

    That you synchronize your contacts with? A decision-making application supported on the computer, a Cloud Computing service?

  • I get e-mail from Windows Live Hotmail saying me that my credit card has expired. They are capable of the ID of the card with the last 4 digits showing.

    phishing scam?

    I receive e-mail from hotmail telling me that my credit card has expired. they are capable of the id of the card with the last 4 digits showing. I checked and the card does not expire for another year. I need to get direct support to verify or deny that billing is accurate or false.

    original title: phishing scam?

    Hello Dougharada

    Please see this link about Phishing scams. A lot of information about the grateful and prevent them. I hope this helps.
  • MY FONT SIZE HAS CHANGED WITH THE LAST UPDATE AND I CAN'T SEEM TO RETURN TO NORMAL.

    WITH THE LAST UPDATE OF THE FONT SIZE CHANGED ON MY EMAIL ACCOUNTS AND PAGES OF MY WORK.  IT OF SMALL, I CAN'T READ IT EVEN WITH GLASSES ON. IT IS MAGNIFIED 150 TIMES.  MY COMPANY, HE CHANGED THE RESOLUTION WHICH HAS CHANGED MY SIZES OF ICONS, BUT DOESN'T HAVE ANYTHING DONE TO MY FONT SIZES.  THE HAD ME ALSO DO SOMETHING WITH MICROSOFT THAT DOESN'T WORK ANYMORE.  SO THEY HAD ME CONTACT MICROSOFT WHO CAN HELP ME BECAUSE I CAN'T AFFORD TO PAY TO GET ANSWERS TO MY QUESTIONS.  I AM ALREADY 3 HOURS LATE FOR WORK IN TRYING TO SOLVE THIS PROBLEM.  CAN SOMEONE OUT THERE HELP ME?

    Hi ELLA SMITH (KELLY).

     

    Welcome to the Microsoft community forums. Please post your query and giving me the opportunity to help you.

    I'm sorry for the inconvenience caused.

    I will guide you on the issue of the police.

    (1) you are on a domain network?

    (2) the Windows updates were installed?

    (3) what happens when you try to change the font sizes, you get an error message?

    I suggest you refer to the link to verify that Windows update have been installed.

    http://Windows.Microsoft.com/en-us/Windows-Vista/see-which-Windows-updates-are-installed

    Method 1:

    You can check follow them the links below, if that helps:

    (1) change the Windows fonts

    http://windowshelp.Microsoft.com/Windows/en-in/help/bdc9d003-777b-4B1E-9664-2957f50870bd1033.mspx

    (2) fonts: frequently asked questions

    http://windowshelp.Microsoft.com/Windows/en-in/help/0caf0419-6990-45de-8D71-67f14a3ae4c71033.mspx

    (3) how to repair the operating system and how to restore the configuration of the operating system to an earlier point in time in Windows Vista

    http://support.Microsoft.com/default.aspx/KB/936212

    Method2:

    un) make system restore, choose the date where the screen resolution and the fonts were ok as your restore point.

    (b) when these updates come to install again, do only ONE AT A TIME. After each installation, check if the screen is ok, and then next update and so on.

    c) in this way, you'll be able to simply update is the cause of this problem.

    If the problem persists feel free to post us. We're here to help.

    Thank you.

  • Password error: your PC is offline. Please sign in with the last password used on this PC.

    I have Windows 8 and you are unable to open a session.  I have reset my password online successfully, but the new password does not work.  The message says: "your computer is offline. Please sign in with the last password used on this computer. "I don't remember last password that I used.   Any ideas?

    Original titile: password is not working on Windows 8

    People it is a very simple and easy solution to this problem! Once you have reset your password from another PC/laptop or any other server for windows 8, you go back to your PC / laptop original where you forgot your password and do the following...

    1. even if you have reset your password, make sure you have an internet connection for this laptop can be wired or WIFI Hotspot even

    2. make sure that connect you using the option under your network settings in the lower left corner of your logg in screen.

    3. Once you are connected then only can type you the new password that you changed.

    NOW, the simple reason for this is that when you have conveniently forgotten your logg in detail on this pc it does not recognize your new password unless it is connected to your online account.

  • "Your PC is offline." Please sign in with the last password used on this PC"

    I'm getting this when I try to logon 8 ' windows your PC is offline. Please sign in with the last password used on this computer". I conclude that this is because it is not connected to the internet (changed my password but still can't log on). Why does it matter if it is or is not connected? How can I connect if I can't login? Are my only options 'internet cable' & take it at home when it connects (hopefully) automatically to my wifi? Is there a way to get around this? I have a wifi at work I connect to-electrician is not an option that our system is pretty blocked down.

    Help, please.

    Shannan

    If she doesn't have internet, it knows only the last password you used to connect. Use it. That's what he tells you.

    If it was connected it would verify the new password on the server, but it can't because it's... In offline mode. Use your old password and it should work.

  • When I burn CD for my use on the computer, sometimes the order of the songs are returned, starting with the last song first.

    * Original title: Windows Media player

    When I burn CD for my use on the computer, sometimes the order of the songs are returned, starting with the last song first.  This is the CD, or I do something wrong?  This isn't an ongoing problem... most of the time it's ok.  Can I change the order manually. If Yes, where and how.

    Thank you

    Lee

    Lee - there are a number of possibilities. First of all, it depends whether you burn audio disks or data - if they are audio discs, you can check and rearrange the order of songs in the burn list - if necessary - before you start burning. If you drag multiple files to the burn list quite often the last track you clicked on will go upward, so I wonder if it is what can happen. Back with a little more detail if I not quite correctly interpreted the problem. Best regards, Ric.

  • Urgent: Cannot log on to Windows 8! "" Your PC is offline. " Please sign in with the last password used on this PC"

    I use W8 for months and all of a sudden, while traveling, I can't connect to my computer. I get the error "your PC is offline.". Please sign in with the last password used on this computer. "I am sure that I use the password. I have a flash drive and another laptop (Running OS X) at my disposal. What should I do to access my laptop?
    I don't have access to my local network, or any network besides.
    I have not recently changed password. I can't restore or refresh because it requires the password and says that isn't true. I never installed webroot or anything of that kind.
    Results in the same number safe mode.
    I can't connect to my Live account with my phone just fine.
    I do not have a local account.
    It's ridiculous and absurd oblivion by Microsoft. I'll be away a network known for a week and have literally no access to my computer. I would like to take this opportunity to warn all users of Windows 8 to make sure that they USE LOCAL ACCOUNTS. DO NOT USE DIRECT REPRESENTS WINDOWS 8, BECAUSE IF THIS HAPPENS TO YOU AND YOU CANNOT CONNECT TO A WELL-KNOWN. NETWORK, YOU WILL BE LOCKED.
    I am aware that there are discussions on this topic, but I want to throw oil on the fire, so to speak, because as far as I know, there is no solution.

    * EDIT *.
    The only solution is to connect to a known network. If you are not able to connect to a known network, you can not connect, simple as that. It's a big bug for sure. I repeat, change your account to a local account to avoid this problem.

    So I solved this problem, but unfortunately, it was as bad as I thought. As I thought, you need to connect to a network "Known", and then try to connect. It should work. If you are not near a network known (as if I was), as far as I know, there is no solution. To avoid this, change your account to a "Local" account

    My theory for the problem is the following:
    When you connect using a Live account, the password is saved locally and on the network. If you are connected to a network, it verifies the password that you enter the password stored on the network. If they match, it will allow one, sign in. If you are disconnected from the network, Windows attempts to match the password online, realizes he cannot, then checks the local password. Somehow, in my case, the password locally must have been changed or deleted and so the password entered always was "Incorrect."
    So yes, big problem, I'm sure the solution is quite simple, but in the meantime, use a local account to prevent this. I was stranded, and it was a huge headache and cost me many hours of work.

Maybe you are looking for

  • Get the Thin Client IP address

    Hello. I'm trying to find out the IP address of the machine that I use for programming. I want to use my LabVIEW program on a server. However, the string to the property intellectual VI gives the IP address of the network, so in this case the server

  • Settings of Windows Live has stopped working.

    Message: A problem caused blocking the program works correctly. Windows will close the program and notify you if a solution is available. (Never notified). Best Buy re - install Windows but this nature occurs. It was very expensive and would like to

  • Assigng WRT54G a static IP address

    I recently bought a new WRTG54G2 to replace an old one that died.  I'm trying to set up as the former, but without access to the configs I don't know exactly how I've done it before.  Here's what I have. Cable modem--> (192.168.0.1) dedicated firewal

  • SX2210T monitor in windows 8.1 contactless touch

    New Dell Inspiron desktop PC connected to existing touch screen monitor (after insurance it is, of course, compatible with preload 8.1).  After that a very long day and an hour of quality with support technology, we were informed that there is no dri

  • Z30 BlackBerry how to remove my Z30 BBM

    I have a Z30 with the latest OS BB decided to make money to disturb me with advertising on my BBM. I don't want to, so I would like to know how to delete BBM?