Day by Day Data exluding week ends and holidays.

Hi,
Can any give me solution for below requirement...
                                13/06/2007 14/06/2007 15/06/2006 18/06/2007 .. till 20 days
of Lines Processed   15               18               13            19           .........    
of Units Processed   17               14               10            11           .........    
of Lines P Received  16               19               20            16           .........    
of Units P Received  19               22               40            17           .........    
here the user will give the input of first value(13/06/2007), now we have to display 19 days after user input(13/06/2007) value and we need to skip the holidays and week ends in the report.
In the above report 16/06/2006 & 17/06/2006 are week ends thats why those 2 days data is not there.
Please suggest me how can we do it this requirement.
Thanks & Regards
Venkat

before you get a dozen of answers using artifice like all_objects or connect by, I post you this one
create table date_table(d date primary key);
exec for d in 0..10000 loop insert into date_table values(date '1980-01-01'+d);end loop;commit
select d,count(hiredate) from date_table left join emp on (d=hiredate) where d between date '1980-12-01' and date '1980-12-31' group by d order by d;
D         COUNT(HIREDATE)
01-DEC-80               0
02-DEC-80               0
03-DEC-80               0
04-DEC-80               0
05-DEC-80               0
06-DEC-80               0
07-DEC-80               0
08-DEC-80               0
09-DEC-80               0
10-DEC-80               0
11-DEC-80               0
12-DEC-80               0
13-DEC-80               0
14-DEC-80               0
15-DEC-80               0
16-DEC-80               0
17-DEC-80               1
18-DEC-80               0
19-DEC-80               0
20-DEC-80               0
21-DEC-80               0
22-DEC-80               0
23-DEC-80               0
24-DEC-80               0
25-DEC-80               0
26-DEC-80               0
27-DEC-80               0
28-DEC-80               0
29-DEC-80               0
30-DEC-80               0
31-DEC-80               0
31 rows selected.Message was edited by:
Laurent Schneider
primary key added for integrity and performance

Similar Messages

  • I downloaded a 30 day trial less than a week ago and have only used it once...?

    I downloaded a 30 day trial, have had it on my computer less than 7 days and have only used it once. Now, when I go to open it up, it only gives me the option to license the software. How do I get the rest of my 30 days worth?

    leleonly7 wrote:
    I downloaded a 30 day trial, have had it on my computer less than 7 days and have only used it once. Now, when I go to open it up, it only gives me the option to license the software. How do I get the rest of my 30 days worth?
    Hmmm... that's a tricky one.  I'm going to suggest you ask in the Creative Cloud forum, because they are better at installation issues
    https://forums.adobe.com/community/creative_cloud
    You _might_ find the answer here though
    https://helpx.adobe.com/creative-cloud/help/install-apps.html
    Or just get the Photography deal subscription for $10/month.  I promise you will never regret it, and a year from now, you might even be a famous image manipulator!  On the other hand, if you don't have Photoshop, you will never be a famous image manipulator.  You know it makes sense. :-)
    Good luck

  • Getting date using week number and year

    hi!
    how can i get the date for a given year using a given week number?
    assuming that the first day will be sunday?
    for example..
    the input year is 2006,
    then the week number is 30
    the result should be july 23 2006...
    please help.. Thanks!

    play a little with the Calendar class. You might need some setters and maybe the add method to scroll to the previous Sunday.

  • Hi, I have an issue with my Mac Book Pro 15 Inch Mid 2010. I have installed Windows 8.1 operating system during week end and only windows is opening when I log in the mac. I don't know how to switch back to apple OS. Can some one please help?

    Windows 8.1 installed on my Mac and now I am not able to open Apple OS. Mac is opening straight windows with out an option to open Apple OS. My Mac is running on the latest Yosemite OS.

    Please also see Boot Camp: Set the default operating system.

  • Sched.start date not allowing on week-ends for fwd scheduling process order

    Hello Experts,
    For a process order & scheduling typr forward/in time if I take sat or sunday as a start date then if I click on schedule, system changes it to previous workin day (friday). But however if i select backward/in time scheduling type & put week ends as finish day then system does not change this date.
    How can I make system to allow schedule start date on week ends also for forward/in time scheduling type. in a factory calendor sat & sunday are holidays. while for work center, calender sat & sunday are marked as working days.
    Thanks for advance,
    Vijay.

    Hi
    it depends upon client requirement.you must have defined the holiday calender as well.if you select the public holidays in your factory calender.then system will allow you to do your daily transctions on public holidays as well and vice versa.so better go with all options selected .and plz check at your end
    plz revert back if it works
    Regards
    Anupam Sharma

  • How to calculate days between 2 dates excluding public holidays over SAP ?

    Hi
    Have a universe over SAP data. Trying to calculate days between 2 dates. SAP holds Public Holiday data in various tables e.g  Thol and data is updated via scal. Using my univeres as a source I want to run  reports for different countries so need to have various bank holidays not just UK. In SAP function modules handle this. Has anyone designed a solution to cater for this situation in a universe ?
    Thanks in advance
    M

    Hi,
    I assume you mean SAP R/3 (ECC) when you write SAP and SAP BW.
    Are you using BW? If so, I would load the data into SAP BW, create a query using customer exit variables and build your universe on top of that...
    -J

  • Sort date by week AND year

    How do I sort a bunch of date by week number and year? I have a bunch of date in the format IW-YYYY such as
    45-2010
    46-2010
    47-2010
    48-2010
    49-2010
    50-2010
    51-2010
    52-2010
    01-2011
    02-2011
    If I sort by week, I get the following which is not what I want. I want the above.
    01-2011
    02-2011
    45-2010
    46-2010
    47-2010
    48-2010
    49-2010
    50-2010
    51-2010
    52-2010
    Thanks,
    SM

    do you happen to have the underlying dates as well as the iw-yyyy format? If so, then it's just a matter of:
    order by trunc(actual_date_col, 'iw')If not, then you're going to have to do:
    order by to_number(substr(date_in_iw_format_col, 4)), to_number(substr(date_in_iw_format_col, 1, 2))eg:
    with sample_data as (select '45-2010' date_in_iw_format_col from dual union all
                         select '46-2010' date_in_iw_format_col from dual union all
                         select '47-2010' date_in_iw_format_col from dual union all
                         select '48-2010' date_in_iw_format_col from dual union all
                         select '49-2010' date_in_iw_format_col from dual union all
                         select '50-2010' date_in_iw_format_col from dual union all
                         select '51-2010' date_in_iw_format_col from dual union all
                         select '52-2010' date_in_iw_format_col from dual union all
                         select '01-2011' date_in_iw_format_col from dual union all
                         select '02-2011' date_in_iw_format_col from dual)
    select *
    from   sample_data
    order by to_number(substr(date_in_iw_format_col, 4)),
             to_number(substr(date_in_iw_format_col, 1, 2));
    DATE_IN_IW_FORMAT_COL
    45-2010             
    46-2010             
    47-2010             
    48-2010             
    49-2010             
    50-2010             
    51-2010             
    52-2010             
    01-2011             
    02-2011             

  • VF01 Determine Billing date for billing index and printout to current date

    Hi
    we need to determine the Billing date for billing index and printout to current date
    What can I do to determine automatically at the time of creation current day to Billing date for billing index and printout?
    please let me know
    Best Regards,

    Hi Beatriz ,
    You have two options here. you can chose either of these solutions:
    1.
    A. T-Code: VTFL ( if using del related billing)   For the billing document and delivery, at item level assign the copying requirement 011 or if you are currently using some other routine then you can use following in that
    VBRK-FKDAT = SY-DATUM.
    B. T-code VTFA (if using order related billing)
    Similar to A, using copying requirement 011.
    2. You may also try option of Checking in the User Exit for the Program RV60AFZA & RV60AFZA.
    Please let us know if this helps
    Regards
    Harpreet

  • DATEADD excluding weekends and holidays

    select getdate(),dateadd(day,15,Getdate())
    THis gets me today and 15 days from now. However I need 15 business days. I need to exclude weekends and holidays in here so that is looks like this. 
    where fulldate between getdate() and dateadd(day,15,Getdate())
    I have a dim table for dates and have an isholiday = 0 or 1. I just can't figure out how to include this in the DATEADD expression.

    Hi,
    try this link
    http://www.sqlservercentral.com/Forums/Topic1247790-391-1.aspx
    Hope will help you,
    Questo post è fornito "così com'è". Non conferisce garanzie o diritti di alcun tipo. Ricorda di usare la funzione "segna come risposta" per i post che ti hanno aiutato a risolvere il problema e "deseleziona
    come risposta" quando le risposte segnate non sono effettivamente utili. Questo è particolarmente utile per altri utenti che leggono il thread, alla ricerca di soluzioni a problemi similari. ENG: This posting is provided "AS IS"
    with no warranties, and confers no rights. Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. Please Vote This As
    Helpful if it helps to solve your issue. This can be beneficial to other community members reading the thread.

  • Find the data based on week-end ,week-day

    Hi,
    Db : 11.2.0.1
    We have the table LX_CPU_TRACK_DLY
    desc LX_CPU_TRACK_DLY
    Name Null? Type
    SYSTEMDATE DATE
    HOST_NAME VARCHAR2(50 CHAR)
    USR_PRCT NUMBER(10,5)
    SYS_PRCT NUMBER(10,5)
    WAIT_PRCT NUMBER(10,5)
    IDLE_PRCT NUMBER(10,5)
    PHYS_CPU_USD NUMBER(10,5)
    RUN_Q NUMBER(10,5)
    I want to fetch data based on week end(sat,sun) ,week day(mon-fri) on systemdate column for entire month in two seperate query.
    Any suggestions
    Thanks
    Edited by: 922884 on Nov 22, 2012 11:01 AM

    Hi,
    Thanks
    ilm-426 21-11-2012 20:38:00
    ilm-426 21-11-2012 20:39:00
    ilm-426 21-11-2012 20:40:00
    ilm-426 21-11-2012 20:41:00
    ilm-426 21-11-2012 20:42:00
    ilm-426 21-11-2012 20:43:00
    ilm-426 21-11-2012 20:44:00
    ilm-426 21-11-2012 20:45:00
    ilm-426 21-11-2012 20:46:00
    ilm-426 21-11-2012 20:47:00
    ilm-426 21-11-2012 20:48:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-426 21-11-2012 20:49:00
    ilm-426 21-11-2012 20:50:00
    ilm-426 21-11-2012 20:51:00
    ilm-426 21-11-2012 20:52:00
    ilm-426 21-11-2012 20:53:00
    ilm-426 21-11-2012 20:54:00
    ilm-426 21-11-2012 20:55:00
    ilm-426 21-11-2012 20:56:00
    ilm-426 21-11-2012 20:57:00
    ilm-426 21-11-2012 20:58:00
    ilm-426 21-11-2012 20:59:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-426 21-11-2012 21:00:00
    ilm-429 21-11-2012 20:01:00
    ilm-429 21-11-2012 20:02:00
    ilm-429 21-11-2012 20:03:00
    ilm-429 21-11-2012 20:04:00
    ilm-429 21-11-2012 20:05:00
    ilm-429 21-11-2012 20:06:00
    ilm-429 21-11-2012 20:07:00
    ilm-429 21-11-2012 20:08:00
    ilm-429 21-11-2012 20:09:00
    ilm-429 21-11-2012 20:10:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-429 21-11-2012 20:11:00
    ilm-429 21-11-2012 20:12:00
    ilm-429 21-11-2012 20:13:00
    ilm-429 21-11-2012 20:14:00
    ilm-429 21-11-2012 20:15:00
    ilm-429 21-11-2012 20:16:00
    ilm-429 21-11-2012 20:17:00
    ilm-429 21-11-2012 20:18:00
    ilm-429 21-11-2012 20:19:00
    ilm-429 21-11-2012 20:20:00
    ilm-429 21-11-2012 20:21:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-429 21-11-2012 20:22:00
    ilm-429 21-11-2012 20:23:00
    ilm-429 21-11-2012 20:24:00
    ilm-429 21-11-2012 20:25:00
    ilm-429 21-11-2012 20:26:00
    ilm-429 21-11-2012 20:27:00
    ilm-429 21-11-2012 20:28:00
    ilm-429 21-11-2012 20:29:00
    ilm-429 21-11-2012 20:30:00
    ilm-429 21-11-2012 20:31:00
    ilm-429 21-11-2012 20:32:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-429 21-11-2012 20:33:00
    ilm-429 21-11-2012 20:34:00
    ilm-429 21-11-2012 20:35:00
    ilm-429 21-11-2012 20:36:00
    ilm-429 21-11-2012 20:37:00
    ilm-429 21-11-2012 20:38:00
    ilm-429 21-11-2012 20:39:00
    ilm-429 21-11-2012 20:40:00
    ilm-429 21-11-2012 20:41:00
    ilm-429 21-11-2012 20:42:00
    ilm-429 21-11-2012 20:43:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-429 21-11-2012 20:44:00
    ilm-429 21-11-2012 20:45:00
    ilm-429 21-11-2012 20:46:00
    ilm-429 21-11-2012 20:47:00
    ilm-429 21-11-2012 20:48:00
    ilm-429 21-11-2012 20:49:00
    ilm-429 21-11-2012 20:50:00
    ilm-429 21-11-2012 20:51:00
    ilm-429 21-11-2012 20:52:00
    ilm-429 21-11-2012 20:53:00
    ilm-429 21-11-2012 20:54:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-429 21-11-2012 20:55:00
    ilm-429 21-11-2012 20:56:00
    ilm-429 21-11-2012 20:57:00
    ilm-429 21-11-2012 20:58:00
    ilm-429 21-11-2012 20:59:00
    ilm-429 21-11-2012 21:00:00
    ilm-495 21-11-2012 20:01:00
    ilm-495 21-11-2012 20:02:00
    ilm-495 21-11-2012 20:03:00
    ilm-495 21-11-2012 20:04:00
    ilm-495 21-11-2012 20:05:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:06:00
    ilm-495 21-11-2012 20:07:00
    ilm-495 21-11-2012 20:08:00
    ilm-495 21-11-2012 20:09:00
    ilm-495 21-11-2012 20:10:00
    ilm-495 21-11-2012 20:11:00
    ilm-495 21-11-2012 20:12:00
    ilm-495 21-11-2012 20:13:00
    ilm-495 21-11-2012 20:14:00
    ilm-495 21-11-2012 20:15:00
    ilm-495 21-11-2012 20:16:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:17:00
    ilm-495 21-11-2012 20:18:00
    ilm-495 21-11-2012 20:19:00
    ilm-495 21-11-2012 20:20:00
    ilm-495 21-11-2012 20:21:00
    ilm-495 21-11-2012 20:22:00
    ilm-495 21-11-2012 20:23:00
    ilm-495 21-11-2012 20:24:00
    ilm-495 21-11-2012 20:25:00
    ilm-495 21-11-2012 20:26:00
    ilm-495 21-11-2012 20:27:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:28:00
    ilm-495 21-11-2012 20:29:00
    ilm-495 21-11-2012 20:30:00
    ilm-495 21-11-2012 20:31:00
    ilm-495 21-11-2012 20:32:00
    ilm-495 21-11-2012 20:33:00
    ilm-495 21-11-2012 20:34:00
    ilm-495 21-11-2012 20:35:00
    ilm-495 21-11-2012 20:36:00
    ilm-495 21-11-2012 20:37:00
    ilm-495 21-11-2012 20:38:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:39:00
    ilm-495 21-11-2012 20:40:00
    ilm-495 21-11-2012 20:41:00
    ilm-495 21-11-2012 20:42:00
    ilm-495 21-11-2012 20:43:00
    ilm-495 21-11-2012 20:44:00
    ilm-495 21-11-2012 20:45:00
    ilm-495 21-11-2012 20:46:00
    ilm-495 21-11-2012 20:47:00
    ilm-495 21-11-2012 20:48:00
    ilm-495 21-11-2012 20:49:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:50:00
    ilm-495 21-11-2012 20:51:00
    ilm-495 21-11-2012 20:52:00
    ilm-495 21-11-2012 20:53:00
    ilm-495 21-11-2012 20:54:00
    ilm-495 21-11-2012 20:55:00
    ilm-495 21-11-2012 20:56:00
    ilm-495 21-11-2012 20:57:00
    ilm-495 21-11-2012 20:58:00
    ilm-495 21-11-2012 20:59:00
    ilm-495 21-11-2012 21:00:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:01:00
    ilm-500 21-11-2012 20:02:00
    ilm-500 21-11-2012 20:03:00
    ilm-500 21-11-2012 20:04:00
    ilm-500 21-11-2012 20:05:00
    ilm-251 21-11-2012 20:01:00
    ilm-251 21-11-2012 20:02:00
    ilm-251 21-11-2012 20:03:00
    ilm-251 21-11-2012 20:04:00
    ilm-251 21-11-2012 20:05:00
    ilm-251 21-11-2012 20:06:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-251 21-11-2012 20:07:00
    ilm-251 21-11-2012 20:08:00
    ilm-251 21-11-2012 20:09:00
    ilm-251 21-11-2012 20:10:00
    ilm-251 21-11-2012 20:11:00
    ilm-251 21-11-2012 20:12:00
    ilm-251 21-11-2012 20:13:00
    ilm-251 21-11-2012 20:14:00
    ilm-251 21-11-2012 20:15:00
    ilm-251 21-11-2012 20:16:00
    ilm-251 21-11-2012 20:17:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-251 21-11-2012 20:18:00
    ilm-251 21-11-2012 20:19:00
    ilm-251 21-11-2012 20:20:00
    ilm-251 21-11-2012 20:21:00
    ilm-251 21-11-2012 20:22:00
    ilm-251 21-11-2012 20:23:00
    ilm-251 21-11-2012 20:24:00
    ilm-251 21-11-2012 20:25:00
    ilm-251 21-11-2012 20:26:00
    ilm-251 21-11-2012 20:27:00
    ilm-251 21-11-2012 20:28:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:06:00
    ilm-500 21-11-2012 20:07:00
    ilm-500 21-11-2012 20:08:00
    ilm-500 21-11-2012 20:09:00
    ilm-500 21-11-2012 20:10:00
    ilm-500 21-11-2012 20:11:00
    ilm-500 21-11-2012 20:12:00
    ilm-500 21-11-2012 20:13:00
    ilm-500 21-11-2012 20:14:00
    ilm-500 21-11-2012 20:15:00
    ilm-500 21-11-2012 20:16:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:17:00
    ilm-500 21-11-2012 20:18:00
    ilm-500 21-11-2012 20:19:00
    ilm-500 21-11-2012 20:20:00
    ilm-500 21-11-2012 20:21:00
    ilm-500 21-11-2012 20:22:00
    ilm-500 21-11-2012 20:23:00
    ilm-500 21-11-2012 20:24:00
    ilm-500 21-11-2012 20:25:00
    ilm-500 21-11-2012 20:26:00
    ilm-500 21-11-2012 20:27:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:28:00
    ilm-500 21-11-2012 20:29:00
    ilm-500 21-11-2012 20:30:00
    ilm-500 21-11-2012 20:31:00
    ilm-500 21-11-2012 20:32:00
    ilm-500 21-11-2012 20:33:00
    ilm-500 21-11-2012 20:34:00
    ilm-500 21-11-2012 20:35:00
    ilm-500 21-11-2012 20:36:00
    ilm-500 21-11-2012 20:37:00
    ilm-500 21-11-2012 20:38:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:39:00
    ilm-500 21-11-2012 20:40:00
    ilm-500 21-11-2012 20:41:00
    ilm-500 21-11-2012 20:42:00
    ilm-500 21-11-2012 20:43:00
    ilm-500 21-11-2012 20:44:00
    ilm-500 21-11-2012 20:45:00
    ilm-500 21-11-2012 20:46:00
    ilm-500 21-11-2012 20:47:00
    ilm-500 21-11-2012 20:48:00
    ilm-500 21-11-2012 20:49:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-500 21-11-2012 20:50:00
    ilm-500 21-11-2012 20:51:00
    ilm-500 21-11-2012 20:52:00
    ilm-500 21-11-2012 20:53:00
    ilm-500 21-11-2012 20:54:00
    ilm-500 21-11-2012 20:55:00
    ilm-500 21-11-2012 20:56:00
    ilm-500 21-11-2012 20:57:00
    ilm-500 21-11-2012 20:58:00
    ilm-500 21-11-2012 20:59:00
    ilm-500 21-11-2012 21:00:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-251 21-11-2012 20:29:00
    ilm-251 21-11-2012 20:30:00
    ilm-251 21-11-2012 20:31:00
    ilm-251 21-11-2012 20:32:00
    ilm-251 21-11-2012 20:33:00
    ilm-251 21-11-2012 20:34:00
    ilm-251 21-11-2012 20:35:00
    ilm-251 21-11-2012 20:36:00
    ilm-251 21-11-2012 20:37:00
    ilm-251 21-11-2012 20:38:00
    ilm-251 21-11-2012 20:39:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-251 21-11-2012 20:40:00
    ilm-251 21-11-2012 20:41:00
    ilm-251 21-11-2012 20:42:00
    ilm-251 21-11-2012 20:43:00
    ilm-251 21-11-2012 20:44:00
    ilm-251 21-11-2012 20:45:00
    ilm-251 21-11-2012 20:46:00
    ilm-251 21-11-2012 20:47:00
    ilm-251 21-11-2012 20:48:00
    ilm-251 21-11-2012 20:49:00
    ilm-251 21-11-2012 20:50:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-251 21-11-2012 20:51:00
    ilm-251 21-11-2012 20:52:00
    ilm-251 21-11-2012 20:53:00
    ilm-251 21-11-2012 20:54:00
    ilm-251 21-11-2012 20:55:00
    ilm-251 21-11-2012 20:56:00
    ilm-251 21-11-2012 20:57:00
    ilm-251 21-11-2012 20:58:00
    ilm-251 21-11-2012 20:59:00
    ilm-251 21-11-2012 21:00:00
    ilm-425 21-11-2012 20:01:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:02:00
    ilm-425 21-11-2012 20:03:00
    ilm-425 21-11-2012 20:04:00
    ilm-425 21-11-2012 20:05:00
    ilm-425 21-11-2012 20:06:00
    ilm-425 21-11-2012 20:07:00
    ilm-425 21-11-2012 20:08:00
    ilm-425 21-11-2012 20:09:00
    ilm-425 21-11-2012 20:10:00
    ilm-425 21-11-2012 20:11:00
    ilm-425 21-11-2012 20:12:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:13:00
    ilm-425 21-11-2012 20:14:00
    ilm-425 21-11-2012 20:15:00
    ilm-425 21-11-2012 20:16:00
    ilm-425 21-11-2012 20:17:00
    ilm-425 21-11-2012 20:18:00
    ilm-425 21-11-2012 20:19:00
    ilm-425 21-11-2012 20:20:00
    ilm-425 21-11-2012 20:21:00
    ilm-425 21-11-2012 20:22:00
    ilm-425 21-11-2012 20:23:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:24:00
    ilm-425 21-11-2012 20:25:00
    ilm-425 21-11-2012 20:26:00
    ilm-425 21-11-2012 20:27:00
    ilm-425 21-11-2012 20:28:00
    ilm-425 21-11-2012 20:29:00
    ilm-425 21-11-2012 20:30:00
    ilm-425 21-11-2012 20:31:00
    ilm-425 21-11-2012 20:32:00
    ilm-425 21-11-2012 20:33:00
    ilm-425 21-11-2012 20:34:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:35:00
    ilm-425 21-11-2012 20:36:00
    ilm-425 21-11-2012 20:37:00
    ilm-425 21-11-2012 20:38:00
    ilm-425 21-11-2012 20:39:00
    ilm-425 21-11-2012 20:40:00
    ilm-425 21-11-2012 20:41:00
    ilm-425 21-11-2012 20:42:00
    ilm-425 21-11-2012 20:43:00
    ilm-425 21-11-2012 20:44:00
    ilm-425 21-11-2012 20:45:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:46:00
    ilm-425 21-11-2012 20:47:00
    ilm-425 21-11-2012 20:48:00
    ilm-425 21-11-2012 20:49:00
    ilm-425 21-11-2012 20:50:00
    ilm-425 21-11-2012 20:51:00
    ilm-425 21-11-2012 20:52:00
    ilm-425 21-11-2012 20:53:00
    ilm-425 21-11-2012 20:54:00
    ilm-425 21-11-2012 20:55:00
    ilm-425 21-11-2012 20:56:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-425 21-11-2012 20:57:00
    ilm-425 21-11-2012 20:58:00
    ilm-425 21-11-2012 20:59:00
    ilm-425 21-11-2012 21:00:00
    ilm-428 21-11-2012 20:01:00
    ilm-428 21-11-2012 20:02:00
    ilm-428 21-11-2012 20:03:00
    ilm-428 21-11-2012 20:04:00
    ilm-428 21-11-2012 20:05:00
    ilm-428 21-11-2012 20:06:00
    ilm-428 21-11-2012 20:07:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-428 21-11-2012 20:08:00
    ilm-428 21-11-2012 20:09:00
    ilm-428 21-11-2012 20:10:00
    ilm-428 21-11-2012 20:11:00
    ilm-428 21-11-2012 20:12:00
    ilm-428 21-11-2012 20:13:00
    ilm-428 21-11-2012 20:14:00
    ilm-428 21-11-2012 20:15:00
    ilm-428 21-11-2012 20:16:00
    ilm-428 21-11-2012 20:17:00
    ilm-428 21-11-2012 20:18:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-428 21-11-2012 20:19:00
    ilm-428 21-11-2012 20:20:00
    ilm-428 21-11-2012 20:21:00
    ilm-428 21-11-2012 20:22:00
    ilm-428 21-11-2012 20:23:00
    ilm-428 21-11-2012 20:24:00
    ilm-428 21-11-2012 20:25:00
    ilm-428 21-11-2012 20:26:00
    ilm-428 21-11-2012 20:27:00
    ilm-428 21-11-2012 20:28:00
    ilm-428 21-11-2012 20:29:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-428 21-11-2012 20:30:00
    ilm-428 21-11-2012 20:31:00
    ilm-428 21-11-2012 20:32:00
    ilm-428 21-11-2012 20:33:00
    ilm-428 21-11-2012 20:34:00
    ilm-428 21-11-2012 20:35:00
    ilm-428 21-11-2012 20:36:00
    ilm-428 21-11-2012 20:37:00
    ilm-428 21-11-2012 20:38:00
    ilm-428 21-11-2012 20:39:00
    ilm-428 21-11-2012 20:40:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-428 21-11-2012 20:41:00
    ilm-428 21-11-2012 20:42:00
    ilm-428 21-11-2012 20:43:00
    ilm-428 21-11-2012 20:44:00
    ilm-428 21-11-2012 20:45:00
    ilm-428 21-11-2012 20:46:00
    ilm-428 21-11-2012 20:47:00
    ilm-428 21-11-2012 20:48:00
    ilm-428 21-11-2012 20:49:00
    ilm-428 21-11-2012 20:50:00
    ilm-428 21-11-2012 20:51:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-428 21-11-2012 20:52:00
    ilm-428 21-11-2012 20:53:00
    ilm-428 21-11-2012 20:54:00
    ilm-428 21-11-2012 20:55:00
    ilm-428 21-11-2012 20:56:00
    ilm-428 21-11-2012 20:57:00
    ilm-428 21-11-2012 20:58:00
    ilm-428 21-11-2012 20:59:00
    ilm-428 21-11-2012 21:00:00
    ilm-495 21-11-2012 20:01:00
    ilm-495 21-11-2012 20:02:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:03:00
    ilm-495 21-11-2012 20:04:00
    ilm-495 21-11-2012 20:05:00
    ilm-495 21-11-2012 20:06:00
    ilm-495 21-11-2012 20:07:00
    ilm-495 21-11-2012 20:08:00
    ilm-495 21-11-2012 20:09:00
    ilm-495 21-11-2012 20:10:00
    ilm-495 21-11-2012 20:11:00
    ilm-495 21-11-2012 20:12:00
    ilm-495 21-11-2012 20:13:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:14:00
    ilm-495 21-11-2012 20:15:00
    ilm-495 21-11-2012 20:16:00
    ilm-495 21-11-2012 20:17:00
    ilm-495 21-11-2012 20:18:00
    ilm-495 21-11-2012 20:19:00
    ilm-495 21-11-2012 20:20:00
    ilm-495 21-11-2012 20:21:00
    ilm-495 21-11-2012 20:22:00
    ilm-495 21-11-2012 20:23:00
    ilm-495 21-11-2012 20:24:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:25:00
    ilm-495 21-11-2012 20:26:00
    ilm-495 21-11-2012 20:27:00
    ilm-495 21-11-2012 20:28:00
    ilm-495 21-11-2012 20:29:00
    ilm-495 21-11-2012 20:30:00
    ilm-495 21-11-2012 20:31:00
    ilm-495 21-11-2012 20:32:00
    ilm-495 21-11-2012 20:33:00
    ilm-495 21-11-2012 20:34:00
    ilm-495 21-11-2012 20:35:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:36:00
    ilm-495 21-11-2012 20:37:00
    ilm-495 21-11-2012 20:38:00
    ilm-495 21-11-2012 20:39:00
    ilm-495 21-11-2012 20:40:00
    ilm-495 21-11-2012 20:41:00
    ilm-495 21-11-2012 20:42:00
    ilm-495 21-11-2012 20:43:00
    ilm-495 21-11-2012 20:44:00
    ilm-495 21-11-2012 20:45:00
    ilm-495 21-11-2012 20:46:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:47:00
    ilm-495 21-11-2012 20:48:00
    ilm-495 21-11-2012 20:49:00
    ilm-495 21-11-2012 20:50:00
    ilm-495 21-11-2012 20:51:00
    ilm-495 21-11-2012 20:52:00
    ilm-495 21-11-2012 20:53:00
    ilm-495 21-11-2012 20:54:00
    ilm-495 21-11-2012 20:55:00
    ilm-495 21-11-2012 20:56:00
    ilm-495 21-11-2012 20:57:00
    HOST_NAME TO_CHAR(SYSTEMDATE,
    ilm-495 21-11-2012 20:58:00
    ilm-495 21-11-2012 20:59:00
    ilm-495 21-11-2012 21:00:00
    1620 rows selected.
    Thanks

  • Week ending date after 365 days in sql

    Hi Experts,
    I need to find the week ending date after 365 days of the given week start date .
    Example : Week start date : 23-Jan -2011 (Sunday)
    Desired week end date : 28-Jan-2012 (Saturday)
    How to achive this through sql ?
    Thanks .

    Hi,
    Check below this may help you, adjust "(t.day_num+1)" as per your requirment.
    with t as
    (select decode(to_char(trunc(sysdate + 365), 'dy'),'mon',1,
                                                      'tue',2,
                                                      'wed',3,
                                                      'thu',4,
                                                      'fri',5,
                                                      'sat',6,
                                                      'sun',7) day_num
                                                      from dual
    select to_char(trunc(sysdate + 365)+ (7-(t.day_num+1)),'dd dy-mm-yyyy')   
                                                      from t ;

  • How to get the difference of two dates in years,months and days

    Hi friends,
    how to get the difference of two dates in years,months and days
    for ex 2 years 3 months 13 days
    select (sysdate-date_Start) from per_periods_of_service
    thanks

    Something like this...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select to_date('17-nov-2006','dd-mon-yyyy') as c_start_date, to_date('21-jan-2008','dd-mon-yyyy') as c_end_date from dual union all
      2             select to_date('21-nov-2006','dd-mon-yyyy'), to_date('17-feb-2008','dd-mon-yyyy') from dual union all
      3             select to_date('21-jun-2006','dd-mon-yyyy'), to_date('17-jul-2008','dd-mon-yyyy') from dual
      4             )
      5  -- end of test data
      6  select c_start_date, c_end_date
      7        ,trunc(months_between(c_end_date, c_start_date) / 12) as yrs
      8        ,trunc(mod(months_between(c_end_date, c_start_date), 12)) as mnths
      9        ,trunc(c_end_date - add_months(c_start_date, trunc(months_between(c_end_date, c_start_date)))) as dys
    10* from t
    SQL> /
    C_START_D C_END_DAT        YRS      MNTHS        DYS
    17-NOV-06 21-JAN-08          1          2          4
    21-NOV-06 17-FEB-08          1          2         27
    21-JUN-06 17-JUL-08          2          0         26
    SQL>But, don't forget that different months have different numbers of days, and leap years can effect it too.

  • Firefox users cannot presently exercise choice, to opt-in or out of "data collected for improving services." As a result, Firefox is constantly dialing home, sometimes four times a day or more up to 48 times a day. There is some over-stepping and redunda

    I understand the charter on this is to "check-in" once every time the program is turned on, and then once every 6 hours after that, or, once every 24 hours presumably. But the phone-home-effect is over-stepping these basic parameters. If a user turns their browser off and then on, Firefox is still obligated to "check-in" even if it just checked in 3 minutes prior. If the coding is not pre-designed to overstep, or act excessively in a redundant focus, the instance of once every six hours or once every 24 hours, is still overmuch if a user has been doing this (non-voluntarily-participating) for 9 months or longer.
    == This happened ==
    Every time Firefox opened
    == This started when Firefox took up the initiative of "improving service. to end users" or similar idea, making the web safer for novice users, etcetera.

    Opening question was truncated. Should read: "Firefox users cannot presently exercise choice, to opt-in or out of "data collected for improving services." As a result, Firefox is constantly dialing home, sometimes four times a day or more up to 48 times a day. There is some over-stepping and redundancy here. It would seem the practice of "improving service" has been accomplished with as much information as Mozilla has gathered in the last 6-18 months about its users habits. '''Isnt it about time to give users the option to opt out of that now that most the heavy liftiing has been accomplished?'''"

  • I can't make or take phone calls, but i can message and use data. Has this happened to anyone else? I've gone through three Samsung Galaxy S5's in the past three days, two of which have this problem and one just stopped working all together.

    My phone doesn't have any cellular phone functions...but it CAN send text messages and access data. Has this happened to anyone else? I've gone through three Samsung Galaxy S5's in the past three days, the last two have this problem and the first stopped working all together. I've had new sim cards put in, ive done hard resets on the phone, i've rebooted the phone, done battery pulls, and tech support has reset the signal to my phone. Nothing has worked. (I just "upgraded" <- lol.... and my old phone IS turned off.)

    Im in 79707. So to recap my whole case: I upgraded my device using the verizon wireless website. I received my phone and switched my old SIM card from my Droid Razr Maxx HD into the new Galaxy S5. Everything worked fine until the next morning (May 31st) when I woke up and the phone wouldn't turn on. I took the phone to the local Verizon store and they were also unable to turn it on. They issued me a new Galaxy S5 (referred to as phone 2) and switched my SIM card into that one.
    With PHONE 2 i was able to make calls and receive calls, along with text and data for approximately four hours. After that, i was unable to use the phone function of the device, but text and data were still functioning. I took PHONE 2 back to the Verizon store where they attempted to hard reset the phone twice, they also installed two new SIM cards at the store. After this they would get the same error, which is the phone just reading "Dialing..." after attempting to make a call. The Verizon associate declared the phone "DOA" and issued me another Galaxy S5 (referred to as PHONE 3).
    PHONE 3 worked well, with phone text and data featured intact from when I received it on the after noon of the 31st until approximately 2:30PM on June 1st. I contacted Verizon Tech Support via Gmail phone to attempt the correct the problem. They reset the connection, had me do a battery pull, had me close the "phone" application, and erase the data and catche, then restart the phone. All of which had no effect. My phone is still able to receive texts and use data (even with wifi off) it simply cannot make or take phone calls. all it says is "dialing..." when I attempt to make a call. When other phones call my device it rings once on their end and directs them to voicemail, PHONE 3 does not ring on my end.
    I have made sure my old phone is completely powered down.

  • I just bought iphone5 last 2 weeks.At first week i can use itune apps after these last 3 days i try to use itunes again and i couldnt open it...same as app store...please help me to solve my problem...thanks and god bless...

    i just bought iphone5 last 2 weeks.At first week i can use itune apps after these last 3 days i try to use itunes again and i couldnt open it...same as app store...please help me to solve my problem...thanks and god bless...

    Thanks Jakob. You are correct.
    I just finished another "experiment".
    I transcode the whole clip 1,2,3,4,5,6,7 to another ext Western Digital HDD and got the Error -50 too. Problem is this ext Western Digital HDD is Daisy chained to the LaCIe.
    So, I tried transcoding to another ext Western Digital HDD connected to my router. And this time NO PROBLEM.
    So, I should readjust the FW800 connectors.
    What do you mean by the controller of the Firewire ?
    Thanks
    Jakob Peterhänsel wrote:
    All I'm saying is, the error -50 from the Finder normally means there is something spooky going on.
    Here, the LaCie drives become unstable. In the few cases where I'v actually opened the cage and put the HDD into another mount, the HDD seems to be fine, so I suspect it's either the FW connectors of the controller itself.
    If the drive is under warranty, replace it, otherwise, move your data to another drive if it startes to do so frequently.
    Here, the drive will 'behave' normally for some time after a reboot of the OS, but it's a pain to reboot every X hours...

Maybe you are looking for

  • IPod Touch is stuck on "Connect To iTunes" screen

    My iPod Touch won't turn on correctly. I'm able to reset it, and then turn it back on. But when I turn it back on it says that it needs to be connected with iTunes. So when I plug in my iPod, it comes up on iTunes saying that my iPod could not be reg

  • Problem with seeing JComponents in GridLayout

    Hi everybody. I'm having some hard time with my pie chart application and hope that you can help me to fix the problem. I have a Graph class that represents a single pie chart. It's similar to this (I've simplified it for better understanding):   pub

  • HT201210 I can't update the SOFTWARE

    I downloaded the new software IOS 6 on the itunes and i want to update my iphone but it gives me error.. so i don't get it ? why ?

  • How to add custom start options in VS package

    I need to add custom start options in VS package. Example: Instead of showing "start", need to provide options like "Start in Firefox", "Start in Chrome" and handle their events on our own. Any references would be helpful Thanks in advance

  • Randomly appearing/disappearing images

    I have two images on a page that will randomly appear and disappear when the page is refreshed. Sometimes both appear at the same time, but with subsequent refreshing of the page one of them will disappear, then it might reappear while the other one