Help group BY

Hey all,.
I'm having a hard time with this one, any help would be appreciated.
I have a table with 4 fields:
ID, HAND, TIME, SPD

It should look like this

ROWID, ID, HAND, TIME, SPD
1, AA, 01, 1: 45
2, AA, 02, 1, 44
3, AA, 02, 2: 33
4, AA, 03, 3: 44
5, AA, 02, 5, 55
etc.

What I have to do is to get an AVERAGE of the SPD column
where I GROUP by ID, HAND and (here is the hardest part) TIMES (ONLY if its sequential)

By ROWID
1 would remain the same.
2 and 3 would be on average because ID, HANDS are the same and the TIME is sequential
4 and 5 remain the same...

looked analysis AVG to see if I could just create a moving average (partitioned by ID, HAND), but she always ends up with an average of rows 2, 3 and 5. I imagine you could do with PL/SQL but not well versed in the sliders and the table that I it would run on the numbers in the billions of lines...
Thanks in advance,
Eric

If I understand correctly.

with t as (
select 1 r1, 'AA' id , 01 m1, 1 t1 , 45 spd from dual union all
select 2, 'AA', 02, 1, 44 from dual union all
select 3, 'AA', 02, 2, 33 from dual union all
select 4, 'AA', 03, 3, 44 from dual union all
select 5, 'AA', 02, 5, 55 from dual )
select id,m1,avg(spd)
from (select m1,r1,id,t1,grp,spd
from t
model
partition by (m1)
dimension by (row_number() over (partition by m1 order by r1) rn )
measures (r1,id,t1,spd,lag(t1) over ( partition by m1 order by t1) next_t1,1 grp, 1 grprec)
rules
upsert
iterate(1000)
until(presentv(t1[iteration_number+2],1,0)=0)
(grprec[any] = nvl(grp[cv()-1],1),
 grp[any]= case when nvl( next_t1[cv()]+1,t1[cv()]) =t1[cv()]  then
             grprec[cv()] else  grprec[cv()]+1  end))
group by id,m1,grp

output

44 3 AA
55 2 AA
45 1 AA
AA 2 38.5

Published by: alvinder on March 4, 2009 09:51
Correction of the error I made.

Tags: Database

Similar Questions

  • help group

    Hello

    I have a table of PRODUCTS like this:

    ID COD_PROD CAT STATUS PRICE DT

    1 P1 C1 SOLD 10 10/7 / 2015 12:23

    P1 C1 CANCELLED 10 10/7 2 / 2015 12:24

    3 P1 C1 SOLD 10 10/7 / 2015 12:25

    4 P2 SOLD C1 12 10/7 / 2015 12:26

    5 P2 C1 CANCELLED 10/7 12 / 2015 12:27

    P3 C2 SOLD 13 10/7 6 / 2015 12:28


    I need to group them by category (CAT) and the PRICE of the sum in order to show how much of each category.

    The problem is on the STATUS column, because I have to examine all documents having the status of last '' SOLD '' =

    In the table above, the query must obtain P1 and P3


    Any help?

    Thank you

    PM



    This part:

    WITH DATA (ID, COD_PROD, CAT, LOCATION, PRICE, DT)

    AS (SELECT 1, 'P1', 'C1', 'SOLD', 10, to_date (October 7, 2015 12:23 ',' dd/mm/yyyy hh24:mi:ss') FROM dual UNION ALL)

    SELECT 2, 'P1', 'C1', 'CANCELLED', 10, to_date (October 7, 2015 12:24 ',' dd/mm/yyyy hh24:mi:ss') FROM dual UNION ALL

    SELECT 3, 'P1', 'C1', 'SOLD', 10, to_date (October 7, 2015 12:25 ',' dd/mm/yyyy hh24:mi:ss') FROM dual UNION ALL

    SELECT 4, 'P2', 'C1', 'SOLD', 12, to_date (October 7, 2015 12:26 ',' dd/mm/yyyy hh24:mi:ss') FROM dual UNION ALL

    SELECT 5, 'P2', 'C1', 'CANCELLED', 12, to_date (October 7, 2015 12:27 ',' dd/mm/yyyy hh24:mi:ss') FROM dual UNION ALL

    6. SELECT "P3", "C2", "SOLD", 13, to_date (October 7, 2015 12:28 ',' dd/mm/yyyy hh24:mi:ss') FROM dual)

    is simply because I do not have the table, so you'll not need just uses your name to the table here:

    WITH getlaststatus (SELECT ID, cod_prod, chat, location, price, dt

    first_value (status) OVER (PARTITION BY cat, cod_prod dt to ORDER BY DESC) AS last_status,

    row_number() (PARTITION BY cat, cod_prod dt to ORDER BY DESC) AS last_action

    Of your_table_name)

    SOME cats, Sum (Price)

    OF getlaststatus

    WHERE last_status = 'SOLD '.

    AND last_action = 1

    Chat group

    /

    If this solution uses only the last record of a combination of cat/cod_prod if it is a status of SOLD.

    HTH

  • Help group above report

    Hello guys,.

    What I have to do, is to modify an existing report that is in the table style to the group above data model.

    First, I changed the data model to extract the existing data model group and I got no problem with that.

    Secondly, I added grouping framework for my new recordings of grouping (master) and put inside the previous image of grouping (details).

    The problem is when I generate the report that each record is separated by a huge empty line:

    This photo shows this blank line between records:

    [IMG] http://I59.Tinypic.com/bdl46p.jpg [line]

    I think I tried everything, I even deleted all the fields of the report and left only my two group executives, but problem still exist.

    This is my body of report:

    [IMG] http://i62.Tinypic.com/28a3u5l.jpg [line]

    If you have ideas, what can be wrong or what to do, please help

    You mean, there's already detailed report, now you want to change to master detail (group above).

    At the level of the model:

    You divided the existing group into two bases on simple request, haven't you? means there are now two group master and detail.

    means, group existing, becoming a master and detail created a new group. Let's say that G1 is the master (existing) and G2 (new) group retail.

    If above understanding is correct then proceed as follows

    Place the new extensible framework (say RG2) within the existing extensible framework (let say RG1 and assign the name of the new group G2 to RG2. framework and place all the Group detail fields in extensible framework newly established RG2.

    Hopefully, you will get the expected changes in this way.

  • Slate professionals or just a self-help group?

    Although efforts to help members is very popular (cordially

    to rainmanP), I feel rather, I joined a discussion that one club

    Professional advice for a series of professional equipment.

    except breaks the rules his readers are left in the speculation.

    because a lot of hardware related problems, some of them as relevant for

    me either, are left not resolved or still unanswered.

    a catch, this compounds - application support support Lenovo gets you less.

    Damian

    Ouch!

  • Help: Group and query rank

    Hello

    By the query below, I'm looking for help on how to apply a COUNT function (based on the ""rentalno "within the RAGREEMENT table") to identify decision-making (returns the street address in the output) with most rentals. Based on the said County, I will need to rank the results so that I can only exit the rentals for the plug with most of the rentals (see the below desired output).

    I'm using Oracle 11 g Express with SQL * more.

    Please let me know if I need to specify further what I'm trying to achieve.

    I'd appreciate any help you can provide me. Thank you!

    QUERY:

    the format a30 column customer;

    SELECT rentalno ' RENTAL # ","RENTED"startdate, returndate «BACK»,

    client.clientno | ' - ' || contact_last | ', ' ||

    contact_first CLIENT, outstreet "EXIT STREET ADR."

    OF ragreement

    JOIN customer ON ragreement.clientno = client.clientno

    JOIN vehicle ON ragreement.licenseno = vehicle.licenseno

    Release of JOIN ON vehicle.outno = outlet.outno

    ORDER BY rentalno;



    OUTPUT CURRENT:

    RENTAL # RENTED BACK CUSTOMER EXIT STREET ADR.

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

    3000000001 3 July 13 July 8, 13 2000000001 - Morgan, Gwen 213 rapid Run Rd

    3000000002 4 July 13 2000000002 7 July 13 - Brenger, franc 213 rapid Run Rd

    3000000003 5 July 13 July 7, 13 2000000003 - Pocian, Kathy 213 rapid Run Rd

    3000000007 5 May 13 May 10, 13 2000000007 - McKhee, Mark 1000 bridge water

    3000000008 6 May 13 May 7, 13 2000000008 - Smith, Carol 54 South N. St.

    DESIRED OUTPUT:

    RENTAL # RENTED BACK CUSTOMER EXIT STREET ADR.

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

    3000000001 3 July 13 July 8, 13 2000000001 - Morgan, Gwen 213 rapid Run Rd

    3000000002 4 July 13 July 7, 13 2000000002 - Brenger, Gary 213 rapid Run Rd

    3000000003 5 July 13 July 7, 13 2000000003 - Pocian, Carol 213 rapid Run Rd




    SAMPLE DATA:

    CREATE THE CUSTOMER TABLE

    (clientNo NUMBER (10) PRIMARY KEY,)

    ClientName VARCHAR2 (38),

    Street VARCHAR2 (18),

    City VARCHAR2 (20).

    State VARCHAR2 (2),

    Code postal VARCHAR2 (5).

    Adresse_web VARCHAR2 (38),

    Contact_first VARCHAR2 (38),

    Contact_last VARCHAR2 (38),

    Phone VARCHAR2 (12),

    E-mail VARCHAR2 (40));

    CREATE TABLE RAGREEMENT

    (RentalNo NUMBER (10) PRIMARY KEY,)

    StartDate DATE,

    ReturnDate DATE,

    MileageBefore NUMBER (10),

    MileageAfter NUMBER (10),

    InsuranceType VARCHAR2 (25).

    ClientNo NUMBER (10),

    LicenseNo VARCHAR2 (7));

    CREATE TABLE VEHICLE

    (LicenseNo VARCHAR2 (7) PRIMARY KEY,)

    Do VARCHAR2 (12),

    Model VARCHAR2 (15).

    Color VARCHAR2 (15).

    Year number 4.

    NoDoors NUMBER (2),

    Capacity NUMBER (2),

    Rate number 4,

    outNo NUMBER (4));

    CREATE THE OUTPUT TABLE

    (outNo PRIMARY KEY number 4,

    outStreet VARCHAR2 (18),

    outCity VARCHAR2 (20).

    outState VARCHAR2 (2),

    outZipCode VARCHAR2 (5).

    outPhone VARCHAR2 (12),

    ManagerNo NUMBER (6));

    INSERT INTO CUSTOMERS VALUES ('2000000001',"University of Pittsburgh", ' 213 Fast Run Rd', 'Houston', 'PA', '68954',' www.pitt.edu', 'Gwen', 'Morgan', '7243441957',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('2000000002 ', 'Free Zip','1000 Bridge Water ',' Dallas', 'WV', '23659',' www.zipfree.org', 'Frank', 'Brenger', '9856587896',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('2000000003', 'GO', "Richmond', ' 54 N. South St.", "Go Go Go, Inc.", "' 97562 ', ' www.gogogo.com', 'Kathy', 'Pocian', '3048965489',' [email protected]'");

    INSERT INTO CUSTOMERS VALUES ('2000000004',"Carnegie Mellon University', ' dotted 1001 Way', 'Washington', 'DC', '54865',' www.cmu.edu", "Linda", 'Betsch', '7896541235',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('NSA',' 2000000005', ' Jump St. 234', 'Pittsburgh', 'PA', '21358',' www.nsa.gov', 'Vicki', 'Klein', '5986598785',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('3289 Cresent Ave. ("" "" ","York","WV", '2000000006', ' FBI ', '54268', ' www.fbi.gov ', 'Brand', 'Severns', '5965897458',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('2000000007 ', "Notes, Inc." ', ' 975 Sunset Blvd. ', '24973',' www.notes.org', 'Mark', 'McKhee', '7896589658', 'Canonsburg", 'PA'' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('2000000008', "Caterpillar, Inc.", "2045 West Pike St.', 'Cranberry', 'PA', '36597',' www.cat.com', 'Carol', 'Smith', '5426589756',' [email protected]'");

    INSERT INTO CUSTOMERS VALUES ('2000000009', ' clues Kids', 72 East St. salmon ', 'Wheel', 'WV', '78564',' www.clues.com', 'Matt', 'Walker', '7896541235',' [email protected]');

    INSERT INTO CUSTOMERS VALUES ('2000000010', 'Free run' ', ' Blaise 678 BC. ","Meadville","WV", '85652',' www.freelancer.org', 'Frank', 'Peer', '2135689456',' [email protected]');

    INSERT INTO RAGREEMENT VALUES ('3000000001', ' 3 July 13', ' 8 July 13 ', '123000',' 123350', "LDW", '2000000001', 'BH05J9U');

    INSERT INTO RAGREEMENT VALUES ('3000000002', ' 4 July 13', ' 7 July 13 ', '234567',' 234917', 'CEP', '2000000002', 'H4L0DH8');

    INSERT INTO RAGREEMENT VALUES ('3000000003', ' 5 July 13', ' 7 July 13 ', ' 576858 ', '577208', 'Deleted',' 2000000003', '5HDI9TG');

    INSERT INTO RAGREEMENT VALUES (' '3000000004',' 7 June 13', 11 June 13 ', '623450', ' 623800', ' CEP', '2000000004 GI0UJD7',' ');

    INSERT INTO RAGREEMENT VALUES (' '3000000005',' 8 June 13', 15 June 13 ', ' 123467', 'LDW 123817', ' "', 'the GJU4Y7D', ' 2000000005');

    INSERT INTO RAGREEMENT VALUES of ('3000000006', ' 4 May 13', ' 9 May 13 ', '3456', '5000', 'deleted', '2000000006',' S5BNP2S);

    INSERT INTO RAGREEMENT VALUES ('3000000007',' 5 May 13', 10 May 13 ', '438', ' 788', 'deleted', '2000000007',' XCH4Y23');

    INSERT INTO RAGREEMENT VALUES ('3000000008', ' 6 May 13', ' 7 May 13 ', '50', '400', 'deleted', '2000000008', 'A12F8GH');

    INSERT INTO RAGREEMENT VALUES ('3000000009', ' April 2 13', ' 7 April 13 ', '45678',' 46028', "LDW", '2000000009', 'C4YUTSA');

    INSERT INTO RAGREEMENT VALUES ('3000000010',' 3 April 13', 18 April 13 ', ' 7689', '8039', 'CEP', '2000000010',' 634HV2E');

    INSERT IN VEHICLE VALUES ('BH05J9U', 'Ford', 'Escape', 'White', '2013', '4', '5', '120',' 1001');

    INSERT INTO VEHICLE of VALUES ('H4L0DH8', 'Ford', 'Edge', 'Blue', ' 2012', '4 ', '5', '120','1001 ');

    INSERT INTO VEHICLE VALUES ('5HDI9TG', 'Ford', 'Fiesta', 'Green', '2013', '4', '5',' 90 ', ' 1001');

    INSERT INTO VEHICLE of VALUES ('GI0UJD7', 'Ford', 'Fusion', 'Yellow', ' 2012', '4', '5',' 90 ', ' 1002');

    INSERT IN VEHICLE VALUES ('GJU4Y7D', 'Nissian","Versa", 'Teal", ' 2012', '4', '5',' 90 ', ' 1001');

    INSERT INTO VALUES ('S5BNP2S', 'Nissian', 'Altima', 'Blue', '2013', '4', '5', '120','1003 ');

    INSERT IN VEHICLE VALUES ('XCH4Y23', 'Nissian', 'Maxima', 'Black' ', ' 2012 ', '4 ', '5', '120',' 1002');

    INSERT IN VEHICLE VALUES ('A12F8GH', 'Chevrolet', 'Cruze', 'Black', '2013', '4', '5',' 90 ', ' 1003');

    INSERT IN VEHICLE VALUES ("C4YUTSA", "Chevrolet", "Malibu", 'White', ' 2012', '4 ', '5', '120',' 1004');

    INSERT INTO VEHICLE VALUES ('634HV2E', 'Chevrolet', 'Impala', 'Orange', '2013', '4', '5',' 120 ', ' 1004');

    INSERT INTO THE OUTPUT VALUES ("' 1001', ' 213 rapid run Rd", "Houston", "TX", '68954', '7245339865', 100009');

    INSERT INTO THE OUTPUT VALUES ('1002','1000 bridge water ',' Dallas ', 'TX', ' 23659', '4125469854 ', 100008');

    INSERT INTO THE OUTPUT VALUES (' 1003', ' 54 N. South St. ', 'Richmond', 'RIGHT', '97562', '7458963215', 100008');

    INSERT INTO THE OUTPUT VALUES ('1004', ' 1001 pointed Way', 'Washington', 'DC', '54865', '1459632514', 100009');

    INSERT INTO THE OUTPUT VALUES (' 1005', ' St. 234 Jump ', 'Pittsburgh', 'PA', '21358', '4153586452', 100010');

    INSERT INTO THE OUTPUT VALUES ("1006 ', ' 3289 Cresent Ave.", "York", "AZ", '54268', '1298745635', 100010');

    INSERT INTO THE OUTPUT VALUES (' ' 1007', ' 975 Sunset Blvd. ","Canonsburg', 'PA', '24973', '3698521475', 100012');

    INSERT INTO THE OUTPUT VALUES ('1008', ' 2045 West Pike St.', 'Cranberry', 'CA', 36597', ' 9658745896 ', ' 100012');

    INSERT INTO THE OUTPUT VALUES (' 1009', ' St. East salmon 72 ","Wheeling","WV", '78564', '2365987456', 100012');

    INSERT INTO THE OUTPUT VALUES (' '1010', ' Blaise 678 BC. ","Meadville', 'OH', '85652', '1235897456', 100007');

    Hello

    This is called a Query Top - N.  Oracle 11 (in fact, in Oracle 9.1 and upward), you can do it with the analytical functions of COUNTY and RANK, like this

    WITH got_cnt AS

    (

    SELECT rentalno AS Location #.

    startdate AS rented

    , returndate, such AS returned

    client.clientno | ' - '

    || contact_first

    || ', '

    || contact_last as a customer

    outstreet AS outlet_street_adr

    COUNT AS NTC (*) OVER (PARTITION BY outstreet)

    OF ragreement

    JOIN customer ON ragreement.clientno = client.clientno

    JOIN vehicle ON ragreement.licenseno = vehicle.licenseno

    Release of JOIN ON vehicle.outno = outlet.outno

    )

    got_rnk AS

    (

    C. SELECT

    , EVALUATE () OVER (ORDER BY cnt DESC) AS rnk

    OF got_cnt c

    )

    SELECT rental # rented, returned, customer, outlet_street_adr

    OF got_rnk

    WHERE rnk = 1

    ;

    You will notice that the first auxiliary request, got_cnt, is almost what you have posted; the main difference is the column of the cnt.

    Analytical functions cannot be nested, or depend on another analytic function in the same query.  Since rnk depends on the cnt, they must be calculated in distinct subqueries.  In addition, the analytic functions are calculated after the clause WHERE is applied.  Because we want to use rnk in a WHERE clause, this means that we need an another subquery.

    Thanks for posting the CREATE TABLE and INSERT statements; It is very useful.

    Watch for the double quotes.  To be your Publisher of this site have transformed by leaning citations, which does not recognize Oracle.  Try zip code that people can use without editing.

  • Help - Group By query

    Hello
    In the Oracle HR diagram, I want to know how many employees are there in each location. So, I wrote this query:
    select employee_id, count(*) as "how many emps in this location"
    from employees join departments using(department_id) join locations using (location_id)
    group by location_id
    but I got this error:
    ORA-00979: not a GROUP BY expression
    How can I correct the request to give the desired result?
    Thank you

    Hi, first of all, you need not join the departments table. Second, you must change your select clause by replacing the employee_id by location_id. Your output should be like this

    location_id how many emps in this location
    200          4
    300          3
    400          2
    etc...
    

    Published by: arizona9952 on May 16, 2013 13:23

  • Port ghost on vSwitch0 - HELP group!

    I created a new physical network within Lab Manager and called him 192.168.1.x whose name in VC is LabManager-2LM23, it binds with vmnic2 which seems good.

    But I think I have an another vSwitch0 lie which I didn't create and really don't see what is its function - someone ' can someone help please?

    Hi ZippyDaMCT

    The no portgroup created on vswitch is used as temp reserved for the virtual machine, which is placed in "No network" when you deploy. If you look at the VC, you'll see that we put the VM there briefly and move out them to the other link that is not associated with something else.

    John Shao

    VMware Inc.

  • Help: Group by condition

    Hello people am actually trying to figure out that we can use the following condition IE "to_char (sysdate, 'YYYY FMMon'),' in the group by clause, or can I use the alias 'Period' instead, can someone please shed some light on this.

    SELECT the customer. Name of the customer,
    "CUBS SNAPSHOT. Flag HMG,
    Select TRUNC (SYSDATE, 'MONTH') - 1 from AS double, PeriodThruDate,.
    Select to_char (sysdate, 'FMMon YYYY') of double period AS
    "CUBS SNAPSHOT", customer
    Customer GROUP. Name of the customer,
    "CUBS SNAPSHOT. CUSTOMER,
    "CUBS SNAPSHOT. TYPE,
    . ClipStatus "CUBS SNAPSHOT."
    "CUBS SNAPSHOT. SUBTYPE,
    TO_CHAR (sysdate, 'YYYY FMMon'),
    "CUBS SNAPSHOT. Flag HMG,
    TRUNC (SYSDATE, 'MONTH') - 1

    Thank you

    Ok

    select TRUNC (SYSDATE, 'MONTH') - 1 from dual AS PeriodThruDate,
    

    is not necessary, it can be simply.

    TRUNC (SYSDATE, 'MONTH') - 1 AS PeriodThruDate,
    

    So UNLESS you are nesting this SQL and do a group outside that, you cannot reference the alias.

    so you have to

    GROUP BY TRUNC (SYSDATE, 'MONTH') - 1 
    

    OR you can nest the functioning and the alias on the outside group

    select
    from
    (
     select
    TRUNC (SYSDATE, 'MONTH') - 1 AS PeriodThruDate
    from ...
    )
    group by PeriodThruDate
    
  • Help the howto repeat email notifications

    I have a Setup and when a rule detects a mistake I use the e-mail command to inform self-help groups.  So far so good.

    When a service is down for some time, I would like to repeat the message alert every 180 minutes, or 3 hours.

    Is it possible (easy)?

    Hello

    There was some relevant discussion here on our community site at these locations:

    http://en.community.Dell.com/TechCenter/performance-monitoring/Foglight-administrators/f/4788/t/19551869

    http://en.community.Dell.com/TechCenter/virtualization/infrastructure/f/4826/t/19556406

    I hope this helps.

    Robert Statsinger

  • Continous writing in the external text file

    I'm trying to build a VI in labVIEW that will supply a decimal value based on a binary file to enter a box structure. The structure of the case will display a string value according to the decimal places of entry. The problem that I wrote the string value to a text file that will continue to write while the Vi is constantly running.

    Here are a few suggestions (you'll learn a lot more if you try to do this yourself, instead of my giving you a 'solution').

    • You have 8 Boolean commands.  Consider making a table (size 8) Boolean controls (among other things, it does help group them for you).
    • If you look at the range of Booleans, you will see a function of "array of numbers.  Guess what that so "feed you" an array of Boolean 8...  You can eliminate a lot of code by doing this.
    • Your numbers are all integers, so it is not sensible to save as a double.
    • You have a configured here While loop.  What you think about quick check how it works?  Do you care?  Do you want to it is running "as fast as possible?  Do you want it to run at a fixed speed (for example, a loop per second)?  Do you want it runs 'when something happens?
    • Good thing you have done, is recognize that the task of recording has three parts - Open (performed only once), Write (done as often as necessary) and closed (performed only once).  You also correctly positioned the relevant functions before, inside and after the while loop.  I'm not 100% certain it's important in this particular case, but usually when we done that and has a While loop, running on the same "variable" on several occasions, the wire is put in a shift instead of a pair of tunnels register.  Even if it is not necessary here, it would be a good change to make, because it will be necessary in other cases.

    I did not actually run your code, but do not see something terribly wrong with it.  Try to make the changes I suggested (which will allow you to significantly reduce the size of your VI).  Special attention to the question of the 'speed '.  If you republish your "improved" VI (and thanks for posting it), you could describe a little better "the problem I have" - what do I do, or what he does not?

    Bob Schor

  • Why can not, as I see texts both msn and yahoo messengers?

    I do not see the texts in both msn and yahoo, I can see when it hits but does not appear in mailboxes.  Help, please. Thank you

    Hi L.R.Taylor,

    ·         Other applications work well?

    ·         What is the MSN messenger or Windows Live Messenger?

    If so, you may need to contact the respective self-help groups for help.

    MSN support

    Yahoo! Messenger help

  • I have a 64-bit system running Windows 7. I could not get the AutoPlay to open whenever I insert a CD or a DVD.

    I have a 64-bit system running Windows 7. I could not get the AutoPlay to open every time I insert a cd or a dvd, I changed the settings to Ask Me to Windows Media Player to open with Windows Explorer... but nothing I tried introduced the feature of AutoPlay to life.

    Is there a solution

    original title: AutoPlay Windows 7

    It worked for me: I forgot where I got it, could have been here if it's a little different from what I've seen above

    PIECE AUTO REPAIR
    USING GROUP POLICY EDIT
    gpedit.msc in search
    Computer Configuration\ Administrative Templates\ Windows Windows\ Policies\ will disable Autoplay.

    In the REGEDIT HELP: Group Policy Editor is not provided with Windows Home editions, however, you can use regedit to achieve the same result.

    Open regedit and locate the following key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Change: NoDriveTypeAutorun to 0 x 91

    If necessary, create this key as a DWORD.

  • Developed by default SharePoint Workspace files

    Hello

    In the last months I searched and read many articles on the web related to the display of folders in MS SharePoint Workspace that opens all files in the default expanded view. All items and responses of the MS self-help groups conclude with the same: folder view "opens with all records enhanced by design", and "there is nothing we can do with this at this point."

    For those of us who are committed to use the workspace despite that flaw, could you please comment on the justification for why Microsoft has decided not to seek a solution to this obvious problem?

    Best regards
    TerjeL

    Hello

    You have reached the end to the Microsoft product support. I suggest you post your query on the link below to get assistance on the issue:

    http://social.msdn.Microsoft.com/forums/en-us/category/SharePoint/

    It will be useful.

  • Can you actually talk to someone, I'm just going to circle

    I am so confused on the problem and I need to talk to someone because I'm at the end of my home. I can't keep hanging out someone give or not to give an answer. I don't know where poster either because none of these options seem to match the problm. I know in tears.

    You have several choices:

    • To get answers to simple questions, attend a course from Windows to your local college, library or City Hall, or post it in a forum of appropriate like this user.
    • To resolve complex issues, file an appeal with Microsoft.
    Synchronization of devices between them is often not a trivial question. If you have a problem getting a response (or understand) in a forum of Outlook, then attend a course, to join a self-help group or by asking a friend would be a good option. Many people find themselves in this situation and find ways to solve them or choose to only use devices that they feel comfortable with.
  • Double left join creates a unwanted loop...

    I have therefore two paintings, I need to extract the counts of "tickets".

    I want to have the date given match then I use a 'connect by level' so that the same dates without data will have records in the result set.

    There are two tables I want to join on this "timeline" when I join each of them that individually, it works but when I join together that there is an order of operations issue I'm not sure how to move.

    ORIGINAL DATA:

    TABLE SMINCREQ:

    OPEN_DATE NUMBER
    JANUARY 12, 2015IM392039
    JANUARY 12, 2015IM399495
    JANUARY 12, 2015RM394950
    JANUARY 13, 2015IM394958
    JANUARY 13, 2015
    RM394958

    TABLE SMINTERACTIONS:

    OPEN_DATE INCIDENT_ID
    JANUARY 12, 2015SD394858
    JANUARY 12, 2015SD399495
    JANUARY 12, 2015SD394950
    JANUARY 13, 2015SD394958
    JANUARY 13, 2015
    SD394958

    THE QUERY:

    SELECT to_char(DAYS_,'DD-MON-YYYY'),
          
          sum(decode(INSTR(SMINCREQ."NUMBER",'IM'),'1','1',0)) "INCIDENT",
          sum(decode(INSTR(SMINCREQ."NUMBER",'RM'),'1','1',0)) "REQUEST"
         --sum(decode(INSTR(SMINTERACTIONS.INCIDENT_ID,'SD'),'1','1',0)) "INTERACTION"  
          FROM
      ( SELECT (TRUNC(to_date(SYSDATE-ROWNUM),'DD')) DAYS_ FROM DUAL
    CONNECT BY LEVEL <= (SELECT 14 FROM DUAL)
      ) THE_TIMELINE
        LEFT OUTER JOIN SMINCREQ ON  (to_char(DAYS_,'DD-MON-YYYY')=to_char(SMINCREQ.OPEN_TIME,'DD-MON-YYYY')  and (OPEN_GROUP like '%HELP%'))
        --LEFT OUTER JOIN SMINTERACTIONS on (to_char(DAYS_,'DD-MON-YYYY')=to_char(SMINTERACTIONS.OPEN_TIME,'DD-MON-YYYY')  and PRIMARY_ASSIGNMENT_GROUP like '%HELP%')
        GROUP BY to_char(DAYS_,'DD-MON-YYYY') ORDER BY to_char(DAYS_,'DD-MON-YYYY')
      ;
    
    

    When I run the present and just get the number of SMINCREQ is

    DATEINCIDENTSREQUEST
    JANUARY 12, 20151034
    JANUARY 13, 20155910

    When I run the query for SMINTERACTIONS I get

    DATEINTERACTION
    JANUARY 12, 201555
    JANUARY 13, 201550

    When I try to run the two left joins them together I get:

    DATEINCIDENTSAPPLICATIONSINTERACTIONS
    JANUARY 12, 201556652205885
    JANUARY 13, 201529505003450

    I know that what is happening is a loop where the date is is developed in a relationship 1 to many through the joints and then the GROUP is not the case until the end.

    What I want to achieve is:

    DATEINCIDENTSREQIESTINTERACTION
    JANUARY 12, 2015103455
    JANUARY 13, 2015591050

    Thanks for the tips

    I decided to go this route that will just join the new data (INTERACTIONS) of INCIDENTS already implemented and APPLICATIONS:

    SELECT NULL LINK,DAYS,INCIDENT,"REQUEST",sum(decode(INSTR(SMINTERACTIONS.INCIDENT_ID,'SD'),'1','1',0)) "INTERACTION" from(
    
    SELECT to_char(DAYS_,'DD-MON-YYYY') DAYS,sum(decode(INSTR(SMINCREQ."NUMBER",'IM'),'1','1',0)) "INCIDENT",
          sum(decode(INSTR(SMINCREQ."NUMBER",'RM'),'1','1',0)) "REQUEST"
          FROM
      ( SELECT (TRUNC(to_date(SYSDATE-ROWNUM),'DD')) DAYS_ FROM DUAL
     CONNECT BY LEVEL <= (SELECT 14 FROM DUAL)
      ) THE_TIMELINE
        LEFT OUTER JOIN SMINCREQ ON  (to_char(DAYS_,'DD-MON-YYYY')=to_char(SMINCREQ.OPEN_TIME,'DD-MON-YYYY')  and (OPEN_GROUP like '%HELP CENTER%')
    )
    
        GROUP BY to_char(DAYS_,'DD-MON-YYYY') ORDER BY to_char(DAYS_,'DD-MON-YYYY')
    ) LEFT JOIN SMINTERACTIONS on (DAYS=to_char(OPEN_TIME,'DD-MON-YYYY') and (PRIMARY_ASSIGNMENT_GROUP like '%HELP CENTER%'))
    GROUP BY DAYS,INCIDENT,"REQUEST" order by DAYS ASC;
    

    Thanks for all the entries...

Maybe you are looking for