Several aggregates County from different sources group by year

I have a total of 4 tables and dealing with frequent travelers. My goal is to find the number of frequent travelers in a period of time dating from 1990 to this day.

I need to create a report where I list the number of frequent travellers according to when they enrolled, have investigated and took their flights. Test data are only a small sample of data. Also, some frequent travelers can have registered and taken a poll but never flown as Freq Flyer 1004 and some customers could have registered but never took the survey as Freq Flyer No. 1010. The report must be per year (1990 - Sysdate).
Year       Enrolled       Took Survey       Flights Flown
=========================================================
1990             99                99                  99
1991             99                99                  99 
1992             99                99                  99
...
2010             99                99                  99
2011             99                99                  99
2012             99                99                  99
Scripts for Tables and Inserts:

#1: Frequent Flyer Master table
  CREATE TABLE FREQ_FLYER
   (     "FREQ_FLYER_NO" VARCHAR2(4 BYTE), 
     "FREQ_FLYER_LAST_NAME" VARCHAR2(30 BYTE), 
     "FREQ_FLYER_FIRST_NAME" VARCHAR2(30 BYTE)
   );
REM INSERTING into FREQ_FLYER
SET DEFINE OFF;
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1001','Taylor','David');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1002','Green','Robert');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1003','McWilliams','Cynthia');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1004','Poppins','Mary');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1005','Longnose','Pinochio');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1006','Brown','Edward');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1007','Menace','Dennis');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1008','Black','Monica');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1009','Dombrowski','Tom');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1010','Brown','Craig');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1011','Hernandez','Elsa');
Insert into FREQ_FLYER (FREQ_FLYER_NO,FREQ_FLYER_LAST_NAME,FREQ_FLYER_FIRST_NAME) values ('1012','Williams','Brian');
--------------------------------------------------------
--  Constraints for Table FREQ_FLYER
--------------------------------------------------------

  ALTER TABLE FREQ_FLYER MODIFY ("FREQ_FLYER_NO" NOT NULL ENABLE);
Table # 2: registration
  CREATE TABLE FREQ_FLYER_ENROLLMENT
   (     "FREQ_FLYER_NO" VARCHAR2(4 BYTE), 
     "START_DATE" DATE, 
     "END_DATE" DATE
   );
REM INSERTING into FREQ_FLYER_ENROLLMENT
SET DEFINE OFF;
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1001',to_date('12-JAN-90','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1002',to_date('17-JAN-90','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1003',to_date('31-DEC-95','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1004',to_date('30-DEC-95','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1005',to_date('01-JAN-00','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1006',to_date('02-JAN-00','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1007',to_date('31-JAN-00','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1008',to_date('30-OCT-11','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1009',to_date('01-MAR-12','DD-MON-RR'),null);
Insert into FREQ_FLYER_ENROLLMENT (FREQ_FLYER_NO,START_DATE,END_DATE) values ('1010',to_date('31-MAR-12','DD-MON-RR'),null);

--------------------------------------------------------
--  Constraints for Table FREQ_FLYER_ENROLLMENT
--------------------------------------------------------
  ALTER TABLE FREQ_FLYER_ENROLLMENT MODIFY ("FREQ_FLYER_NO" NOT NULL ENABLE);
  ALTER TABLE FREQ_FLYER_ENROLLMENT MODIFY ("START_DATE" NOT NULL ENABLE);
Table #3: survey
  CREATE TABLE FREQ_FLYER_SURVEY
   (     "FREQ_FLYER_NO" VARCHAR2(4 BYTE), 
     "SURVEY_DATE" DATE
   );

SET DEFINE OFF;
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1001',to_date('01-JAN-91','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1002',to_date('01-FEB-91','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1003',to_date('01-JAN-96','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1003',to_date('01-JAN-97','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1003',to_date('01-JAN-98','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1004',to_date('31-DEC-95','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1004',to_date('12-FEB-11','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1005',to_date('12-MAR-11','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1005',to_date('12-APR-12','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1006',to_date('10-APR-10','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1007',to_date('10-APR-10','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1008',to_date('31-JUL-12','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1009',to_date('31-JUL-12','DD-MON-RR'));
Insert into FREQ_FLYER_SURVEY (FREQ_FLYER_NO,SURVEY_DATE) values ('1009',to_date('02-AUG-12','DD-MON-RR'));
--------------------------------------------------------
--  Constraints for Table FREQ_FLYER_SURVEY
--------------------------------------------------------

  ALTER TABLE FREQ_FLYER_SURVEY MODIFY ("FREQ_FLYER_NO" NOT NULL ENABLE);
Table # 4: flights
  CREATE TABLE FREQ_FLYER_FLIGHTS
   (     "FREQ_FLYER_NO" VARCHAR2(4 BYTE), 
     "FLT_NO" VARCHAR2(4 BYTE), 
     "FLT_DATE" DATE
   );
REM INSERTING into FREQ_FLYER_FLIGHTS
SET DEFINE OFF;
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1001','1234',to_date('01-JAN-00','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1001','1234',to_date('01-JAN-12','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1001','2345',to_date('01-AUG-12','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1002','1234',to_date('01-FEB-95','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1002','2345',to_date('01-AUG-12','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1002','2346',to_date('04-AUG-12','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1003','1234',to_date('01-DEC-00','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1003','2346',to_date('01-JAN-01','DD-MON-RR'));
Insert into FREQ_FLYER_FLIGHTS (FREQ_FLYER_NO,FLT_NO,FLT_DATE) values ('1010','1234',to_date('01-JUL-12','DD-MON-RR'));
--------------------------------------------------------
--  Constraints for Table FREQ_FLYER_FLIGHTS
--------------------------------------------------------

  ALTER TABLE FREQ_FLYER_FLIGHTS MODIFY ("FREQ_FLYER_NO" NOT NULL ENABLE);
  ALTER TABLE FREQ_FLYER_FLIGHTS MODIFY ("FLT_NO" NOT NULL ENABLE);
Your help or suggestions are welcome.

Published by: Roxyrollers on August 7, 2012 17:39

Published by: Roxyrollers on 8 August 2012 08:35

Hello

Roxyrollers wrote:
... How to combine years of declaration in a column? When I select only the year of declaration of table e, I see just of 1990, 1995, 2000, 2011 and 2012 as well as whites for others who are picked up s table

If you want to e.reporting_year or s.reporting_year, that we're not NULL, no?

SELECT  COALESCE ( e.reporting_year
            , s.reporting_year
            )               AS reporting_year ...

If none of them is NULL, then it will return e.reporting_year, because it is listed first. In this issue, however, they will be always the same whenever the two are not NULL, because the join condition

on     e.reporting_year = s.reporting_year

whatever so that you put first in the list of arguments to COALESCE.

Published by: Frank Kulash, August 8, 2012 13:16

As always, if someone suggests to use something you don't know, look it up in the manual of approriate. It comes to SQL and PL/SQL forum, so usually the approriate manual is the manual of the SQL language, or PL/SQL manual. This problem involves no PL/SQL, so that it shrinks even more. It you are not familiar with COALESCE, and then look in the manual of the SQL language:
http://docs.Oracle.com/CD/E11882_01/server.112/e26088/functions030.htm#sthref995
You will see that it is similar to the NVL. Obviously, you are already familiar with NVL, but Jean and I suggested that you use COALESCE instead NVL. Could there be a reason?

Tags: Database

Similar Questions

  • Simultaneous inputs from different sources

    I am creating a resistively heated wire heating unit.  What I had planned to do, is to connect the wire to a programmable DC power supply that I would link to a USB-232 (Jack single port RS232).  I also want to integrate some temperature readings of a thermocouple placed near the heating unit.  I would connect the thermocouple to one of the analog channels of a PCI-6259 (M series).  Already, we have the PCI-6259 (and the connection block), but so far have not bought the power supply DC or USB-232.  Until we buy these, anyone know if this configuration is still possible?  I wasn't sure if it would be possible to have two separate entries, enter LabVIEW from two different sources (USB and PCI) simultaneously.  Also, are there any other ways I could do it easier?  I looked into analogue programmable power supplies DC, which I was in control of the PCI-6259, but these seem to be still more expensive than RS 232 controlled ones.

    Thanks in advance

    Hi Stephen.

    You can have devices to multiply the input/output, how you design your code will detemin how well that work. The USB port can produce at the same time as the PCI card is entered. The channels you create what you will specify aquire and when.

    What is the programmable DC power you are looking at?

  • How can I use notifications to send data from different sources for the same chart?

    Hello

    I use the model of 'Continuous measurement and logging' project comes with LV 2013.

    It is extremenly helpful in understanding the messaging between the acquisition, graphic and loops of newspaper. (Thank you NEITHER!)

    I ran into a snag though.

    I want to change so that my graphic loop receives notifications of data from two sources of acquisition by the declarant.

    I have trouble getting the data from the two sources to display on one graph.

    I've isolated the problem in the attached vi.

    Here's what happens:

    1. I create 2 parallel loops data and send the data to a third parallel loop with the notifiers.

    2. the third loop receives data from one of the loops because one of the authors of just receiving notifications is to expire instead of receive data.

    Can anyone suggest how can I fix?

    Thank you.

    -Matt

    Here's my modification of your VI. I put notes on the block diagram to explain the changes. He uses a queue for data transfer to avoid data loss. It uses a notifier to stop loops. All local variables and value property nodes have been eliminated.

    The way loops are arrested probably let some data in the queue. No more of one or two iterations of each of the loops of data acquisition. If you need ensure that all data has been displayed (or recorded in a real application), then you must stop acquiring loop first and read the queue until you know it's empty and both other loops stopped. Then stop the render loop and release the queue and the notifier.

    Lynn

  • I receive several copy emails from various sources

    Recently, I started to receive multiple copies of email from some (but not all), from various sources.  Anyone know how to stop this please?

    Norton and Windows Mail do not agree.  The best is to uninstall Norton (use both their removal tool) and get something less invasive, such as www.microsoft.com/security_essentials , who does not have these problems.  Then withdraw your mail account close and re-open WinMail, and then add it again.  Which will fix all the problems that created the antivirus software.

    Steve

  • Dimension & fact from different Sources

    Hi all


    I was following the situation.
    (1) I have dimension of source who sits in EDW
    (2) my requirement is to create in time real made leave OLTP source B and create a report on DimA and FactB. To do this, I created a display in RPD and created FactB on it. On his own college B works very well with the fictitious dimension.
    (3) I'm fighting to join Dimension A(source A) with B (source B) done. There are the ID running between the two, but I do not know how to establish the relationship.


    Here's what I did and failed so far
    (a) join created between B done with Dimension A in the diagram of business model. "It did not work and gave me an error" [nQSError: 14025] indeed no table exists at the level of detail required.
    (b) in the fragmented content of the fact table, I gave this instruction to join FactB. ID = DimA.ID.It didn't work and I got following error ' none of the sources done B are compatible with the retail [] filter. " (HY000) »
    (c) together two steps above i.e. joined the FactB with DimA diagram of business model and content fragmented facts table this instructed to join FactB. ID = DimA.ID. Had the same error above b.
    (d) every time that I made levels are configured correctly.
    (e) I can not add logical dimension source Table because there is no physical relationship between two tables
    (f) also tried several logical Table Source but don't know how/where to join two tables.

    It seems that mine is not the case of the Federation of the horizontal, correct me if I'm wrong. Could someone suggest how to model this case in the DR.

    Sorry for the long post and thank you in advance for your valuable opnion.

    Thanks Christian. Email from Jeff helped me solve the problem. I assumed (not practical enough) that I can not create a physical link between the tables in two databases. OBIEE actually allows you to do. This solved my problem and everything works fine now.

    So the solution above the problem is "OBIEE allows you to create a physical link between two tables of different databses.

    Thanks again for your help.

  • Data changed from different sources

    I have a problem with obtaining data in an AB ML1200 PLC. I'm simplifying this to explain: I have given in reg N7:0 which is the result of a calculation. Lets say

    "N7:0 = TextEntry1.value * 10. All right, but there is an another local HMI, who wrote also in N7:0. Although the value of this local HMI N7:0 illustrates the variation reflected the Calc above the Belvedere, any attempt to change the value N7:0 of the local GUI is substituted by the Calc. I need to be able to change the value of the local HMI and update the "TextEntry1.value" to reflect the change has Lookout. It sounds simple enough, but it is Kickin ' my ass! As a sidenote I would not have this problem if the AB driver on the lookout for the sustained MicroLogix float regs (F) - I was little shocked, that he did not. Any ideas?

    Looks like you need the connection on the remote source. For example, to create a pot. On the properties page, change its source away to the N7:0. It will also be well read and write the connection.

    But you also have to mutiply the value by 10, so you can first create an Alias on N7:0 by right-clicking the driver object and select Edit Configuration data members. Entry of scale, for example, the gross value of 0 to 100 and eng value between 0 and 10, so that this Alias will represent the value of N7:0 / 10. Give a name to this Alias. And then bind source away from the pot to this Alias. Have a try.

  • iMovie 10 - how to merge the events from different sources?

    I libraries iMovie on 2 hard drives and in iMovie on two iMacs files both running iMovie 10.1.1

    How can I copy all my events on a single hard drive but leave the events and projects on both iMacs?

    The projects will move at the same time or how can I move them as well?

    Thanks for any help possible!

    You can copy events from one library to another of in iMovie.  See:

    http://help.Apple.com/iMovie/Mac/10.1/#/mov3fa25bae7

    For more details.

    Geoff.

  • Easy way to synchronize the audio left and right, from different sources?

    I mainly filmed concerts of a single camera using a Sony Z1 - when they are available, I'll take a sound card feeds channel 1, and a live auditorium feed a microphone mono channel 2. Because of the distance of the scene (and light is faster than sound, etc.), the power of the sound card is synchronized with the video and power of the auditorium is between 1 and 3 frames behind. Is there an easy way for me to take the tray clips together and just move this auditorium feed back in sync with the video and sound card feed, raw clips?

    Previously, I did this by dropping the clips to the timeline, done to separate tracks, sliding manually sync on the auditorium that feed by the required number of frames and link everything back up again. Synchronize audio visually using the waveform display (before first CC).

    I have two problems with this in Adobe first CC. First, the audio waveforms are not like waveforms more (and it doesn't seem to be possible to change the display to the old way?). So now that I am syncing the auditorium that feed in sound only, because I don't see anything on the screen to sync any more - both channels just look like random noise (or almost).

    Secondly, I film some events of multi camera, and of course, I'd like to be able to use the new functionality of synchronization for the multicam. But I know in advance that the audio channels on all the clips are not synchronized with the video (the camera powered by the sound card will be synchronized, the camera takes live food out as indicated above). Surely, there must be a way where I can fix the sync audio to video on raw clips first, before you say Adobe to synchronize based on the audio clips? Otherwise it will all be misaligned and require adjustment of the manual sync anyway? Again, what I've done previously is set of benchmarks on the identical frames, multi camera sync (so the video is now just good) and then manually set the audio synchronization before editing.

    In the context menu for the timeline, you can uncheck rectified of Audio waveforms for their return to normal.  (I wish that Adobe does not have this as default.  It's just weird.)

    But to synchronize, you can only do in the order.

  • L50-A-19N satellite can not read audio data from multiple sources

    I can't read the audio data from multiple sources. It is very annoying when I have 2 youtube videos, playing, if I start playing something on the media player, there is no sound on media player, it's the same when I have 2 open media players and 1 youtube video playing, youtube video has no sound...
    It disappears when I plug my headphones...

    I already have all the latest drivers, the DTS driver was last updated was in 2014, his day of February of this year...






    25/02/14

    DTS Inc. Windows 8.1 - 64 Bit 1.01.2700

    I don't know if this has the feel, but I had his most recent DTS driver that I found, it is not my laptop model, but they all seem to be the same - v1.1.88.0
    I uninstalled the DTS software and still had the same problem, then it is irrelevant on its driver somehow...






    02/10/15

    Integrated Device Technology Inc. Windows 8.1 - 64 Bit 6.10.6491.0

    Audio driver IDT has more recent release date, but the version of the driver is the same as the 2013 one...
    Why the older drivers of toshiba releaseing as 'NEW '?

    2nd is my Advanced settings speakers, nothing has changed when I disabled "allow applications to take exclusive control of this device.

    Sorry but I don't understand your problem.
    I tested it on my machine and if I start the music on three different sources (YouTube, player, web radio) I can hear all together, but it makes no sense to listen to music from different sources.

    Or how do understand you?

  • Hi, I use lightroom 5 and have been for several years.  Today I imported several batches of today images from different cameras without any problem, but the images of a particular card (with an incredibly large memory) does not matter.

    Hi, I use lightroom 5 and have been for several years.  Today I imported several batches of today images from different cameras without any problem, but the images of a particular card (with an incredibly large memory) does not matter.  I see other people have had similar problems, but I am not able to follow these solutions and would very much help here.  I have an IMac.

    If you had probably two problems

    Permissions, the other is the hardware problem causing slow import and the card cannot be read by your operating system.

  • Greek subtitles from any source for my Toshiba 32L 4333

    I thing I tried everything. Another encoding (utf8, ansi, unicode), different formats, different sources (usb, dlna) subtitles but it seems I can't do (Greek) subtitles are displayed.

    I can't understand what I'm doing wrong. Any suggestions?

    As much as I know, that subtitles don't are not supported via DLNA.

    But play video files from USB, it should be possible to activate the subtitles.
    Video files must be in the format of MKV file. Subtitles should be stored in the srt file in the movie folder. The srt file also supports the UTF-8 format.

    Select UTF-8 standard, text editor such as Notepad ++.
    Then, you choose the character set and I also choose the option convert to UTF - 8.

  • How to remove a computer from my working group under XP and Windows 7?

    We have recently implemented a network composed of our three computers (2 XP) Home Office and 1 Windows 7 to share files and printers.

    However, we found its malfunction and could not share what we expect.  One of the reasons, we can see it, could be one of the computers have been infected.

    So, we try to remove this computer from the working group.

    However, no matter how hard I searched on Internet, there is no way to remove the infected computer's existing working group.

    There that experts can help us?

    Thank you very much!

    Hello

    You cannot remove a computer from a working group, but you can change the name of the working group.

    http://support.Microsoft.com/kb/295017

    http://www.SevenForums.com/tutorials/51711-workgroup-name-view-change.html

    But that will not necessarily mean that they are not accessible by other computers on the network, or it will necessarily make the other less likely to be infected through this PC computers.

    The only way to "withdrawal" of a computer on a network is to unplug the network cable or remove the name of the wireless network.

    If you are concerned about a possible infection, you must get the malware to day and scan for malware protection.

    However, I suspect it's more likley your problems are caused by the lack of knowledge in the topic network different Windows operating system. This can help...

    http://Windows.Microsoft.com/en-us/Windows7/networking-home-computers-running-different-versions-of-Windows

    If you are having specific problems post back with details and someone will almost certainly try to help.

    Tricky

  • I ran several analyzers antivirus from AVG to ODILE and none of them does not seem to get rid of this virus (Exploit: win32 / pdfjsc.dr)

    I ran several analyzers antivirus from AVG to ODILE and none of them does not seem to get rid of this virus (Exploit: win32 / pdfjsc.dr)

    Any suggestions apart from simply all formatting?

    Hello

    Exploit: Win32 / Pdfjsc.Dr
    http://www.Microsoft.com/security/portal/threat/encyclopedia/entry.aspx?name=exploit%3aWin32%2fPdfjsc.Dr

    If you need search malware here's my recommendations - they will allow you to
    scrutiny and the withdrawal without ending up with a load of spyware programs running
    resident who can cause as many questions as the malware and may be harder to detect as
    the cause.

    No one program cannot be used to detect and remove any malware. Added that often easy
    to detect malicious software often comes with a much harder to detect and remove the payload. Then
    its best to be thorough than paying the high price later now too. Check with them to one
    extreme overkill point and then run the cleaning only when you are sure that the system is clean.

    It can be made repeatedly in Mode safe - F8 tap that you start, however, you must also run
    the regular windows when you can.

    TDSSKiller.exe. - Download the desktop - so go ahead and right-click on it - RUN AS ADMIN
    It will display all the infections in the report after you run - if it will not run changed the name of
    TDSSKiller.exe to tdsskiller.com. If she finds something or not does not mean that you should not
    check with the other methods below.
    http://support.Kaspersky.com/viruses/solutions?QID=208280684

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone.
    (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/products/malwarebytes_free

    SuperAntiSpyware Portable Scanner - free
    http://www.SUPERAntiSpyware.com/portablescanner.HTML?tag=SAS_HOMEPAGE

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can
    Download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with others
    security programs. It is a single scanner, VERY EFFICIENT, if it finds something to come back
    here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp?prevx=Y  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software
    (viruses, Trojans, rootkits, etc.). who infected your computer despite safe
    what you have done (such as antivirus, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

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

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

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

    Original version is now replaced by the Microsoft Safety Scanner
    http://OneCare.live.com/site/en-us/default.htm

    Microsoft safety scanner
    http://www.Microsoft.com/security/scanner/en-us/default.aspx

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

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

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

    After the removal of malicious programs:

    Also follow these steps for the General corruption of cleaning and repair/replace damaged/missing
    system files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    RUN - type in the box-

    sfc/scannow

    Then run checkdisk (chkdsk).

    RUN - type in the box-

    Chkdsk /f /r

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

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    ================================

    For extreme cases:

    Norton Power Eraser - eliminates deeply embedded and difficult to remove crimeware
    This traditional antivirus analysis does not always detect. Because the Norton Power Eraser
    uses aggressive methods to detect these threats, there is a risk that it can select some
    legitimate programs for removal. You should use this tool very carefully and only after
    you have exhausted other options.
    http://us.Norton.com/support/DIY/index.jsp

    ================================

    If you are in North America, you can call 866-727-2338 for virus and spyware help
    infections. See http://www.microsoft.com/protect/support/default.mspx for more details. For
    international information, see your subsidiary local Support site.

    Microsoft support - Virus and Security Solution Center
    http://support.Microsoft.com/contactus/cu_sc_virsec_master?ws=support#TAB0

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • I bought a new hard drive. I don't have a system recovery disk. Can I load Windows Vista from another source and activate using my original product key?

    I bought a new hard drive. I don't have a system recovery disk. Can I load Windows Vista from another source and activate using my original product key?

    Hello

    There is no download available from Microsoft Vista.

    Contact the manufacturer of your laptop and ask them to send a set of recovery disks.

    They should do this for a small fee.

    "How to replace Microsoft software or hardware, order service packs and replace product manuals.

    http://support.Microsoft.com/kb/326246

    Some manufacturers have more available Vista recovery disks.

    If this happens, you may need to try this instead:

    You can also borrow and use a Microsoft Vista DVD, which contains the files for the different editions of Vista (Home Basic, Home Premium, Business and Ultimate) must be installed. The product key determines which Edition is installed.

    Builders recovery DVDs are should not be used for this purpose.

    And you need to know the version of 'bit' for Vista, as 32-bit and 64-bit editions come on different DVDs

    See you soon.

    p.s. If the old hard drive is still installed and running before you change on hard drives and you never received the to purchase recovery discs, you can make the recovery discs from the recovery Partition which should be on the old hard drive. You will need to request that the manufacturer how to do as each computer manufacturer has their own way of making records of this partition recovery.

    It depends on the old hard drive still works.

  • Cannot read the files Works! from other sources.

    I have a Windows 7 computer and that you have installed Microsoft Works Suite 2006.  When I receive a file Works from another source, I can't open the file.

    He has a box that stands up and say: work could not open the selected project.  The file is possibly corrupted.

    There is nothing wrong with the file, as I open it upwards on another computer with XP market with a previous version of Works on it.

    The file extension is a WDB file.  I uninstalled this program several times and reinstalled without success.

    Can someone tell me why I can't open these files?

    Thanks in advance

    Hello

    If you have Microsoft Works installed on Windows XP, use just the Works database to export and save the database in CSV or other transferable format that can be used to import into Excel, Access, or another program.

Maybe you are looking for