Alternative/enhancement to union query? Duplicate - please delete

Hello,
I have 2 sets of similar data which I am joining together with a union query.
Simplified E.g.
*Table A*
Name Dept
Ben    1
Amy   3
Ken    3
*Table B*
Name Dept
Jim    1
John  2
Sue   3
select Name, Dept
from table A
UNION
select Name, Dept
from table BWhat I would like to do is ONLY include data from the second part of the union query where it joins with some data from the first part of the union query.
E.g.
select Name, Dept
from table A
UNION
select Name, Dept
from table B
where Dept in (select distinct Dept from A)Therefore John that works in Dept 2 would not be included in the results.
Is there a better or more efficient way of doing this than my example using the subquery as part of the where clause?
Many thanks,
Hazel
Edited by: user11979866 on 04-Nov-2010 08:48

Hazel:
It would really depend on the sizes of the tables and the indexes available, but that is probably the way I would write it, at least as a first cut.
You could lose the distinct in the in sub-query since it is implied by the in itself, and Oracle will only return one row from the sub-query for each value of dept in A.
John

Similar Messages

  • Alternative/enhancement to union query?

    Hello,
    I have 2 sets of similar data which I am joining together with a union query.
    Simplified E.g.
    *Table A*
    Name Dept
    Ben    1
    Amy   3
    Ken    3
    *Table B*
    Name Dept
    Jim    1
    John  2
    Sue   3
    select Name, Dept
    from table A
    UNION
    select Name, Dept
    from table BWhat I would like to do is ONLY include data from the second part of the union query where it joins with some data from the first part of the union query.
    E.g.
    select Name, Dept
    from table A
    UNION
    select Name, Dept
    from table B
    where Dept in (select distinct Dept from A)Therefore John that works in Dept 2 would not be included in the results.
    Is there a better or more efficient way of doing this than my example using the subquery as part of the where clause?
    Many thanks,
    Hazel

    Hi, Hazel,
    What you posted is as good as you can get without changing the tables.
    You don't have to say DISTINCT in the IN-subquery:
    where   Dept in (  select  Dept
                       from    A
                    )will get the same results, perhaps a little faster.

  • Duplicate Please Delete - Server Crash

    Duplicate
    Edited by: MartyMonster on 1/07/2012 17:14

    select Name, Dept
    from table A
    UNION
    select Name, Dept
    from table B
    inner join (select distinct Dept from A) A
    on (a.dept=b.dept)Since 10g ORACLE is quite good with "IN" collections, but the JOIN is normally performing better.
    -- andy

  • Duplicate got posted - Please delete

    Duplicate got posted - Please delete
    Edited by: 833360 on 08-Feb-2011 00:59

    It isn't easy. How do you precisely identify a "duplicate post" ? Suppose two thread have exactly the same words for the title and body (and are posted by the same person), which of the two should be deleted ? They may contain different responses, different numbers of responses.
    You are asking for a human being to verify every thread and compare it with previous and current threads and make a judgement call.
    Hemant K Chitale

  • Duplicate.  Sorry. Please delete!!

    Duplicate. Sorry. Please delete!!

    Can't delete it Malcolmo, but we can provide
    this
    quick link to the active duplicate, and that should fix the
    "duplicate" issue for you.

  • How to get Average of a column in UNION query

    Hi All,
    I will try to explain the issue as much as I can and If you need clarification on any piece please let me know.
    So, I have a Union Query with two sets of Criteria.
    The first Criteria Brings the list of Buildings and a set of Measures for it. The second criteria does the same but with a different set of filters.
    No I use a UNION between these both criteria and present them in a Pivot view so that we only have one row per each building. The values in each of the criteria in the UNION query are Summed
    Ex:
    Building
    Metric 1
    Metric 2
    1
    20
    30
    1
    25
    35
    2
    40
    50
    2
    45
    55
    So as I show in the pivot the result is
    Building
    Metric 1
    Metric 2
    1
    45
    65
    2
    85
    105
    Now the issue is with the Grand Total.
    I want the Grand Total to be an Average of the Buildings. So for Metric 1 The Grand Total should be (45+85)/2 because we have two buildings so the answer should be 65.
    How can I get that.
    Bottom Line: Need an Average as the Grand Total when the Aggregation rule on the column is set to Sum.
    we use 11.1.6.10 version

    Hi VJ
    What you are asking is impossible in the pivot table itself as you are asking one part of the pivot table to aggregate via one method, and another to aggregate via another method, on the same column ..
    It can be done using a calculated item. For your example above you'd use the formula ( $1 + $2) / 2.
    .. But thats HIGHLY explicit, and would only work if you KNOW how many buildings will come back in the query.. EVERYTIME.
    Why not restructure the query to combine it into a single query using an combinations of filters with OR in between?

  • Duplicate post deleted

    >Duplicate post deleted to comply with the VZW ToS, Please follow the original post at the link below. This thread will be locked<
    Unsatisfactory Moto X Rollout
    Message was edited by: Verizon Moderator><

    here ya go:
    http://cache.vzw.com/multimedia/mim/stratosphere/stratosphere.pdf

  • DUPLICATE POST - DELETE/IGNORE

    DUPLICATE POST - DELETE/IGNORE
    Message was edited by: BallisticJack

    transact wrote:
    The administrator, can he delete this post? Because it's here 3 per.
    Thanks.
    TransactNo, but you can hit the "edit" button on the first message in the thread and change the subject to something like "Duplicate post, please igonre". These double and triple posts are not that uncommon around here and most people understand (and have done it themselves). It seems to be due to slow response from the server and people hitting "post" button again and again, thinking it didn't "take" the first time.

  • Prompts for Combine similar request (Union query)

    I have been given 5 tables for creating one report out of each table. I created aliases and
    necessary self joins. I now need a summaryreport that combines these five tables. I tried the
    "combine similar request" and the report functions fine. Now I have to create two prompts, one for
    country and one for job. These are fields available in 4 tables and have the same format alongwith
    the same datatypes. Please help me with this.
    Table 1 Report A
    Table 2 Report B
    Table 3 Report C
    Table 4 Report D
    Table 5 Report E
    Table 1 - Table 4 contains Country and Job field which is of the same format and datatype.
    Table 5 does not have these and its not necessary for us to prompt this.
    This has no star schema setup and I am not in a position to get it done as well. I considered each
    table to be a fact table and created aliases, selfjoins etc. Please help with the procedure to
    create the two dashboard prompts. If I choose USA then the first four amongst the union queries
    should reflect data for the USA. The same applies for Job.

    Hello
    Thanks for the reply.
    My problem here is that I have 5 different tables with country fields in them. They are of the same format and datatype but there is no join between these tables. If I choose one Country field from any particular table, then the combine similar request doesnt seem to take it for other queries where the fields come from a different table.
    eg.
    Table 1 - table 5 have country fields
    I choose to create a prompt based on Country from Table 1. The union query doesnt seem to reflect on filtering values on the queries from other tables. It would filter only the values from table 1.
    Please let me know as to what can be done!

  • Create a Union query that automatically adds/contains new tables with a similar name

    Dear All, 
    For a research project i am upscaling from an Access database to SQL server/ SQL azure since the database got far too large. Now i am quite well known with Access, but to be quite honest, I am a SQL rookey. So a lot to learn for me here. 
    what I need is a union query that automatically adds new research dumps to the query. All research dumps have a table name starting with TD_EXP (Table Dump _ Export). In Access VBA I simply made a loop that builds up the SQL statement, but i have no clue
    how to do this within SQL Server...
    So, I need the UNION Query to select * from TD_Exp_2012_06_06_15_48 UNON all the  TD_Exp_XXXX_XX_XX_XX_XX that are added in the database,
    Who could help me out please with a dynamic SQL statement. 
    Best regards  Jurjen

    you can use INFORMATION_SCHEMA.TABLES view for that
    do like below
    DECLARE @Query varchar(max)
    SELECT @Query = STUFF((SELECT ' UNION ALL ' + 'SELECT * FROM ' + TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE 'TD_EXP%' FOR XML PATH('')),1,11,'')
    SELECT @Query
    Add one more condition as below if you want to exclude views from above 
    DECLARE @Query varchar(max)
    SELECT @Query = STUFF((SELECT ' UNION ALL ' + 'SELECT * FROM ' + TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE 'TD_EXP%' AND TABLE_TYPE = 'BASE TABLE' FOR XML PATH('')),1,11,'')
    SELECT @Query
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Test (Please Delete)

    12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 12345679801234567980123456798012345679801234567980123456798012345679801234567980 1234567980123456798012345679801234567980123456798

    I believe the problem is with your bursting query. You currently have:
    select distinct
    COLLEGE_ID KEY,
    'student_letter' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'RTF' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    '[email protected]' PARAMETER1,
    '[email protected]' PARAMETER2,
    '[email protected]' PARAMETER3,
    'Test-Please Delete' PARAMETER4,
    'Test' PARAMETER5,
    'true' PARAMETER6,
    '[email protected]' PARAMETER7
    from dual;You are selecting from dual. When selecting COLLEGE_ID from dual, you're not going to get anything, in fact you'll get an error saying that the column does not exist. You need to make sure that what you select for the KEY value matches the value set for the 'Deliver By' drop down. In order to do this, you'll have to select from your students table. So a bursting query that should work (I haven't tried it myself, so sorry for any syntax errors) would be:
    select distinct
    students_id KEY,
    'student_letter' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'RTF' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    '[email protected]' PARAMETER1,
    '[email protected]' PARAMETER2,
    '[email protected]' PARAMETER3,
    'Test-Please Delete' PARAMETER4,
    'Test' PARAMETER5,
    'true' PARAMETER6,
    '[email protected]' PARAMETER7
    from students(do not put a semi-colon at the end)
    Note that I'm using 'students_id' instead of COLLEGE_ID. This is because you have aliased students_id as COLLEGE_ID in your data set query. It will match up with your 'Deliver By' value that you have set for /ROWSET/ROW/COLLEGE_ID.
    Hope this helps, it can definitely get confusing.

  • SIM card full please delete SMS messages

    I keep getting the message "SIM card full please delete SMS messages". I've gone into options under TEXT messages and there is no option to check or uncheck "save on SIM card. I've had this issue since I bought the 9810. I did not have the same issue with the 9800 that I had before.

    Hi and welcome to the forums!
    Try the steps listed below.
    Let us know how it goes!
    Thanks,
    Bifocals
    KB13465 "SIM card is full please delete SMS messages" appears on the BlackBerry smartphone
    For a possible resolution of this issue, complete the following steps:
    On the Home screen of the BlackBerry smartphone, go to Options > SMS.
    Press the Menu key and click SMS options.
    Go to Leave Messages On SIM Card.
    Press the Menu key again and click Change Option.
    Select No.
    Press the Menu key and click Save.
    Open Messages on the Home screen of the BlackBerry smartphone and press the Menu key.
    Locate the View Folder menu option.
    Select SMS SIM Card Inbox.
    Delete any unnecessary SMS text messages in order to create space on the SIM card.
    For BlackBerry® Device Software 6.0, complete the following steps:
    On the Home screen of the BlackBerry smartphone, open the Messages application.
    Press the Menu key and click Options.
    Click Text Messaging.
    In the SMS Text area, clear the Leave Messages On SIM Card check box.
    Press the Menu key and click Save.
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?

    I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?  I opened the hard drive and from the column on the left of the menu I've selected "search for" and under that " all images" then "all documents"  I've deleted a few files from each. Are documents and images that I have deleted from here also deleted from the folders on my desktop?

    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your iMac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Delete any other mail in your Junk folders. Also, look through your Sent Mail to see if there is anything that can be deleted.
    Other things you can do to gain space.
    Once you have around 15 GBs regained, do a search, download and install OmniDisk Sweeper.
    This app will help you locate files that you can move/archive and/or delete from your system.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • Hi please forword this massage  I have a problem whith paid registration  When i did check and bought 2 ringtones  i paid her  Yesterday but amount taken off my card and i do not know why   If you have  a subscrition to someting please delete ann just qhe

    Hi please forword this massage
    I have a problem whith paid registration
    When i did check and bought 2 ringtones  i paid her
    Yesterday but amount taken off my card and i do not know why 
    If you have  a subscrition to someting please delete ann just qhen i dicide to buy someting then i take maney
    Sent from my iPhone

    Please repost in your native language, as your present post makes no sense.

  • Hello Adobe team.¨, Hello Adobe team. I am trying to delete my creative cloud program since about 2month but i'll get no answer. Please delete my account because I don't need it anymore. please do it as soon as possible. greetings Timea-Luana Panier

    Hello Adobe team. I am trying to delete my creative cloud program since about 2 months. I want to delete this because I don't need it anymore. STOOOP IT AS SOON AS POSSIBLE.

    I'm sorry but nothing from this you just sent me works...The linke form adobe support to chancel takes me over and over to the same page, and the only thing they do is tell me to write my problem down in a chat for questions...the link with the phone was pretty good but nobody picks up....I really don't know what to do anymore....i've tried everything and nothing happens..im just paying more and more....
         John T Smith <[email protected]> schrieb am 23:38 Sonntag, 22.März 2015:
    Hello Adobe team.¨, Hello Adobe team. I am trying to delete my creative cloud program since about 2month but i'll get no answer. Please delete my account because I don't need it anymore. please do it as soon as possible. greetings Timea-Luana Panier
    created by John T Smith in Adobe Creative Cloud - View the full discussionThis is an open forum, not Adobe support... You need Adobe support to cancel a subscription-start here https://forums.adobe.com/thread/1703848-or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html--and two links which may provide more details, if the above links don't help you-http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html-http: //helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7328961#7328961 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7328961#7328961 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Adobe Creative Cloud by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

Maybe you are looking for