specify the start date of subscription plan?

How can I specify the start date for a subscription to a plan (as the land line + mobile for the plan of Britain)? I would like to be covered for the month of September. I have to wait until September 1 before you subscribe and pay?

Thank you

Rob

RobIreland wrote:

I have to wait until September 1 before you subscribe and pay?

Hello and welcome to the Skype community.

Yes, you do.

TIME ZONE - US EAST. LOCATION - PHILADELPHIA, PA, USA.

I recommend that you always run the latest version of Skype: Windows & Mac

If my advice helped to solve your problem, please mark it as a solution to help others.
Please note that I usually do not respond to unsolicited private Messages. Thank you.

Tags: Skype

Similar Questions

  • If you upgrade or change your plan, resets the start date?

    See the question above. I want to know if I upgrade/switch a plan, the start date of the subscription will be based on my initial contract or a new one?

    Not the start date is not reset. The payment date remains the same, the amount of charge are adjusted accordingly.

    Concerning

    Stéphane

  • Determine if the end date is after the start date

    I have 2 date fields in a form.  When I click the button submit, that I'm trying to ensure that the end date is after the start date.

    Here is the code I use:

    var sDate = Date.parse (BackgroundInformation.Background.CheckingDateStart.rawValue);

    var eDate = Date.parse (BackgroundInformation.Background.CheckingDateEnd.rawValue);

    xfa.host.messageBox ("Start Date:"+ BackgroundInformation.Background.CheckingDateStart.rawValue ");

    xfa.host.messageBox ("eDate: sDate" + eDate + ":" + sDate);

    if(sDate > eDate)

    {
    valid = false;
    fieldName += "Start Date is greater than the end Date."
    }

    The message box displays the start date 2014-10-30 but sDate is Nan.

    I tried:

    var eDate = new Date (BackgroundInformation.Background.CheckingDateEnd.rawValue);

    sDate var = new Date (BackgroundInformation.Background.CheckingDateStart.rawValue);

    and when I display sDate says 'Invalid Date '.

    Any ideas?

    It should work...

    var sDate = BackgroundInformation.Background.CheckingDateStart.value.date.value;

    var eDate = BackgroundInformation.Background.CheckingDateEnd.value.date.value;

    xfa.host.messageBox ("eDate: sDate" + eDate + ":" + sDate);

    if(sDate > eDate)

    {
       valid = false;
       fieldName += "Start Date is greater than the end Date."
    }
  • Access policy for the user whose status is "disabled until the start date.

    Hello

    By default political access does not work for the user whose start date is later in OIM 11 g. I have an access policy that the provisions of all users of Xellerate OID. This policy is not work for users who start date is later, i.e. status = disabled until the start date.

    No workaround to make the strategy work is much appreciated.



    Thank you
    GYAN

    up to 10g it work very well if you put provisining date as the current date. But, you cannot apply even in oim 11g

    Try below

    Add new udf to the user profile
    reconcile the start date in the new udf and leave the start of oim null date
    In this case the access policy will be triggers and you will be able to get an account created to the OID, and then set the start workflow OID IOM

    for reminder and all just to add trigger for the new udf and update on the changes.

    Note: In your case as OID in disable State it will cause no problem after the user status "disable up to that Start Date. If the resource object in activate State and change you the status to disable up to that starting date, it does not fire disable the user trigger.

    Kind regards
    Mireille nayan

  • Return max date records before the start date

    Hello

    Can anyone help please?

    I have two subqueries, a tableofchildren called, the other called tableofworkers. Tableofchildren identifies the date the child started a class.

    The second query, Tableofworkers, lists the workers and their history of involvement with the child. A child may have had a history with several workers. The worker has an allocatedstartdate indicating when they began to work with the child.

    For my purpose, I need to return the workername and the allocatedstartdate of the worker involved with the child more recently before or at the time when the child began the course.

    I have partially accomplished this with the query below. However, due to the quality of the data, the child may not always have an affected worker (allocatedstartdate) earlier or equal to the start date for the course of the child. In this case, the query fails and does not return the child record, that it excludes from the dataset.

    Can anyone suggest a way to modify this query, so it acts like a left outer query and returns all the records in the child and null raising where they have no worker allocated beginning before or on the date of start of course?

    Thank you! :)
    select *
     from
    (
    select tc.childid, 
    tc.childname, 
    tc.enteredcourse, 
    tw.workername, 
    tw.allocatedstartdate, 
    row_number() over ( partition by tc.childid, tc.enteredcourse order by tw.allocatedstartdate desc) rn
    from tableofchildren tc, tableofworkers tw
    where tc.childid = tw.childid(+)
    and tc.enteredcourse >= nvl(tw.allocatedstartdate,add_months(sysdate,-10000))
    )
    where rn = 1 
    desired output
    CHILDID CHILDNAME            ENTEREDCOURSEDATE         WORKERNAME           ALLOCATEDSTARTDATE        
    ------- -------------------- ------------------------- -------------------- ------------------------- 
    C1000   Johnny Rotten        01-APR-11                 Mrs Gerbil           19-AUG-10                 
    C1256   Doris Dingle         12-AUG-03                 Mrs Pepsi            12-AUG-03                 
    C3466   Bonny Boy            25-MAR-11                 Mrs Jones            23-FEB-11                 
    C4567   Casper Ghost         21-MAR-09                                                                
    C1245   Doris Dingle         20-NOV-06             
    create the table tableofchildren
    (ChildID varchar (6))
    ChildName varchar (20),
    Date of EnteredCourse,
    Date of LeftCourse);

    insert into tableofchildren (ChildName, EnteredCourse, ChildID, LeftCourse) values ("C1000", "Johnny Rotten', to_date (' 01/04/2011 ',' dd/mm/rrrr'), to_date (' 23/05/2011 ',' dd/mm/rrrr'));
    insert into tableofchildren (ChildName, EnteredCourse, ChildID, LeftCourse) values ('C1256', 'Doris Dingle', to_date (' 12/08/2003 ',' dd/mm/rrrr'), to_date (' 16/09/2005 ',' dd/mm/rrrr'));
    insert into tableofchildren (ChildName, EnteredCourse, ChildID, LeftCourse) values ('C3466","Bonny Boy', to_date (' 25/03/2011 ',' dd/mm/rrrr'), to_date (' 28/03/2011 ',' dd/mm/rrrr'));
    insert into tableofchildren (ChildName, EnteredCourse, ChildID, LeftCourse) values ('C4567', 'Ghost Casper', to_date (' 21/03/2009 ',' dd/mm/rrrr'), to_date('22/04/2010','dd/mm/rrrr'));
    insert into tableofchildren (ChildName, EnteredCourse, ChildID, LeftCourse) values ('C1245', 'Doris Dingle', to_date (' 20/11/2006 ',' dd/mm/rrrr'), to_date (' 30/12/2008 ',' dd/mm/rrrr'));


    create the table tableofworkers
    (WorkerID, varchar (6))
    WorkerName varchar (20),
    Date of AllocatedStartDate,
    Date of AllocatedEndDate,
    ChildID varchar (6));

    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3453', 'Ms. Whatever", to_date('12/05/2009','dd/mm/rrrr'), to_date ('2009-06-13', ' dd/mm/rrrr'),"C1000");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3442', 'Mr. Toad', to_date('14/07/2010','dd/mm/rrrr'), to_date (' 18/08/2010 ',' dd/mm/rrrr'), "C1000");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W14592', "Mrs gerbil', to_date (' 08/19/2010 ',' dd/mm/rrrr'), NULL,"C1000");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3442', 'Ms. Pepsi", to_date('12/08/2003','dd/mm/rrrr'), to_date (' 22/04/2007 ',' dd/mm/rrrr'),"C1256");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3490', 'Mr. tomato' to_date('12/03/2008','dd/mm/rrrr'), to_date (' 04/30/2009 ',' dd/mm/rrrr'), "C3466");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3453', 'Ms. Whatever", to_date('01/06/2009','dd/mm/rrrr'), to_date ('2010-04-30', ' mm/dd/rrrr'),"C3466");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3457', "Mrs Jones", to_date('23/02/2011','dd/mm/rrrr'), null, "C3466");
    insert into tableofworkers (WorkerID, WorkerName, AllocatedStartDate, AllocatedEndDate, ChildID) values ('W3453', 'Ms. Jobsworth", to_date('22/11/2006','dd/mm/rrrr'), null, 'C1245');


    create the table OutputWanted
    (ChildID varchar (6))
    ChildName varchar (20),
    Date of EnteredCourseDate,
    WorkerName varchar (20),
    Date of AllocatedStartDate);

    insert into OutputWanted (ChildID ChildName, EnteredCourseDate, WorkerName, AllocatedStartDate) values ("C1000", "Johnny Rotten', to_date (' 01/04/2011 ',' dd/mm/rrrr'),"Mrs gerbil", to_date('19/08/2010','dd/mm/rrrr'));
    insert into OutputWanted (ChildID ChildName, EnteredCourseDate, WorkerName, AllocatedStartDate) values ('C1256', 'Doris Dingle', to_date (' 12/08/2003 ',' dd/mm/rrrr'), "Ms. Pepsi", to_date('12/08/2003','dd/mm/rrrr'));
    insert into OutputWanted (ChildID ChildName, EnteredCourseDate, WorkerName, AllocatedStartDate) values ('C3466","Bonny Boy', to_date (' 25/03/2011 ',' dd/mm/rrrr'), "Mrs. Jones", to_date('23/02/2011','dd/mm/rrrr'));
    insert into OutputWanted (ChildID ChildName, EnteredCourseDate, WorkerName, AllocatedStartDate) values ('C4567', 'Casper the ghost', to_date (' 21/03/2009 ',' dd/mm/rrrr'), null, null);
    insert into OutputWanted (ChildID ChildName, EnteredCourseDate, WorkerName, AllocatedStartDate) values ('C1245', 'Doris Dingle', to_date (' 20/11/2006 ',' dd/mm/rrrr'), null, null);

    Published by: little Penguin November 21, 2011 07:03

    What something like that?

    SELECT childid
         , childname
         , enteredcourse
         , workername
         , allocatedstartdate
    FROM
    (
         SELECT toc.childid
              , toc.childname
              , toc.enteredcourse
              , tow.workername
              , tow.allocatedstartdate
              , ROW_NUMBER() OVER (PARTITION BY toc.childid ORDER BY tow.allocatedstartdate DESC) AS rn
         FROM   tableofchildren   toc
         LEFT JOIN tableofworkers tow ON tow.childid = toc.childid
                         AND toc.enteredcourse >= tow.allocatedstartdate
    )
    WHERE rn = 1
    

    Just note that you need a different RANK and DENSE_RANK analytical ranking function if there is a chance that many workers could be attributed to the children on the same allocatedstartdate.

  • End date must CLEARLY not less than the start date, else it

    Hello

    I put DATE of BEGINNING of THE CONTRACT and END of CONTRACT fields on the form. These 2 objects (DateTime objjects), I pulled game tab of the palette and fell on my layout, fine design.

    Now, I try to put a validation than the end dat eshould not lower than the beginning, so I had a thread as below from Niall.

    http://forums.Adobe.com/message/1909551

    and I've done my coding FormCalc to the OUTPUT of the END DATE field as event title below,

    Please note that FormCalc
    End date must not less than the start date, else CLEAR-Begin

    var ACE
    var endDate

    As = xfa.resolveNode ("CUSTOMER..") RawValue Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_START_DATE")
    endDate = xfa.resolveNode ("CUSTOMER. Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE") GLR awValue

    If (ACE > endDate) then
    xfa.host.messageBox ("end date is less than the departure date! End date is allowed")
    xfa.resolveNode (the "CUSTOMER". Page31_Contracts.Con_Whole_Page.CON_Basic_Info.CON_END_DATE") GLR awValue = null
    endif

    End date must not less than the start date, else CLEAR-end

    I tried to VALIDATE, calculate, change events of END DATE, but nothing works!

    Can pls. Let me Kow how I optimize my requirement? I'm anewbie,

    Thank you

    If you use the exit event, you will likely have the same code on the date fields beginning and end, because they have an addiction to each other. Maybe better try the validate end date event, so that if a field is changed the event is fired. You can try the following to validate the event

    // Pls. note this FormCalc
    // End date should not less than Start date, else CLEAR it - Begin
    
    var stDate
    var endDate
    
    stDate = CON_START_DATE.rawValue
    endDate = $.rawValue
    
    if ( HasValue(endDate) ) then
        if (stDate > endDate) then
            xfa.host.messageBox("End date is lower than Start date! End date is cleared")
            $.rawValue = null
        endif
    endif
    1
    // End date should not less than Start date, else CLEAR it - End
    
  • The autodeploiement based on the Start Date

    Hello world

    I have a requirement that I take a stream of HR (GTC FF) and this user from IOM and AD based on the start date of the provision. Without taking into account the start date, I can do it by assigning a role that contains an access strategy for AD. Under certain conditions, I attribute this role based on an attribute in the HR feed with a ruler, I defined.

    then how I also factor in the start date in the rule I created which determines if the role must be assigned. It does not resemble the rule designer can handle anything, except for string literals. If I can account for the date, I could probably use a scheduled task to later assign roles to users based on their start date. so in this process I assign the role if the two attribute condition and departure date are met.

    I could take a different approach and say I'm not going to assign the role to all through the accession of any rule and just manipulate through scheduled tasks. I'm not sure I like this approach, but if that's the solution preferred, please let me know.

    Thank you

    I suggest the route of the scheduled task. Recon in your current values, including the start date. Create an another UDF which is a checkbox, or a few true/false, yes/no field type. In your scheduled task, find users who have a start date< current="" time="" and="" then="" mark="" the="" udf="" as="" the="" true/yes/checked="" value.="" in="" your="" group="" membership="" rule="" for="" ad="" provisioning,="" add="" a="" rule="" that="" checks="" for="" this="" field.="" this="" will="" then="" trigger="" the="" access="" policy="" to="" apply.="" i="" have="" used="" this="" technique="" before="" and="" it="" works="" very="" well="" to="" turn="" a="" field="" that="" you="" can't="" have="" a="" group="" membership="" rule="" on="" turned="" into="" a="" field="" that="" can="" have="" a="" rule="">

    -Kevin

  • the start date of the week formula

    Hi guys,.

    I have a report in which I need to display the Start Date of the week for a particular calendar date, for example

    Date week Start Date
    ---------- ---------------------------
    July 01, 2010 June 28, 2010
    July 2010 05 05 July, 2010
    11 July, 2010 05 July, 2010

    No idea how can achieve us.

    Thank you
    Ronnie

    TIMESTAMPADD (SQL_TSI_DAY, 2, TIMESTAMPADD (SQL_TSI_DAY, DAYOFWEEK (CURRENT_DATE) *-1, CURRENT_DATE))

  • What is the value of the start date, date in the end QueryAvailablePerfMetric method?

    The method QueryAvailablePerfMetric in the Performance Manager management entity has optional intervalId beginTime, endTime parameters.

    What is the difference in values returned by this method when the start and end dates are excluded?

    In my case, I see the same data.

    Because I do not think that same intervalId can we have different PerfMetricIds in a VMWare host, or is it not true?

    In the case of unmanaged ESX systems are provided only on statistics in real time for the current day.

    Statistics of sending hosts the vCenter Server system managing managed. The vCenter Server gathers statistics

    data performance of all systems ESX/ESXi that it manages and stores the information in its database, which constitute historical data.

    On the specification of begineTime and end in the spec would ensure only the metrics available in the specified period are gathered, if it makes a request for historical measures. These parameters will be not applicable for statistics in real time.

  • BlackBerry Z10 Z10 calendar Bug (closed schedule when you create a new appointment and try to change the start date/time)

    Hello

    Report a bug with my new Z10.  Fairly easy to reproduce:

    1. Go to "calendar".
    2. Click 'Add '.
    3. Click on the 'Starts' falling down
    4. Farm of "calendar".

    I tried to restart the phone, but same result.  This works if you change a date, but not to create a new appointment.

    Thank you

    Jamie

    This is a known problem and I hope it will be fixed in a future update.

  • Identify the Start Date, based on other summary values.

    I am runing:

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 64 bit Production
    PL/SQL Release 11.2.0.1.0 - Production

    CORE11.2.0.1.0 Production

    AMT for Linux: Version 11.2.0.1.0 - Production

    NLSRTL Version 11.2.0.1.0 - Production

    Here are the general dateset that I try.

    with dateset as)
    Select 1 worker, 8 totalhours, 27 April 15 ' work date, 1 installation, 35 production of all the double union
    Select 1, 8, April 26, 15 ', 1, 35 of all the double union
    Select 1, 0, 25 April 15 ', 1, 0 of all the double union
    Select 1, 0, 24 April 15 ', 1, 0 of all the double union
    Select 1, 6, 23 April 15 ', 1, 20 of all the double union
    Select 1, 7, April 22, 15 ', 1, 27 union double all the
    Select 2, 4, April 24, 15 ', 1, 15 union double all the
    Select 2, 4, April 27, 15 ', 1, 15 union double all the
    Select 2, 4, April 22, 15 ', 1, 15 union double all the
    Select 3, 6, 26 April 15 ', 2, 32 union double all the
    Select 3, 6, April 25, 15 ', 2, 32 union double all the
    Select 3, 6, 24 April 15 ', 2, 32 union double all the
    Select 3, 6, 22 April 15 ', 2, 32 union double all the
    Select 3, 6, 23 April 15 ', 2, 32 double
    )

    Select
    *
    of dateset

    I'm trying to get a date range or have the identified dates for the first harvest of the end date and then have hours max per each day added up to at least 15 hours and find the total production to examine these days that are.

    So, if I choose the end date of April 25, 15 ', then I identified the maximum working hours at the facility. So because no work was allocated to the 25 for installation 1, 24 is the actual start date, in a plant worker 2 3 had 6 hours work, if installation date of end is the 25 hours max of 6. Noticed that the installation has 24, 23 and 22 total hours bing 17 (always meets the requirements of 15 hours), while the installation of 2 has 18 hours 25, 24, 23 (requirement for hours 15 min)

    This is the prison of result data group.

    with datasettwo like)
    Select 4 maxhours, 24 April 15 ' work date, 1 installation, 15 totalproduction of all the double union
    Select 6, April 23, 15 ', 1, 20 of all the double union
    Select 7, April 22, 15 ', 1, 27 union double all the
    Select 6, April 25, 15 ', 2, 32 union double all the
    Select 6, April 24, 15 ', 2, 32 union double all the
    Select 6, April 23, 15 ', 2, 32 double
    )

    Select
    *
    of datasettwo
    order by
    installation
    date desc

    so, how would I go about konwing when start work Date date has been reached because the total number of hours has been reached or excited the limit.

    All thoughts.

    With the help of everyone, thank you,

    It's the rough solution I was looking for, could probably be cleaner.

    I apologize for the confusion.

    so, for April 27, the total production for that day for installation 1 is 50 units and 8 hours max.

    and if the end date is sent to the 24

    April 22 is the total output of 32 units and hours max of 6 for this day.

    with dateset as)
    Select 1 worker, 8 totalhours, 27 April 15 ' work date, 1 installation, 35 production of all the double union
    Select 1, 8, April 26, 15 ', 1, 35 of all the double union
    Select 1, 0, 25 April 15 ', 1, 0 of all the double union
    Select 1, 0, 24 April 15 ', 1, 0 of all the double union
    Select 1, 6, 23 April 15 ', 1, 20 of all the double union
    Select 1, 7, April 22, 15 ', 1, 27 union double all the
    Select 2, 4, April 24, 15 ', 1, 15 union double all the
    Select 2, 4, April 27, 15 ', 1, 15 union double all the
    Select 2, 4, April 22, 15 ', 1, 15 union double all the
    Select 3, 6, 26 April 15 ', 2, 32 union double all the
    Select 3, 6, April 25, 15 ', 2, 32 union double all the
    Select 3, 6, 24 April 15 ', 2, 32 union double all the
    Select 3, 6, 22 April 15 ', 2, 32 union double all the
    Select 3, 6, April 27, 15 ', 2, 32 double
    )

    Select
    installation
    date of work
    totalproductionperday
    maxhoursperday
    sum (maxhoursperday) on totalhours (installation partition)

    from (select distinct)
    installation
    date of work
    maxhoursperday
    totalproductionperday
    , case when sum (maxhoursperday) over (partition by order of ease by date desc)
    -sum (maxhoursperday) over (partition by establishment, work date)<>
    then 'Y '.
    another "n".
    end to_include
           
    (select
    installation
    date of work
    max (totalhours) maxhoursperday
    sum (production) totalproductionperday
                   
    of dateset
                     
    where date of work<= to_date(:enddate,="" 'dd-mon-rr')="" --="" end="" date="">
                   
    Group
    installation
    date of work
    )
    )

    where to_include like 'Y '.

    order by
    installation
    date desc

  • Specify the destination data store

    Can someone tell me how to specify the destinaion for a conversion job data store.  For now, it is to choose a (seemingly random) default data store based on the host (also a seemingly random choice by default).

    I can't find anything on a data store in the definition of the target.

    Thank you

    William

    Hello

    First of all to respond to the selection of the host.

    If you are targeting a VC and your VM need to be deployed on specific ESX you must set the property 'host' to 'ConverterTargetVmSpecManagedVmLocation '.

    Host property is ManagedObjecReference to "HostSystem" (see Ref. guide). Thus, the code should look like similar to (java):

    ConverterTargetVmSpecManagedVmLocation targetVMLocation = new ConverterTargetVmSpecManagedVmLocation();

    ........

    ManagedObjectReference targetESX = new ManagedObjectReference();
    targetESX.setType ("HostSystem");
    targetESX.set_value("host-93"); can get real value through the VC API

    targetVMLocation.setHost (targetESX);

    To answer the second question - for selection of storage.

    If you want to select certain data for the target VM store when managed destination is used you must set the property 'vmxDatastoreName' of the data object 'ConverterStorageParams' (it is property of ConverterCloningParams, which is prop from ConverterConversionParams, which are the pillar of the ConversionJobSpec).

    If you want virtual disks virtual (file hard) machine is stored in different data store of VMX data store, you must set property 'datastoreName' of the data object ConverterStorageParamsManagedTargetDiskParams (which need to be addressed for the post of pillar of object 'ConverterStorageParams')

    I hope this helps.

  • Search based on the start date and end date

    Hello

    I added two fields "Start Date" and "End Date" on a search page.
    I did the VO extension also.
    Now, I have to implement the logic of the search to get all records created between' start' and 'End Date' after pressing the "GO" button on this page.

    Can someone please provide advice to extend the controller.

    Thanks in advance.


    Gaurav.

    I think that the path would be

    Import oracle.apps.per.common.webui.PerTransactionTopCOImpl;

    Thank you
    -Anil
    http://oracleanil.blogspot.com/

  • Differences in time between the start date and end Date

    I have a requirement to get the difference between the two dates, I am on the syntax below to fill, but it does not work. The syntax is the following:
    TimestampDiff (SQL_TSI_MONTH, "[< dStart_Date_ITAG >]", '[< dEnd_Date_ITAG >]'). Could you please help me on this. Thanks in advance

    Olivier

    Hello Roytson,

    I want to enjoy the sytem itself, I mean there are 2 custom fields start date and enddate, my function should take system only do not enter manually.
    could you please develop this thing.

  • Each day of a week of the start date

    Hi I need select date in this format from March

    SELECT 1 AS SORT_order,

    NEXT_DAY() sysdate, 'THURSDAY') period_ending,.

    SYSDATE-to_date ()to_char(), 'IW') AS the week

    OF the double

    UNION ALL

    SELECT 2,

    NEXT_DAY()-7,sysdate , 'THURSDAY').

    To_char ()(to_date) sysdate-7), 'IW') AS the week

    OF the double

    UNION ALL

    CHOOSE 3,

    NEXT_DAY()-14,sysdate , 'THURSDAY').

    To_char ()(to_date) sysdate-14), 'IW')WEEK

    OF the double

    Output

    112 SEP-1337
    213-SEP-0536
    329 AUG 1335

    Select row_number() over (order by level desc) sort_order,

    TO_CHAR (next_day (date ' 2013-03-01', 'THURSDAY') + 7 * (level - 1), 'DD-MON-RR') the_date,.

    TO_CHAR (next_day (date ' 2013-03-01', 'THURSDAY') + 7 * (level - 1), 'IW') the_week

    of the double

    connect by level<= ceil((sysdate="" -="" date="" '2013-03-01')="">

    order of sort_order

    SORT_ORDER THE_DATE THE_WEEK
    1 12 SEP-13 37
    2 13-SEP-05 36
    3 29 AUG 13 35
    4 22 AUG 13 34
    5 15 AUGUST 13 33
    6 AUGUST 8, 13 32
    7 1 AUG 13 31
    8 25 JULY 13 30
    9 18 JULY 13 29
    10 JULY 11, 13 28
    11 4 JULY 13 27
    12 27 JUNE 13 26
    13 20 JUNE 13 25
    14 13 JUNE 13 24
    15 JUNE 6, 13 23
    16 30 MAY 13 22
    17 MAY 23, 13 21
    18 16 MAY 13 20
    19 MAY 9, 13 19
    20 2 MAY 13 18
    21 25 APRIL 13 17
    22 18 APRIL 13 16
    23 APRIL 11, 13 15
    24 APRIL 4, 13 14
    25 28 MARCH 13 13
    26 21 MARCH 13 12
    27 14 MARCH 13 11
    28 MARCH 7, 13 10

    Looked at

    Etbin

Maybe you are looking for

  • How to move the menu bar?

    I want to put my bar menu next to the address bar. The address bar is not 80% of the space on this line. PLENTY of room for the menu bar. I hate watching this big chunk of wasted space at the top of my screen where the menu bar and the bar above the

  • Print labels Avery 5436 deskjet 2542

    How to set up the printer for labels Avery 5436? The paper is 4 X 6 with 5 labels per sheet.

  • Air play drops in and out

    Can someone help me understand why when I use air play to listen to the music, he abandoned all the time. First of all, I got the device connected to her router (LAN), and then I update my network (EA6900 and WUM710) and still have the same problem.

  • Windows 7 does not recognize my CD/DVD drive...

    I have a Compaq laptop with an Optiarc DVD RW AD - 7561A ATA drive, but it does not work after installing Windows 7. I tried to find a driver for it but no luck. It worked fine before with Vista before installing the new... Any help would be apprecia

  • Question about WHERE Clause

    HelloI'm doing a conditional clause where clause displays the lines in a report.The desired control is date of two fields (CIC and announcement) must all be virgins or someone not be an 'Admin' (taken from a global variable stored on connection) for