Decode help....

Hi,
I have a query given below:
select * from service_user_mst ssr
where ssr.platform_type like '%&platform_type%' AND
ssr.qualification like '%&qualification%'
I need to execute query like this:
If platform_type value is null at input then do the like comparison as shown above. If value of platform_type is provided at run time then check with that value. Same Logic to be applied for qualification column and if both are null then return everything from that table. Basically, if then else in where clause and that too I need in a query only..
Can anyone help please..?
Thanks,
JP

Will UNDEF or ACCEPT work in Java...?If this is going to be coded in Java it doesn't matter. The JDBC call can handle putting the same value in multiple placeholders.
Although if this was me I would want to code a PL/SQL function that accepts parameters and returns a resultset (i.e. ref cursor). Embedded SQL in java programs is Teh Suck!
Cheers, APC

Similar Messages

  • Query on Decode --help reqd

    Hi
    I am executing a query:
    select vetno,category from vetno where vetno.category IN (select decode (REP_VET_CATG,NULL,'('A','B')','REP_VET_CATG') from dual);
    The REP_VET_CATG variable takes the value from the GUI.
    I want the functionality such that if it is NULL then the query should be
    select vetno,category from vetno where vetno.category IN ('A','B');
    else
    Take the values that is passed i.e the query should be like this
    select vetno,category from vetno where vetno.category = 'REP_VET_CATG';
    I tried the above query but it gives me a error missing right paranthesis.
    Can anyone help ......with this OR suggest a better alternative..

    Do you mean this?
    SQL> create table vetno
      2  as
      3  select 1 vetno, 'A' category from dual union all
      4  select 2, 'B' from dual union all
      5  select 3, 'C' from dual
      6  /
    Tabel is aangemaakt.
    SQL> var REP_VET_CATG varchar2(1)
    SQL> exec :REP_VET_CATG := null
    PL/SQL-procedure is geslaagd.
    SQL> select vetno
      2       , category
      3    from vetno
      4   where (   :REP_VET_CATG is null
      5         and vetno.category in ('A','B')
      6         )
      7      or (   :REP_VET_CATG is not null
      8         and vetno.category = :REP_VET_CATG
      9         )
    10  /
                                     VETNO C
                                         1 A
                                         2 B
    2 rijen zijn geselecteerd.
    SQL> exec :REP_VET_CATG := 'C'
    PL/SQL-procedure is geslaagd.
    SQL> select vetno
      2       , category
      3    from vetno
      4   where (   :REP_VET_CATG is null
      5         and vetno.category in ('A','B')
      6         )
      7      or (   :REP_VET_CATG is not null
      8         and vetno.category = :REP_VET_CATG
      9         )
    10  /
                                     VETNO C
                                         3 C
    1 rij is geselecteerd.Regards,
    Rob.

  • TDMS Timestamp Decoding - Help!!

    I am in need of help with decoding the timestamp in TDMS files.  Specifically in the properties section.  The following (very vague documentation) provides limited details:
    http://zone.ni.com/devzone/cda/tut/p/id/5696
    Specifically looking for bit definition of the "tdstimestamp" type.  As an example I extract the following hex values from a TDMS file:
    44 00 00 00 EA D8 C5 AC 4F 9E 56 BC C2 2F F3 C3 00 00 00 00
    I know that the first four bytes (44 00 00 00) signify the timestamp datatype, but how do I decode the remaining bytes.    The approximate time of above is 11:55:41AM on March 4, 2008.
    Thanks for any help!

    Matt - Thanks, that works great!!
    Dave,  I see that the MATLAB pluggin was just updated to include MATLAB 2008b.  We take data in our labratory using the TDMS format.  When we distribute this to other researchers, they often use MATLAB (and of course Labview). 
    For about a year now, the Matlab pluggin has been out of date and would not work with the last 3 releases of MATLAB.  Since it is a compiled C library, we're stuck and can not modify it.  As the internal TDMS format is not changing and only low level matlab commands are required to read it, I believe that Matlab users have been looking for a simple Matlab function to just take a tdms file and make a similar .mat file (not a dll).  This is what I have done (and thanks to Matt for the timestamp help).
    The Excel TDMS add-in is very nice and is a good reason to use the TDMS format (in addition to its good support in VI libraries), but I often have to fend off requests to write large ASCII or flat binary files (in addition to our TDMS files) so that they can be read in MATLAB.  I don't want to have the burden of making/distributing a LV executable that makes this interim file format and then creates a .mat file.   

  • Decode help in SQL function

    Hi,
    I'm writing an HTMLDB application that we will be using to track the number of hours that we put into a project (all projects), and I've got a routine that returns the number of hours that are possible within a given month M-F 8 hours a day. I use this value returned to indicate how many hours have been enterered.
    SELECT null link, 'Still Unrecorded' itsrdescr,trueworkdays(:P80_START,:P80_END)*8-(select sum(hoursworked) ihoursworked from workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END) hoursworked
    from dual
    UNION
    SELECT null link, wd.itsrdescr,sum(b.hoursworked) hoursworked
    FROM workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END
    GROUP by wd.itsrdescr
    ORDER by hoursworked desc
    What I'm wanting is something along the lines of this:
    SELECT null link, 'Still Unrecorded' itsrdescr,decode((trueworkdays(:P80_START,:P80_END)*8-(select sum(hoursworked) ihoursworked from workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END)),<0,0,?????????) hoursworked
    from dual
    UNION
    SELECT null link, wd.itsrdescr,sum(b.hoursworked) hoursworked
    FROM workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END
    GROUP by wd.itsrdescr
    ORDER by hoursworked desc
    which will include a decode statement to let me know when the value getting returned into hoursworked on that first column is less than zero which throws off the chart. In this particular case, it has a value of -6 which makes all my percentages go haywire. How would one code this statement to include a decode statement to find out if that sum is returning a negative number?
    Hope this made sense,
    TIA,
    cliff

    Hey Tyler,
    Actually.... It kinda killed the server. I'm trying to figure out a way to get the following functionality in a different way. Here is the way that the query turned out using the case statement.
    SELECT null link, '<b><font color="red">Still Unrecorded</font></b>' itsrdescr,
    (case
    when (trueworkdays(:P80_START,:P80_END)*8-(select sum(hoursworked) ihoursworked from workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END)) < 0 then 0
    else
    (trueworkdays(:P80_START,:P80_END)*8-(select sum(hoursworked) ihoursworked from workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END))
    end) hoursworked
    from dual
    UNION
    SELECT null link, wd.itsrdescr,sum(b.hoursworked) hoursworked
    FROM workdetail wd, breakdowns b
    WHERE wd.workdetailid = b.itsrnum and b.oid = upper(:P80_DEVELOPER) and dateworked between :P80_START and :P80_END
    GROUP by wd.itsrdescr
    ORDER by hoursworked desc
    Any tips on what I could do to get the above functionality without killing my server.
    Thx for the input
    cliff

  • Decode help in sql

    i m writing an sql query to print records
    select role_name,date_created,date_modified,createdbyuser_id,modifiedbyuser_id from t_role;
    This returns me the the rows in table t_role.
    But what i want is instead of the id of the person being printed in createdbyuser_id and modifiedbyuser_id, it shud provide me the username from another table user by checking the user_id field of table user.For this i used the fuction decode .But it oesnt work
    select role_name,date_created,date_modified,(select user_name from user where user_id=createdbyuser_id),(select user_name from user where user_id=modifiededbyuser_id) from role;
    kindly point out the mistake.
    Shefali

    <<
    i m writing an sql query to print records
    >>
    and
    <<
    1) tried this
    select a.role_name,a.date_created, a.date_modified, b.user_name, c.user_name from role a, user b, user c where b.user_Id = a.createdbyuser_Id and c.user_Id = a.modifiedbyuser_Id;
    But getting this error::
    ORA-20001: Your query contains duplicate alias names, queries used for reports require unique alias names.
    Error saving column settings
    >>
    so you are working with report writer ?
    the error message is telling you all you need.
    just change :
    select  a.role_name ,a.date_created, a.date_modified
          , b.user_name, c.user_name
      from  role a, user b, user c
    where b.user_Id = a.createdbyuser_Id
       and c.user_Id = a.modifiedbyuser_Id
    ;to
    select  a.role_name ,a.date_created, a.date_modified
          , b.user_name_creator, c.user_name_modifier
      from  role a, user b, user c
    where b.user_Id = a.createdbyuser_Id
       and c.user_Id = a.modifiedbyuser_Id
    ;

  • I installed a hp dvd rw in my computer,put it wouldnt play because i dont have a dvd decoder help

    Hi, I installed an hp dvd lightscrid 840rw on my computer.It didnt have one before it seems to be working ok as i installed a burning program with it,But when i try to play a dvd movie with windows media player it keeps telling me that i dont have a dvd decoder installed on my computer,so how do i get that,as i said the burn program was nero11 but that didnt help

    Hi,
    Try installing the standard codec pack on the link below as this contains the mpeg-2 decoder required for dvd playback - during the installation, just accept the default suggestions.
    http://www.codecguide.com/download_k-lite_codec_pack_standard.htm
    After the installation has completed, restart the PC.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Sql decode help

    I have the following 3 tables:
    Table A
    Id (Number)
    Id#2 (Number)
    Type (Number)
    Table B
    Id#2 (Number)
    Decription (Varchar2)
    Table C
    Id#2 (Number)
    Decription (Varchar2)
    I want to write a select statement that would return:
    Id from Table A,
    Description (If type in Table A = 1 then get description from Table B, if type in Table A= 2 then get description from Table C)
    Can anyone please help?

    Well, one of the things I've learned is "It always depends, you always need to test the defferent scenario's.."
    But still I have to agree on this one with you, see the results I got:
    SQL> select banner from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    NLSRTL Version 10.2.0.4.0 - Production
    Elapsed: 00:00:00.03
    SQL> set autotrace traceonly
    SQL> drop table a;
    Table dropped.
    Elapsed: 00:00:00.37
    SQL> drop table b;
    Table dropped.
    Elapsed: 00:00:00.34
    SQL> drop table c;
    Table dropped.
    Elapsed: 00:00:00.32
    SQL> create table a  as
      2  select level id,
      3         level id2,
      4         case when rownum <= 500000 then 1 else 2 end type
      5  from dual
      6  connect by level <= 100000;
    Table created.
    Elapsed: 00:00:08.18
    SQL> create table b  as
      2  select level id2, 'description table b' description
      3  from dual
      4  connect by level <= 50000;
    Table created.
    Elapsed: 00:00:01.06
    SQL> create table c  as
      2  select 50000+level id2, 'description table c' description
      3  from dual
      4  connect by level <= 50000;
    Table created.
    Elapsed: 00:00:01.67
    SQL> alter table a modify id primary key;
    Table altered.
    Elapsed: 00:00:01.06
    SQL> alter table b modify id2 primary key;
    Table altered.
    Elapsed: 00:00:00.37
    SQL> alter table c modify id2 primary key;
    Table altered.
    Elapsed: 00:00:00.37
    SQL> begin
      2   dbms_stats.gather_table_stats(user, 'A');
      3   dbms_stats.gather_table_stats(user, 'B');
      4   dbms_stats.gather_table_stats(user, 'C');
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.68
    SQL> SELECT a.id,
      2         CASE
      3           WHEN a.TYPE = 1 THEN
      4            b.description
      5           WHEN a.TYPE = 2 THEN
      6            c.description
      7         END description
      8    FROM a,
      9         b,
    10         c
    11   WHERE a.id2 = b.id2(+)
    12     AND a.id2 = c.id2(+);
    100000 rows selected.
    Elapsed: 00:00:11.06
    Execution Plan
    Plan hash value: 1054766904
    | Id  | Operation              | Name | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT       |      |   100K|  5859K|       |   676   (1)| 00:00:09 |
    |*  1 |  HASH JOIN RIGHT OUTER |      |   100K|  5859K|  1728K|   676   (1)| 00:00:09 |
    |   2 |   TABLE ACCESS FULL    | C    | 49082 |  1150K|       |    50   (0)| 00:00:01 |
    |*  3 |   HASH JOIN RIGHT OUTER|      |   100K|  3515K|  1800K|   313   (1)| 00:00:04 |
    |   4 |    TABLE ACCESS FULL   | B    | 51064 |  1196K|       |    50   (0)| 00:00:01 |
    |   5 |    TABLE ACCESS FULL   | A    |   100K|  1171K|       |    60   (2)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - access("A"."ID2"="C"."ID2"(+))
       3 - access("A"."ID2"="B"."ID2"(+))
    Statistics
              0  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
              0  bytes sent via SQL*Net to client
              0  bytes received via SQL*Net from client
              0  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
         100000  rows processed
    SQL> select a.id,
      2         case
      3           when a.type = 1 then
      4            (select description from b b where b.id2 = a.id2)
      5           when a.type = 2 then
      6            (select description from c c where c.id2 = a.id2)
      7         end description
      8  from a a;
    100000 rows selected.
    Elapsed: 00:00:11.73
    Execution Plan
    Plan hash value: 3680219842
    | Id  | Operation                    | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |              |   100K|  1171K|    60   (2)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID | B            |     1 |    24 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN          | SYS_C0022091 |     1 |       |     1   (0)| 00:00:01 |
    |   3 |   TABLE ACCESS BY INDEX ROWID| C            |     1 |    24 |     1   (0)| 00:00:01 |
    |*  4 |    INDEX UNIQUE SCAN         | SYS_C0022092 |     1 |       |     1   (0)| 00:00:01 |
    |   5 |  TABLE ACCESS FULL           | A            |   100K|  1171K|    60   (2)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("B"."ID2"=:B1)
       4 - access("C"."ID2"=:B1)
    Statistics
              0  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
              0  bytes sent via SQL*Net to client
              0  bytes received via SQL*Net from client
              0  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
         100000  rows processedMy testcase differs from yours, since I added Primary Keys to the tables.
    I thought that to be more realistic, I hope you'll agree on that.
    That way the plan and time for the second query changes, ofcourse ;-) .
    It would be nice to know from Dausboy if our testcases were more or less representative for his situation anyway.

  • Basic Text Encoder/Decoder help

    Hi. I'm trying to make a Encoder/Decoder for a program to make the gamesaves safer, since they are in a .dat file and can be changed in Notepad. I was wondering if the Text can be Encoded (like a=l, b=m, ect) and decoded using a simple code before the UTF is written.

    Ok, now I have a bit of a problem. I am trying to at least read the hash using readByte(), but the hashes are different. This is the code I'm using:
    public void Load() //Load Script
         { try
                   md5Actor_2 = MessageDigest.getInstance("MD5","SUN");
                   md5Actor_1 = MessageDigest.getInstance("MD5","SUN");
                   md5_1 = md5Actor_1.digest(hash_1.getBytes());
                   md5_2 = md5Actor_2.digest(hash_2.getBytes());
              catch (NoSuchProviderException e1)
                   System.out.println(e1);
              catch (NoSuchAlgorithmException e2)
                   System.out.println(e2);
              //catch (UnsupportedEncodingException e3)
              //     System.out.println(e3);
              load = new FileDialog(dialog, "Load Game v1.1", FileDialog.LOAD);
              load.show();
              file_name = load.getFile();
              f = new File(file_name);
              long modified = f.lastModified();
              if(debug)
                   System.out.println("Last modified:");
                   System.out.println(modified);
              if (f != null)
              { if (file_name != null)
                   { try
                             FileInputStream fis = new FileInputStream(file_name);
                             DataInputStream dis = new DataInputStream(fis);
                             level = dis.readUTF(); //level
                             cur_HP = dis.readUTF(); //cur_HP
                             max_HP = dis.readUTF(); //max_HP
                             atk_str = dis.readUTF(); //atk_str
                             def_str = dis.readUTF(); //def_str
                             cur_exp = dis.readUTF(); //cur_exp
                             exp_ned = dis.readUTF(); //exp_ned
                             loc_x = dis.readUTF(); //loc_x
                             loc_y = dis.readUTF(); //loc_y
                             temp_md5_1[1] = dis.readByte();
                             temp_md5_2[1] = dis.readByte();
                             System.out.println(md5_1+"     "+temp_md5_1);
                             System.out.println(md5_2+"     "+temp_md5_2);
                             if (temp_md5_2 != md5_2)
                                  System.out.println("File Cannot be Loaded. Please Create a new GameSave");
                                  success = false;
                             else
                                  System.out.println("File Loaded Sucessfully: " + file_name);
                                  success = true;
                             if(success)
                             { if (temp_md5_1 != md5_1)
                                       System.out.println("The GameSave is out of date. Saving the game will update "+file_name+"'s GameSave Version");
                             fis.close();
                        catch (Exception e)
                             System.out.println("There was an Error Loading the File: " + file_name);
                             System.out.println(e);
                   if (success)
                        stats_txf.setText("Lvl: "+level+" Health: "+ cur_HP +"/"+ max_HP+"   Exp: "+cur_exp+"/"+exp_ned);
                        loaded = true;
                        setTitle(title+": "+ file_name);
         }Now, I may be reading the file wrong. I know the hash has a length of 16, but if I try to read 16 bytes, I get an EOFException. And, if it's possible, I would like to know how to read an Byte[ ], and not just a Byte.

  • HELP!!!i can download files from the internet but i can not open them,help!

    I am running mac os x 10.5 i can download files from the internet but adobe reader 9 keeps telling me they can not decode them,( Adobe Reader could not open 'dap93.exe' because it is either not a supported file type or because the file has been damaged) (for example, it was sent as an email attachment and wasn't correctly decoded). help!
    Message was edited by: kjsk8n

    Adobe Reader does not open .EXE files, it opens .PDF files.  If you were on Windows I would tell you to fix the file association, but I have no idea how to do that on a Mac.

  • Assigning a java value(filepath) to a javascript variable

    I have a JSP where I have a java variable(obtained from session) which is nothing but a filepath(say C:\superb.xpdl). When I try to use the variable in javascript using var scriptVar = "<%= sessionVar %>";, the sessionVar value i.e. the filepath is getting modified (like C:superb.xpdl). Slashes are interpredted in a different way(\t for tab, \n for new line etc.,) How to get the filepath with no modifications while assigning to javascript variable? will encoding(using escape()) and decoding help?

    unfortunately you need to double up the slashes
    maybe this will work
    scriptVar = "<%= sessionVar.replaceAll("\\", "\\\\") %>";
    or maybe it will cause a infinite recursion problem (i'm too lazy to try it)

  • Serious performance issues and no sound???

    I just purchased a PM8M-V VIA P4M800 + VT8237 Chipset Basedd motherboard, for the primary reason that my EVGA GeForce 6600 GT 128MB video card was having random artifacts popping up all over the screen. My problem is my performance is very laggy (2 FPS in Battlefield 2...version 1.1.2554-356.0, lowest video quality settings, tried it at both 1024x768 and 800x600 and I've messed around with the desktop resolution); I opened up the task manager during battlefield 2 and it showed 100% PC usage, which never went down during the game. I set the video card AGP apeture size to 256 MB which helped the performance a tad. Also, the video swap memory I set to the lowest possible in the BIOS. Drivers for both the new mother board and the EVGA card are installed up to date. I ran Norton and Adaware, my comp is clean, and I also ran disk defrag. I haven't done disk cleanup, ETC but I figured something that small couldn't effect performance that bad. I saw something in the BIOS about changing the AGP Voltage, not sure if I should screw with this setting
    My second problem is I have no sound. My sound is a built in card and it reads, verbatum (from the Motherboard manual)
    AC97 link controller integrated in VT8237R
    Realtel ALC655 6-Channel Software audio codec
       - Compliant with AC97 v2.2 spec
    Again, the drivers are all up-to-date on the sound, as well
    Here again are my PC stats
    MSI PM8M-V motherboard
    VIA P4M800 + VT8237 Chipset Based
    Intel 2.0 GHZ Processor
    1 gig RAM
    EVGA GeForce 6600GT 128MB video
    40 GB hardrive which isn't full
    Upgraded power supply to handle all of the hardware
    The EVGA card isn't the problem; I'm positive of that because I already returned it to newegg.com and they sent me a new one that had the same problem. Any other suggestions? Again, performance is horrible and I have no sound, even with updated drivers
    please, reply to this post, or email me a solution at [email protected].  I'm desperate to use my $400 in computer stuff I bought
    If you want, I can email you the dxdiag.txt file, I've heard that can help greatly to see that info...

    dxdiag.txt part 2
    DirectX Components
       ddraw.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 292864 bytes
     ddrawex.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 24336 bytes
       dxapi.sys: 5.00.2180.0001 English Final Retail 5/8/2001 08:00:00 10064 bytes
        d3d8.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1201152 bytes
     d3d8thk.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 7168 bytes
        d3d9.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1703936 bytes
       d3dim.dll: 5.00.2180.0001 English Final Retail 12/12/2002 01:14:32 446224 bytes
    d3dim700.dll: 5.03.0001.0902 English Final Retail 5/30/2003 10:00:02 797184 bytes
      d3dref.dll: 5.00.2180.0001 English Final Retail 5/8/2001 08:00:00 93456 bytes
     d3dramp.dll: 5.00.2180.0001 English Final Retail 12/12/2002 01:14:32 591120 bytes
       d3drm.dll: 5.00.2134.0001 English Final Retail 12/12/2002 01:14:32 364816 bytes
      d3dxof.dll: 5.00.2135.0001 English Final Retail 12/12/2002 01:14:32 49424 bytes
    d3dpmesh.dll: 5.00.2134.0001 English Final Retail 12/12/2002 01:14:32 37648 bytes
       dplay.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 33040 bytes
      dplayx.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 230400 bytes
    dpmodemx.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 77824 bytes
     dpwsock.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 42768 bytes
    dpwsockx.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 79360 bytes
    dplaysvr.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 28160 bytes
      dpnsvr.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 16896 bytes
       dpnet.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 723968 bytes
    dpnlobby.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 3072 bytes
     dpnaddr.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 3072 bytes
     dpvoice.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 381952 bytes
    dpvsetup.exe: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 80896 bytes
      dpvvox.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 112128 bytes
      dpvacm.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 19968 bytes
    dpnhpast.dll: 5.03.0000.0901 English Final Retail 3/24/2003 10:00:02 32768 bytes
    dpnhupnp.dll: 5.03.0000.0901 English Final Retail 3/24/2003 10:00:02 68096 bytes
    dpserial.dll: 5.00.2134.0001 English Final Retail 5/8/2001 08:00:00 53520 bytes
      dinput.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 645120 bytes
     dinput8.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 664576 bytes
       dimap.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 44032 bytes
    diactfrm.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 459264 bytes
         joy.cpl: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 326144 bytes
       gcdef.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 206336 bytes
         pid.dll: 5.01.2600.0881 English Final Retail 10/30/2001 09:10:00 31744 bytes
    gameenum.sys: 5.00.2195.6655 English Final Retail 6/19/2003 12:05:04 9808 bytes
      dsound.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 381952 bytes
    dsound3d.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 1294336 bytes
      dswave.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 18432 bytes
       dsdmo.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 186880 bytes
    dsdmoprp.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 491520 bytes
      dmusic.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 122880 bytes
      dmband.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 27136 bytes
    dmcompos.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 58368 bytes
       dmime.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 181248 bytes
    dmloader.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 33280 bytes
     dmstyle.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 98816 bytes
     dmsynth.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 100864 bytes
    dmscript.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 76800 bytes
       dx7vb.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 602624 bytes
       dx8vb.dll: 5.03.0001.0902 English Final Retail 5/30/2003 10:00:02 1189888 bytes
     dxdiagn.dll: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 1769472 bytes
       mfc40.dll: 4.01.0000.6140 English Final Retail 5/8/2001 08:00:00 924432 bytes
       mfc42.dll: 6.00.9586.0000 English Beta Retail 6/19/2003 12:05:04 1015859 bytes
     wsock32.dll: 5.00.2195.6603 English Final Retail 6/19/2003 12:05:04 21776 bytes
    amstream.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 64512 bytes
     devenum.dll: 6.05.0001.0902 English Final Retail 5/30/2003 10:00:02 132608 bytes
      dxmasf.dll: 6.04.0009.1131 English Final Retail 3/2/2005 07:38:52 498717 bytes
    mciqtz32.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 34304 bytes
     mpg2splt.ax: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 136192 bytes
       msdmo.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 13312 bytes
      encapi.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 18944 bytes
        qasf.dll: 9.00.0000.2980 English Final Retail 12/11/2002 18:34:40 241664 bytes
        qcap.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 257024 bytes
         qdv.dll: 6.05.0001.0904 English Final Retail 7/9/2004 05:27:28 316928 bytes
        qdvd.dll: 6.05.0001.0904 English Final Retail 7/9/2004 05:27:28 470528 bytes
       qedit.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 1798144 bytes
    qedwipes.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 733184 bytes
      quartz.dll: 6.05.0001.0907 English Final Retail 8/30/2005 09:14:00 1227776 bytes
     strmdll.dll: 4.01.0000.3928 English Final Retail 6/19/2003 12:05:04 246544 bytes
     iac25_32.ax: 2.00.0005.0053 English Final Retail 5/8/2001 08:00:00 199680 bytes
      ir41_32.ax: 4.51.0016.0003 English Final Retail 5/8/2001 08:00:00 848384 bytes
     ir41_qc.dll: 4.30.0062.0002 English Final Retail 5/8/2001 08:00:00 120320 bytes
    ir41_qcx.dll: 0.00.0000.0000 English Final Retail 5/8/2001 08:00:00 338432 bytes
     ir50_32.dll: 5.2562.0015.0055 English Final Retail 5/8/2001 08:00:00 755200 bytes
     ir50_qc.dll: 5.00.0063.0048 English Final Retail 5/8/2001 08:00:00 200192 bytes
    ir50_qcx.dll: 5.00.0064.0048 English Final Retail 5/8/2001 08:00:00 183808 bytes
       ivfsrc.ax: 5.10.0002.0051 English Final Retail 5/8/2001 08:00:00 154624 bytes
    mswebdvd.dll: 6.05.0001.0900 English Final Retail 12/12/2002 01:14:32 324096 bytes
          ks.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 130304 bytes
      ksproxy.ax: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 117248 bytes
      ksuser.dll: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 4096 bytes
      stream.sys: 5.03.0001.0904 English Final Retail 7/9/2004 05:27:28 48512 bytes
    mspclock.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 5248 bytes
       mspqm.sys: 5.00.2134.0001 English Final Retail 9/25/1999 11:36:32 4816 bytes
     mskssrv.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 7424 bytes
      swenum.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 4096 bytes
       mstee.sys: 5.03.0000.0900 English Final Retail 12/12/2002 01:14:32 5504 bytes
     bdaplgin.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:04 16896 bytes
      bdasup.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:04 11392 bytes
      msdvbnp.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:18 52224 bytes
    psisdecd.dll: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:34 354816 bytes
     psisrndr.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:36 30208 bytes
       ipsink.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:06 14848 bytes
    mpeg2data.ax: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:12 57856 bytes
      ndisip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:30 10112 bytes
         mpe.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:10 15104 bytes
    streamip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:40 14976 bytes
    msvidctl.dll: 6.05.0001.0900 English Final Retail 7/9/2004 03:58:08 480256 bytes
        slip.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:38 10880 bytes
    nabtsfec.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:28 83968 bytes
    ccdecode.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:06 16384 bytes
      vbisurf.ax: 5.00.2157.0001 English Final Retail 5/8/2001 08:00:00 29968 bytes
       msyuv.dll: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:26 16896 bytes
     kstvtune.ax: 5.03.0001.0904 English Final Retail 7/19/2004 17:19:30 285696 bytes
       ksxbar.ax: 5.03.0001.0902 English Final Retail 7/9/2004 03:58:10 39424 bytes
     kswdmcap.ax: 5.03.0000.0900 English Final Retail 7/9/2004 03:59:26 226304 bytes
    wstcodec.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:44 18688 bytes
    wstdecod.dll: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:48 47104 bytes
        msdv.sys: 5.03.0000.0900 English Final Retail 7/9/2004 03:58:14 56832 bytes
    DirectShow Filters
    WDM Streaming VBI Codecs:
    NABTS/FEC VBI Codec,0x00200000,2,1,,5.03.0000.0900
    CC Decoder,0x00200000,2,1,,5.03.0000.0900
    WST Codec,0x00200000,1,1,,5.03.0000.0900
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,,
    WMSpeech Decoder DMO,0x00600800,1,1,,
    Mpeg4s Decoder DMO,0x00800001,1,1,,
    WMV Screen decoder DMO,0x00800001,1,1,,
    WMVideo Decoder DMO,0x00800001,1,1,,
    Mpeg43 Decoder DMO,0x00800001,1,1,,
    Mpeg4 Decoder DMO,0x00800001,1,1,,
    DivX Decoder Filter,0x00800000,1,1,divxdec.ax,5.02.0001.1335
    RTP Source Filter,0x00200000,0,1,dxmrtp.dll,5.00.2195.6611
    RTP Render Filter,0x00200000,1,0,dxmrtp.dll,5.00.2195.6611
    VP6 Decompressor,0x00800000,1,1,vp6dec.ax,6.04.0002.0000
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    Vorbis Decoder,0x00600000,1,1,OggDS.dll,0.09.0009.0005
    ffdshow MPEG-4 Video Decoder,0xff800001,2,1,ffdshow.ax,1.00.0002.0024
    Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.0001.0907
    CoreVorbis Audio Decoder,0x00800000,1,1,CoreVorbis.ax,1.01.0000.0079
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.00.0002.0024
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    Nero Scene Detector 2,0x00200000,2,0,NeSceneDetector.ax,1.00.0000.0007
    ffdshow Audio Decoder,0x3fffffff,1,1,ffdshow.ax,1.00.0002.0024
    DV Muxer,0x00400000,0,0,qdv.dll,6.05.0001.0904
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    Nero Digital Audio Decoder,0x00600000,1,1,NeAudio.ax,1.00.0004.0037
    DV Scenes,0x00200000,1,1,NVDV.dll,
    Color Space Converter,0x00400001,1,1,quartz.dll,6.05.0001.0907
    WM ASF Reader,0x00400000,0,0,qasf.dll,9.00.0000.2980
    Intel RTP SPH for G.711/G.723.1,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Nero Digital Null Renderer,0x00200000,1,0,NeNDMux.ax,2.00.0000.0008
    AVI Splitter,0x00600000,1,1,quartz.dll,6.05.0001.0907
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
    Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,4.01.0000.3917
    PCM Silence Suppressor,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.0001.0900
    Nero Digital File Writer,0x00200000,1,0,NeNDMux.ax,2.00.0000.0008
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055
    H261 Decode Filter,0x00200000,1,1,h261_32.ax,5.00.2195.6611
    Nero Mpeg Audio Encoder,0x00200000,1,1,NeAudioEnc.ax,1.00.0000.0004
    CoreCodec DynEQ,0x00200000,1,1,dyneq.cll,1.00.0002.0000
    H263 Decode Filter,0x00200000,1,1,h263_32.ax,5.00.2195.6611
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.0001.0907
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.09.0000.0311
    Nero Audio Stream Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Intel RTP Demux Filter,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.0001.0900
    Nero Digital Muxer,0x00200000,2,1,NeNDMux.ax,2.00.0000.0008
    CoreCodec Audio Source,0x00600000,0,1,ccaudiosource.cll,0.05.0000.1150
    Intel RTP SPH for Generic Audio,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
    Nero QuickTime(tm) Video Decoder,0x00400000,1,1,NeQTDec.ax,1.00.0000.0004
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.0001.0907
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.0001.0907
    WavPack Audio Decoder,0x00600000,1,1,WavPackDSDecoder.ax,1.00.0003.0431
    File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,9.00.0000.2980
    Nero Format Converter,0x00200000,1,1,NeroFormatConv.ax,1.00.0000.0050
    DV Splitter,0x00600000,1,2,qdv.dll,6.05.0001.0904
    Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,3.00.0000.3433
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.0001.0907
    CoreFLAC Audio Source,0x00600000,0,0,CoreFLACDecoder.ax,0.04.0000.0046
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    Haali Media Splitter,0x00600001,0,1,splitter.ax,
    Nero ES Video Reader,0x00600000,0,1,NDParser.ax,2.00.0002.0034
    CoreFLAC Audio Decoder,0x00600000,1,1,CoreFLACDecoder.ax,0.04.0000.0046
    DV Source Filter,0x00400000,0,1,NVDV.dll,
    Nero Audio CD Filter,0x00200000,0,1,NeAudCD.ax,1.00.0000.0001
    Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASX file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.2980
    NSC file Parser,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    XviD MPEG-4 Video Decoder,0xff800000,1,1,xvid.ax,
    File Source (Monkey Audio),0x00400000,0,1,MonkeySource.ax,
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Windows Media source filter,0x00600000,0,2,wmpasf.dll,9.00.0000.2980
    Video Renderer,0x00800001,1,0,quartz.dll,6.05.0001.0907
    Nero DVD Navigator,0x00600000,0,4,NeDVD.ax,2.01.0001.0039
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.0001.0904
    Video Port Manager,0x00600000,2,1,quartz.dll,6.05.0001.0907
    WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.0000.0900
    Video Renderer,0x00400000,1,0,quartz.dll,6.05.0001.0907
    Nero Audio Sample Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Nero Vcd Navigator,0x00600000,0,2,NeVcd.ax,1.02.0000.0020
    DivX Decoder Filter,0xff800000,1,1,divxdec.ax,5.02.0001.1335
    Nero Audio Processor,0x00200000,1,1,NeAudioConv.ax,1.01.0000.0008
    WM ASF Writer,0x00400000,0,0,qasf.dll,9.00.0000.2980
    CoreCodec WPW,0x00200000,1,1,wawrap.cll,8.00.0000.0000
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.00.2157.0001
    Nero Video Stream Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    File writer,0x00200000,1,0,qcap.dll,6.05.0001.0900
    RadLight MPC DirectShow Filter,0x00600000,0,1,MPCDec.ax,1.00.0000.0003
    Vorbis Encoder,0x00200000,1,1,OggDS.dll,0.09.0009.0005
    Ogg Multiplexer,0x00400000,1,1,OggDS.dll,0.09.0009.0005
    DirectVobSub,0x00200000,2,1,vsfilter.dll,1.00.0001.0002
    RIFF/CDXA Source,0x00400000,0,1,xcdsrc.ax,8.01.0000.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.00.0001.0002
    ffdshow VFW decoder helper,0x00200000,2,1,ffdshow.ax,1.00.0002.0024
    DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.0001.0904
    Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.0001.0904
    Haali Matroska Muxer,0x00200000,1,0,splitter.ax,
    Cutlist File Source,0x00200000,0,1,qcut.dll,6.01.0009.0726
    AC3Filter,0x40000000,1,1,ac3filter.ax,1.00.0001.0000
    AVI Draw,0x00600064,9,1,quartz.dll,6.05.0001.0907
    .RAM file Parser,0x00600000,1,0,wmpasf.dll,9.00.0000.2980
    Nero File Source / Splitter,0x00600000,0,3,NeFSource.ax,1.00.0004.0004
    Nero Digital Audio Encoder,0x00200000,1,2,NeNDAud.ax,2.00.0000.0008
    G.711 Codec,0x00200000,1,1,g711codc.ax,5.00.2143.0001
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.0001.0900
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.0001.0904
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,9.00.0000.2980
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.00.0002.0024
    CoreCodec CDDA Source,0x00600000,0,1,cddasource.cll,0.08.0000.0104
    ASF DIB Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF ACM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF ICM Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF URL Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,9.00.0000.2980
    Nero Video Processor,0x00200000,1,1,NeroVideoProc.ax,1.00.0000.0071
    Nero Video Decoder,0x00600000,2,2,NeVideo.ax,2.00.0002.0026
    SampleGrabber,0x00200000,1,1,qedit.dll,6.05.0001.0900
    Null Renderer,0x00200000,1,0,qedit.dll,6.05.0001.0900
    VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0008.0000
    MPEG-2 Sections and Tables,0x005fffff,1,0,mpeg2data.ax,6.05.0001.0900
    IVF source filter,0x00600000,0,1,ivfsrc.ax,5.10.0002.0051
    H263 Encode Filter,0x00200000,1,1,h263_32.ax,5.00.2195.6611
    Smart Tee,0x00200000,1,2,qcap.dll,6.05.0001.0900
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.0001.0904
    Nero Scene Detector,0x00200000,1,0,NeSceneDetector.ax,1.00.0000.0007
    Microsoft PCM Audio Mixer,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    RealPlayer Audio Filter,0x00200000,1,1,rdsf3260.dll,6.00.0012.1208
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    CoreCodec Subtitles Dispatcher,0x00200000,1,0,subdispatch.cll,1.00.0000.0003
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.0001.0907
    Intel RTP RPH for G.711/G.723.1,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.0001.0907
    Wave Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    MIDI Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    Lyric Parser,0x00400000,1,1,quartz.dll,6.05.0001.0907
    File stream renderer,0x00400000,1,1,quartz.dll,6.05.0001.0907
    XML Playlist,0x00400000,1,0,wmpasf.dll,9.00.0000.2980
    Nero File Source,0x00200000,0,1,NeFileSrc.ax,1.00.0000.0006
    Nero QuickTime(tm) Audio Decoder,0x00400000,1,1,NeQTDec.ax,1.00.0000.0004
    WavPack Audio Splitter,0x00600000,1,1,WavPackDSSplitter.ax,1.00.0003.0277
    Nero DVD Decoder,0x00600000,2,2,NeVideo.ax,2.00.0002.0026
    Nero Digital Parser,0x00600000,0,3,NDParser.ax,2.00.0002.0034
    AVI Mux,0x00200000,1,0,qcap.dll,6.05.0001.0900
    CyberLink QuickTime Source Filter,0x00200000,0,2,QuickTime.ax,1.00.0000.1016
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.0001.0907
    File Source (Async.),0x00400000,0,1,quartz.dll,6.05.0001.0907
    File Source (URL),0x00400000,0,1,quartz.dll,6.05.0001.0907
    Nero Frame Capture,0x00200000,1,1,NeCapture.ax,1.04.0000.0009
    Intel RTP SPH for H.263/H.261,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Intel RTP RPH for H.263/H.261,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    Intel RTP RPH for Generic Audio,0x00200000,1,1,dxmrtp.dll,5.00.2195.6611
    H261 Encode Filter,0x00200000,1,1,h261_32.ax,5.00.2195.6611
    Ogg Splitter,0x00600000,1,1,OggDS.dll,0.09.0009.0005
    Nero Video Sample Renderer,0x00200000,1,0,NeRender.ax,1.00.0001.0008
    Nero Digital Video Encoder,0x00200000,1,2,NeNDVid.ax,2.00.0000.0008
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.0001.0900
    BDA MPEG2 Transport Information Filter,0x00200000,1,0,psisrndr.ax,6.05.0001.0900
    QT Decompressor,0x00600000,1,1,quartz.dll,6.05.0001.0907
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.0001.0907
    Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
    Indeo® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.0000.0900
    WDM Streaming Data Transforms:
    Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.0000.0900
    Microsoft DirectMusic SW Synth (WDM),0x00200000,1,1,,5.03.0000.0900
    Video Compressors:
    WMVideo9 Encoder DMO,0x00600800,1,1,,
    MSScreen 9 encoder DMO,0x00600800,1,1,,
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.0001.0904
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.00.0002.0024
    Indeo® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.0001.0907
    Nero Digital Video Encoder,0x00200000,1,2,NeNDVid.ax,2.00.0000.0008
    3ivx D4 4.5.1 Pro Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.0001.0900
    DivX® 5.2.1 Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    ffdshow Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Intel Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V2,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V3,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft MPEG-4 Video Codec V1,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP310x00200000,1,1,qcap.dll,6.05.0001.0900
    VP60® Simple Profile ,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP61® Advanced Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP62® Heightened Sharpness Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    VP70® General Profile,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Microsoft Windows Media Video 9,0x00200000,1,1,qcap.dll,6.05.0001.0900
    XviD MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.05.0001.0900
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,,
    WMAudio Encoder DMO,0x00600800,1,1,,
    Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    Vorbis Encoder,0x00200000,1,1,OggDS.dll,0.09.0009.0005
    Nero Audio Encoder,0x00200000,1,1,NeAudioEnc.ax,1.00.0000.0004
    IAC2,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie CELP 4.8kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 8kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 12kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Lernout & Hauspie SBC 16kbit/s,0x00200000,1,1,quartz.dll,6.05.0001.0907
    ffdshow Audio Decoder,0x00200000,1,1,quartz.dll,6.05.0001.0907
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    PCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.0001.0907
    DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.0001.0907
    GSM 6.10,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.0001.0907
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.0001.0907
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.0001.0907
    AC-3 ACM Decompressor,0x00200000,1,1,quartz.dll,6.05.0001.0907
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.0001.0907
    Audio Capture Sources:
    Realtek AC97 Audio,0x00200000,0,0,qcap.dll,6.05.0001.0900
    3ivx Filters:
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.0001.0907
    Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.0001.0907
    WDM Streaming Capture Devices:
    Realtek AC97 Audio,0x00200000,3,3,,5.03.0000.0900
    Raw Channel Access Capture/Render,0x00200000,1,1,,5.03.0000.0900
    WDM Streaming Rendering Devices:
    Realtek AC97 Audio,0x00200000,3,3,,5.03.0000.0900
    Raw Channel Access Capture/Render,0x00200000,1,1,,5.03.0000.0900
    BDA Rendering Filters:
    BDA IP Sink,0x00200000,1,1,,5.03.0000.0900
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBC Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBS Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    Microsoft DVBT Network Provider,0x00200000,0,1,msdvbnp.ax,6.05.0001.0900
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,1,0,psisrndr.ax,6.05.0001.0900
    MPEG-2 Sections and Tables,0x00600000,1,0,mpeg2data.ax,6.05.0001.0900
    WDM Streaming Mixer Devices:
    Microsoft Kernel Audio Mixer,0x00200000,2,2,,5.03.0000.0900
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,,5.03.0000.0900
    Audio Renderers:
    Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.0001.0907
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.0001.0907
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.0001.0907
    DirectSound: Realtek AC97 Audio,0x00200000,1,0,quartz.dll,6.05.0001.0907
    WDM Streaming System Devices:
    Realtek AC97 Audio,0x00200000,14,2,,5.03.0000.0900
    BDA Receiver Components:
    BDA Slip De-Framer,0x00600000,1,1,,5.03.0000.0900
    BDA MPE Filter,0x00600000,1,1,,5.03.0000.0900

  • Can't get downloaded ebooks from library to work?

    i've downloaded digital editions to my imac but haven't been able to get borrowed library books to work.  i've been able to download them from the library and they go directly into my downloads file.  they are in the .acsm format.  the do not show up automatically in my digital editions library.  when i try to open the file, the computer attempt to use adobe reader instead. i get the following error message...
    Adobe Reader could not open '.acsm' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    help!

    never mind...just found the answer in the other forum questions.

  • Help on Decode function in Toplink

    Hi,
    I have a sql statement like this:
    select field1, field2 from table1 where upper(field1) like 'ADELPHI%'
    order by field1,
    DECODE(TO_CHAR(NVL(LENGTH(TRANSLATE(field1,'A1234567890','A')),0)),'0',LPAD(field1 ,50),field1)
    How would I converted this to toplink query?
    I appreciate any help you guys can extend to me.

    I just spent about a half hour writing a response here, and the damned forum timed out on me. #$^!@$#!^!@$%.
    Here is the summary:
    - Using TL Expressions and EJBQL are to allow Java developers who don't necessarily know SQL to write queries and to facilitate portability/maintainability of the apps. For REALLY gnarly queries, using TL Expressions or EJBQL won't buy you this. I.e., SQL is more expressive and easier for this kind of quer, so it's not easier to use, and frankly with the code needed to support it, it won't be easier to maintain or port... Bottom line, maybe SQL is the best option here?
    - If you want to experiment, search for TO_CHAR on this forum, and the decode function in the javadoc. You need to build the expressions in pieces and you can treat expressions as arguments to other expressions -- in other words, you can build an expression like builder.leftPad(50, builder.get("field1")) and use it as one of the key/values in the hashtable to the decode function (in theory).
    - Don

  • Help on converting query with case into decode

    Hi Can anyone help me to revise my plsql query? Below is a portion og the procedure I am changing to meet Oracle 8i.
    SELECT SUM(NVL(CASE WHEN (weeks='wk1' ) THEN qty END, 0)) wk1,
    SUM(NVL(CASE WHEN (weeks='wk2' ) THEN qty END, 0)) wk2,
    SUM(NVL(CASE WHEN (weeks='wk3' ) THEN qty END, 0)) wk3,
    SUM(NVL(CASE WHEN (weeks='wk4' ) THEN qty END, 0)) wk4
    FROM TABLE1
    Thanks in advance.

    pls try this....(code not tested as no create table etc provided).
    select dt
    from (select decode(is_tbd,
    'yes',
    decode(is_tbd_order,
    'no',
    'tbd',
    decode(sign(ex_fac_date - (v_asofdate + 131)),
    1,
    'tbd',
    null),
    decode(sign(ex_fac_date - (v_asofdate + 131)),
    1,
    'tbd',
    null)),
    null) dt
    from dual
    union all
    select decode(sign(ex_fac_date - (v_asofdate - 1)),
    1,
    decode(sign(ex_fac_date - (v_asofdate + 5)),
    0,
    decode(is_tbd, 'no', 'wk1', null),
    null),
    null)
    from dual
    union all
    select decode(sign(ex_fac_date - (v_asofdate + 6)),
    1,
    decode(sign(ex_fac_date - (v_asofdate + 12)),
    0,
    decode(is_tbd, 'no', 'wk2', null),
    null),
    null)
    from dual
    select decode(sign(ex_fac_date - (v_asofdate + 13)),
    1,
    decode(sign(ex_fac_date - (v_asofdate + 19)),
    0,
    decode(is_tbd, 'no', 'wk3', null),
    null),
    null)
    from dual
    union all
    select decode(sign(ex_fac_date - (v_asofdate - 1)),
    0,
    decode(is_tbd, 'no', 'past_due', null),
    null)
    from dual
    where dt is not null
    Regards

  • Help with job scheduling; decode error

    Hi
    Iam trying to change a job that runs my procedure using dbms_job.. Here is the output I got.
    Can someone help me why this is giving me errors.
    <code>
    SQL> exec dbms_job.next_date(395,decode(sign(substr(to_char(sysdate,'dd/mm/yy hh24:mi'),10,2)-17),-1,'trunc(sysdate) +18.5/24',1,'trunc(sysdate)+1+6.5/24'));
    BEGIN dbms_job.next_date(395,decode(sign(substr(to_char(sysdate,'dd/mm/yy hh24:mi'),10,2)-17),-1,'trunc(sysdate) +18.5/24',1,'trunc(sysdate)+1+6.5/24')); END;
    ERROR at line 1:
    ORA-06550: line 1, column 30:
    PLS-00204: function or pseudo-column 'DECODE' may be used inside a SQL
    statement only
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    </code>
    Thanks in advance

    I'm not sure what you're trying to achieve.
    Is this a one time action or do you want to run this statement on a regular basis?
    How about this:
    begin
      if ( to_number(to_char(sysdate,'hh24')) <= 17 ) then
        dbms_job.next_date(395, 'trunc(sysdate)+18.5/24');
      else
        dbms_job.next_date(395, 'trunc(sysdate)+1+6.5/24');
      end if;
    end;

Maybe you are looking for

  • Free Goods Sales Order  for Charities with Credit Limit

    Dear All I have a scenario where POS (Point of Sales) has been implemented,the process of POS is ok,but the requirement of the client is they are giving some goods to charity,when ever a person comes with a special card (Issued by the company) the ou

  • LOGON LOAD BALANCING WITH THIRD PARTY LOAD BALANCERS

    Hello Everybody, We would like to implement third party Application Load Balancers for all our Applications including SAP Landscape (HTTP and SAP LOGON). Could you please indicate which third party load balancers are compatibles with SAP LOGON GROUP

  • Constrain of Custom Infotype

    Hi Experts, In which table / transaction  do we  find the time constrains of the Custom Infotype. Regards, IFF

  • Import from sqlplus

    APEX:2.0.0.00.49<br> DB:9.2.0.5<br><br> Lets say my source system has the workspace details like this :-<br><br> Workspace ID : 123<br> Workspace Short Name:ABC<br><br> And my target system has the workspace details like this :-<br><br> Workspace ID

  • Canon EF 50mm f/1.8 II

    Hi, I created a profile for my Canon EF 50mm f/1.8 II lens, uploaded it here: http://ul.to/copxok Maybe someone finds it useful.