I would like display the week is the last week of month (week of year)

Tom,
Is there a way by using SQL Plus to get a date range that would show the number of week
as well?
For example:
January 2010
S M Tu W Th F S
1 2 Week1
3 4 5 6 7 8 9 Week2
10 11 12 13 14 15 16 Week3
17 18 19 20 21 22 23 Week4
24 25 26 27 28 29 30 Week5
31 Week6
February 2010
S M Tu W Th F S
1 2 3 4 5 6 Week6
7 8 9 10 11 12 13 Week7
14 15 16 17 18 19 20 Week8
21 22 23 24 25 26 27 Week9
28 Week10
I would like display the week as per above.
we use week starting day = Sunday
First day of each year consider as week 1.
Is there a way I can do this?
Thanks.
Edited by: user10594896 on Mar 5, 2010 1:26 AM
Edited by: user10594896 on Mar 5, 2010 3:00 AM

There's lots of information you can get from dates, and it will also depend on your databases local settings...
Here's an example that works in my local settings for generating a calendar for a year (including week numbers):
SQL> break on month skip 1
SQL> set linesize 200
SQL> set pagesize 2000
SQL> column month format a20
SQL> column week format a4
SQL> with req as (select '&Required_Year_YYYY' as yr from dual)
  2      ,offset as (select case when to_char(trunc(to_date(yr,'YYYY'),'YYYY'),'IW') in ('52','53') then 1 else 0 end as offset from req)
  3  select lpad( Month, 20-(20-length(month))/2 ) month,
  4         '('||week||')' as week, "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"
  5  from (
  6    select to_char(dt,'fmMonth YYYY') month,
  7    case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
  8         when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
  9         when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
10         else to_char(to_number(to_char(dt,'iw'))+offset) end as week,
11    max(decode(to_char(dt,'d'),'1',lpad(to_char(dt,'fmdd'),2))) "Mo",
12    max(decode(to_char(dt,'d'),'2',lpad(to_char(dt,'fmdd'),2))) "Tu",
13    max(decode(to_char(dt,'d'),'3',lpad(to_char(dt,'fmdd'),2))) "We",
14    max(decode(to_char(dt,'d'),'4',lpad(to_char(dt,'fmdd'),2))) "Th",
15    max(decode(to_char(dt,'d'),'5',lpad(to_char(dt,'fmdd'),2))) "Fr",
16    max(decode(to_char(dt,'d'),'6',lpad(to_char(dt,'fmdd'),2))) "Sa",
17    max(decode(to_char(dt,'d'),'7',lpad(to_char(dt,'fmdd'),2))) "Su"
18    from ( select trunc(to_date(req.yr,'YYYY'),'y')-1+rownum dt
19           from all_objects, req
20           where rownum <= add_months(trunc(to_date(req.yr,'YYYY'),'y'),12) - trunc(to_date(req.yr,'YYYY'),'y') )
21        ,offset
22    group by to_char(dt,'fmMonth YYYY'),     case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
23                                                  when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
24                                                  when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
25                                                  else to_char(to_number(to_char(dt,'iw'))+offset) end
26    ) x
27  order by to_date( month, 'Month YYYY' ), to_number(x.week)
28  /
Enter value for required_year_yyyy: 2010
old   1: with req as (select '&Required_Year_YYYY' as yr from dual)
new   1: with req as (select '2010' as yr from dual)
MONTH                WEEK Mo Tu We Th Fr Sa Su
    January 2010     (1)               1  2  3
                     (2)   4  5  6  7  8  9 10
                     (3)  11 12 13 14 15 16 17
                     (4)  18 19 20 21 22 23 24
                     (5)  25 26 27 28 29 30 31
   February 2010     (6)   1  2  3  4  5  6  7
                     (7)   8  9 10 11 12 13 14
                     (8)  15 16 17 18 19 20 21
                     (9)  22 23 24 25 26 27 28
     March 2010      (10)  1  2  3  4  5  6  7
                     (11)  8  9 10 11 12 13 14
                     (12) 15 16 17 18 19 20 21
                     (13) 22 23 24 25 26 27 28
                     (14) 29 30 31
     April 2010      (14)           1  2  3  4
                     (15)  5  6  7  8  9 10 11
                     (16) 12 13 14 15 16 17 18
                     (17) 19 20 21 22 23 24 25
                     (18) 26 27 28 29 30
      May 2010       (18)                 1  2
                     (19)  3  4  5  6  7  8  9
                     (20) 10 11 12 13 14 15 16
                     (21) 17 18 19 20 21 22 23
                     (22) 24 25 26 27 28 29 30
                     (23) 31
     June 2010       (23)     1  2  3  4  5  6
                     (24)  7  8  9 10 11 12 13
                     (25) 14 15 16 17 18 19 20
                     (26) 21 22 23 24 25 26 27
                     (27) 28 29 30
     July 2010       (27)           1  2  3  4
                     (28)  5  6  7  8  9 10 11
                     (29) 12 13 14 15 16 17 18
                     (30) 19 20 21 22 23 24 25
                     (31) 26 27 28 29 30 31
    August 2010      (31)                    1
                     (32)  2  3  4  5  6  7  8
                     (33)  9 10 11 12 13 14 15
                     (34) 16 17 18 19 20 21 22
                     (35) 23 24 25 26 27 28 29
                     (36) 30 31
   September 2010    (36)        1  2  3  4  5
                     (37)  6  7  8  9 10 11 12
                     (38) 13 14 15 16 17 18 19
                     (39) 20 21 22 23 24 25 26
                     (40) 27 28 29 30
    October 2010     (40)              1  2  3
                     (41)  4  5  6  7  8  9 10
                     (42) 11 12 13 14 15 16 17
                     (43) 18 19 20 21 22 23 24
                     (44) 25 26 27 28 29 30 31
   November 2010     (45)  1  2  3  4  5  6  7
                     (46)  8  9 10 11 12 13 14
                     (47) 15 16 17 18 19 20 21
                     (48) 22 23 24 25 26 27 28
                     (49) 29 30
   December 2010     (49)        1  2  3  4  5
                     (50)  6  7  8  9 10 11 12
                     (51) 13 14 15 16 17 18 19
                     (52) 20 21 22 23 24 25 26
                     (53) 27 28 29 30 31
61 rows selected.
SQL>

Similar Messages

  • As a stockholder, I would like see the development of iTV with Retina display and integrating Siri control, internet access, and iTunes apps. This new product would be a large screen, thin wall mounted television, much like a oversided iPad.

    As a stockholder, I would like see the development of iTV with Retina display and integrating Siri control, internet access, and iTunes apps. This new product would be a large screen, thin wall mounted television, much like a oversided iPad.
    Do you think this product is possible?

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • We have 4 iphones in our family and an Ipad.  When we purchase music I would like for the entire family to be able to use it.  Should each of us use a different apple account or should we use the same one.

    We have 4 iphones and an Ipad in our family. When we purchase music, I would like for the entire family to be able to use it and then back it up to Icloud. What is the best and cheapest way for this to happen.  Should we all have a different apple id or should we use the same one.

    You will all need to be on the same itunes account ID.
    You can however all have seperate icloud accounts aswel.

  • I have a Ipod shuffle 4th generation. I would like for the music to shut off after one hour long song automatically rather than go to the next song. Is this possible?

    I have an ipod shuffle 4th generation. I would like for the music to automatically shut off after one hour long song rather than going to next song on the list. Is this possible?

    Sorry, but it's not.  The only way to get this to work is to only put the one hour song on your Shuffle. 
    B-rock

  • How to display the last value of a field in a group in the group header

    I need to display the last quiz score from a group of quiz scores as part of the header of a group of units (the quiz score values are in the detail record).  I can not use the group footer, which would be the natural place to find the last value.  It must be in the group header because there will be a subsequent group within the unit group.  In other words, the grouping is as follows:
    Unit Group Header (Display last quiz score in unit)
    SubUnit Group Header (Display other detail summaries)
    Detail Record (including quiz score)
    SubUnit Group Footer
    Unit Group Footer
    While there is a minimum/maximum summary function, there is not a first/last function.
    Fuskie
    Who is constantly amazed at the ability of users to request report features that are not easily implented through Crystal Reports...

    Hi Fuskie,
    One suggestion to display the last quiz score in the Group Header, other than what had already been suggested, will be to use a linked subreport in the Group Header. It is not an efficient way to display the information, but it could do the trick.
    Another suggestion will be to insert a subreport in the report header, then store the last quiz score in an array for each group, then share it with the main report and display the  values in the appropriate group. In this way it will only connect twice to the data source, one for the main report and once for the subreport, instead of multiple connection for each group.
    Finally, the most efficient way will be to have this value calculated on the database side using a command object or a stored procedure.
    Patrick

  • Display the last item in Content Query web part

    Edited my post
    I was trying to create a CQWP that will display 5 blog posts in the following format:
    Name of the blog                | Previous blog posts:    |
     Post 5                               |  Post 4                     
    |
     Description                        |  Post 3                     
    |
                                             |  Post
    2                      |
                                             |  Post
    1                      |
    --------------------------------------------------------- |
    This was my first time using CQWP and XSLT. So the guys in this forum helped me with the code that finds the last item and splits it from the rest of the posts.
    But when I try to create a format like the table above, is not possible, because <xsl:Template keeps repeating the layout. It seems that CQWP is not made for fanncy layouts. I think it functions in a top-to-bottom fashion.
    If anyone knows how to create the format above, I will be very greatful.
    First post in this threat:
    Can anyone tell me how can I display the last item added using CQWP and XSLT?
    The code below displays all titles. I don't know how can I get the last item. The xslt template below works like a repeater control.
    Any help will be very much appreciated.
         <xsl:template name="abc" match="Row[@Style='abc']" mode="itemstyle">
             <xsl:value-of select="@title"/>
         </xsl:template>
    thank you.

    Try this (you'll need to modify the widths according to your requirements, and sort you're list so that most recent items is returned first)
    <xsl:template name="TestCount" match="Row[@Style='TestCount']" mode="itemstyle">
    <xsl:variable name="DisplayTitle">
    <xsl:call-template name="OuterTemplate.GetTitle">
    <xsl:with-param name="Title" select="@Title"/>
    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
    </xsl:variable>
    <xsl:variable name="ItemNumber">
    <xsl:number></xsl:number>
    </xsl:variable>
    <xsl:choose>
    <xsl:when test="$ItemNumber = '1'">
    <div style="float:left;width:100px;margin:5px;display:block;">First Item: <xsl:value-of select="$ItemNumber"/> (<xsl:value-of select="$DisplayTitle"/>)</div>
    </xsl:when>
    <xsl:when test="$ItemNumber = '2'">
    <div style="float:left;width:100px;margin:5px;display:block;">Last Item: <xsl:value-of select="$ItemNumber"/> (<xsl:value-of select="$DisplayTitle"/>)</div>
    </xsl:when>
    <xsl:when test="$ItemNumber = $ItemCount">
    <div style="clear:both;float:left;width:100px;margin:5px;left:105px;display:block;">Last Item: <xsl:value-of select="$ItemNumber"/> (<xsl:value-of select="$DisplayTitle"/>)</div>
    </xsl:when>
    <xsl:otherwise>
    <div style="clear:both;float:left;width:100px;margin:5px;left:105px;display:block;">Item Number: <xsl:value-of select="$ItemNumber"/> (<xsl:value-of select="$DisplayTitle"/>)</div>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    Regards, Matthew
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.

  • The calendar sync is recently not working correctly, not display "All events" but it only displays the last six months for my individual entries. My repeating entires do go back further, though. How do I fix?

    I have an iPad 5.1.1. The calendar sync has started to not work correctly. I have it checked "All events," but it only displays the last two months for my individual entries. My repeating entires do go back further, though. How do I fix?

    HI Jason269. Thanks for your reply, however I wrote that I already have "All events" checked. If All Events is checked and it doesn't diaplay all events, how do I fix? It seems this is a common issue, as I have read many others on here state the same problem.
    I believe my problem occurred when I synced my iMac calendar to my iPad calendar using yahoo. Yesterday, I unsynced them on my iMac controls. When I checked my iPad calendar, all of my old entries reappeared - but only for five seconds and disappeared again. So, the data is saved and still there but cannot be displayed, even when I have All events checked. In fact, it only shows my individual entries for the last two months, but does show all my recurring entries. If I switched to last six months, I will see everything for the last six months. If I switch back to all events, it is only for the last two months.
    As I mentioned, others on here have expressed exactly the same issue, including the two month example and having used yahoo.
    For legal purposes, I need to be able to use the information from my indidual calendar entries in an upcoming court case. So I really need to fix this ASAP!

  • Chrome browser always comes up displaying the last web page I looked at.

    Just got a Samsung Galaxy S5. Tried out the Chrome browser, and then when I went back to it later it displayed the last website I was on. How can I make it come up with a blank screen (just an empty search box displaying). Thanks.

    Make sure that you either
    1: back out of chrome (not just hit the home button)
    2: close the chrome app in the task manager.
    That way your "home" page will open every time you open chrome, not just the last page you visited.

  • HT201365 Does find my phone have a history that shows where your phone has been like in the last 24-72 hours?

    Does find my phone have a history that shows where your phone has been like in the last 24-72 hours?

    All you may infer is the device hasn't been turned on where it can connect to Wi-Fi.
    The phone may be jailbroken if there is no lock passcode to prevent access. However, the phone can be completely erased and restored as new. In this case you will have no ability to locate it or prevent it from being jailbroken.
    What To Do If Your iDevice Is Lost Or Stolen
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. What to do if your iOS device is lost or stolen
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
      8. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • How to sort (to display the last comment) a comment in a web template

    Hi,
    I need your help regarding how to display the last comment of a report in a web template, comments managed via the content module com.sap.ip.bi.rig.DocumentContent.
    Summary of the customer need :
    the customer wants to manage comments for a report. The customer does not want to comment each line of a report but  comments in a report as a whole, we want to display the last comment (among all comments) in the web template.
    What I have done so far :
    I have implemented the paper "Maintaining and Printing Comment for Each Line in the Report" ( http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a046a839-f000-2d10-67af-b53d73894a75), and I have adjusted it to my needs : now I can enter several comments for a report, I can display them via the context menu.
    BW displays only one comment within a web template via Document Content moduleu201D (com.sap.ip.bi.rig.DocumentContent).
    The documents are created under KM, and I can saw them (as administrator) in the KM repository, under the folder /bw_document/InfoProviderData ... OK.
    What I can't get through :
    I want the web template to display the last comment (not the first)  but the web template stills display the first comment. We think it's a sorting issue or a display option (The web template always display the first comment created)
    We tried to maintain portal and KM customizing without success (in the portal System Admin -> System Config -> KM -> CM -> UI -> Settings -> Collection Renderer Setting for example). We think we can get through by java script coding in the web template, but we don't know how to do it. Maybe we have not reach the right option in KM customizing ?
    have you ideas to resolve this issue ?
    Thanks in advance,
    Laurent

    We have found a work around solution, by managing IP functions in the web template... to force BW to sort the items as we want.

  • Hello, I would like to unsubscribe from: Creative Cloud single-app membership for Photoshop (one-year). Creative Cloud single-app membership for Illustrator (one-year). Creative Cloud single-app membership for InDesign (one-year). On September 20, I bough

    Hello, I would like to unsubscribe from: Creative Cloud single-app membership for Photoshop (one-year). Creative Cloud single-app membership for Illustrator (one-year). Creative Cloud single-app membership for InDesign (one-year). On September 20, I bought a subscription to Creative Cloud membership (one-year) and paid 1500 rubles, but the same day I removed the money for Creative Cloud single-app membership for Photoshop (one-year), Creative Cloud single-app membership for Illustrator (one-year). I am very upset that I'm paying twice for one and same products, please recoup my losses and unsubscribe me from an early subscription. And why if I change a subscription, the old does not automatically stop working? Wait For Your Reply!

    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • LTE signal getting worse over the last 4-5 months in 84106

    I live in an area of Salt Lake City called Sugarhouse, and for the last 4-5 months it seems like the LTE service in this area has just gotten worse and worse. The area in particular is South of I-80 along Highland Drive.
    At first I thought that it was my phone (Droid Charge) so I went through troubleshooting at a store, which included resetting my phone to defaults and getting a replacement SIM card. Neither solved the problem, and I didn't think the final step of replacing the phone was necessary because the same phone gets full LTE signal at work downtown and in many other areas.
    Since then, I've purchased a Verizon iPad with LTE and have seen the same exact behavior on both devices. They will both drop to 3G in most areas of the house including outside in the open. The Droid Charge has also dropped to 1x a few times, but I don't think that's happened since the recent update. Sometimes the devices will bounce back and forth between LTE and 3G, which is bad because if I forget to put my phone on the charger overnight, or forget to set it to CDMA only, I'll wake up with a dead phone.
    Something else that I've noticed during the last month or so, is that when I do find a spot in my home that I can get 1-2 bars of LTE signal in, that particular spot is good for a limited amount of time. I've left my phone and iPad in a spot that has LTE signal, and anywhere between 10 minutes to 6 hours later the device will drop to 3G. Sometimes I'll be able to get LTE back if I move the device around a bit, sometimes it will stay on 3G despite repositioning.
    I'd be happy to offer up any additional information if needed. I'm desperate to get a good stable LTE signal! Thank you.

        Hello Meerkatderp! I'm sorry to learn of any issues you have encountered in the last few months! I appreciate all that you have tried in an attempt to get this resolved too. I'm happy to help you w/your 4G data connection! Because you gave such thorough information about the location in which you are having trouble, I was able to locate the area on our coverage map. This area is showing to be covered nicely with 4G service, with towers all along Highland and south of I80. I did check my resources to check and see if any trouble tickets have been made for the area, and I don't see a problem reported there.
    This doesn't mean I doubt you in the least! (I just want to make sure that is clear) But, what it does do is point my attention to your device. I'd like to ask you to try some troubleshooting steps with your phone. I have listed them for you.
    1) Press and hold the power button, turn on Airpland Mode, wait 15 seconds, then press and hold the power button again and turn off Airplane Mode.
    2) Please remove the battery and the SIM card from the phone for about 60 seconds, reattach, power on, and monitor.
    3) Complete a master reset on the phone, once you have backed up the information. Here are the steps:
    http://bit.ly/SjwrC2
    4) Here is an application that is recommended from the manufacturer of your device to help with this as well:
    http://bit.ly/Ov7Dq1
    Please let me know how these steps work out, so we can make sure you are able to enjoy the 4G network.
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • I would like to return back OS X Maverick from 1 month experience with OS X Yosemite ? Where i could find out link to download OS x Maverick?

    I would like to return back OS X Maverick from 1 month experience with OS X Yosemite ? Where i could find out link to download OS x Maverick?

    Battery – Runaway Applications Can Shorten Battery Time
    Battery Testing
    Battery Won’t Charge
    Battery won’t charge completely - Yosemite
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    Wi-Fi Problems in OS X Yosemite
    Wireless Diagnostics
    Also try turning off Bluetooth.

  • Function module to get the next new 12 months of a year

    Hi All,
    I have a requirement to get the next new 12 months of a year from the current month , i.e. if my current month is June 2009 , I need to get June 2009, July 2009,...................., May 2010 .
    Does anybody know if there is any function module for this or is there any logic to implement this .
    Please could someone help me out with this.
    Regards,
    Sushanth H.S.

    Dear Srinivas,
    Have a look at the below code. It works fine. Change according to your req.
    REPORT ztest_notepad.
    DATA:
          month_index TYPE i,
          wa_t015m    TYPE t015m,
          it_t015m    TYPE t015m OCCURS 0 WITH HEADER LINE.
    DATA:
          BEGIN OF it_next12 OCCURS 0,
            months_12 TYPE string,
          END OF it_next12.
    PARAMETERS:
          p_month TYPE num2,
          p_year  TYPE num4.
    START-OF-SELECTION.
      SELECT * FROM t015m INTO TABLE it_t015m WHERE spras = sy-langu.
      READ TABLE it_t015m INTO wa_t015m WITH KEY monum = p_month.
      IF sy-subrc = 0.
        month_index = sy-tabix.
        LOOP AT it_t015m INTO wa_t015m FROM month_index TO 12.
          CONCATENATE wa_t015m-monam p_year INTO it_next12-months_12 SEPARATED BY '-'.
          APPEND it_next12.
          CLEAR  it_next12.
        ENDLOOP.
        p_year = p_year + 1.
        LOOP AT it_t015m INTO wa_t015m FROM 1 TO month_index.
          CONCATENATE wa_t015m-monam p_year INTO it_next12-months_12 SEPARATED BY '-'.
          APPEND it_next12.
          CLEAR  it_next12.
        ENDLOOP.
      ENDIF.
      LOOP AT it_next12.
        WRITE:/ it_next12-months_12.
      ENDLOOP.
    Thanks
    Venkat

  • I would like to know if apple with make a new iPod touch this year??

    I would like to know if apple will make a new iPod touch this year!!

    So would we all. We'll just have to wait until such time as Apple makes an announcement.
    Regards.

Maybe you are looking for

  • Long time to load! help..

    Ive downloaded and installed itunes onto my pc.. and everytime i start it up it takes a very long time to load!,,,and i´m not getting any error messages,,, when it does come up, everything seems to work just fine... I have very few running process an

  • Not showing objects in left pane when expanding the nodes (V 1.5.1)

    Hi All, When expanding DB objects nodes (tables, procedures, packages etc), not showing objects in node. Can anyone know why it is so and what has to be done?

  • Save file on Flash Media Encoder Live 3

    Use the 'Save to file' for archiving my events...when I go to play back the archive.. flash players don't recognize the file it says FV4 format ...what is going on??

  • Boot camp displays "the installer disk could not be found"

    I have burned the Windows 8.1 .iso image 3 times and for some reason when I try to start the bootcamp utility I get the message "The installer disc could not be found"... I have the Win 8.1 Pro disk in my superdrive and nothing happens! Very frustrat

  • Unable to conect to apps

    unable to connect to apps although i am connected to wi fi get the message that error occured and failed to connect please try again later