Problem with subtotal and grand total using GROUP BY ROLLUP.

Hi all

I have a question about the SQL. I need to have the subtotal for each group and total for the entire inside of my request. I've had using GROUP BY ROLLUP to have total subtotal and big inside of my request.

However, it not successful I want. In addition, my data must be presented in the medium hierarchy. So, I also use CONNECT BY permission inside my request.

The query returned the results but not as my expected.

Below is all about the tools used, description of flows, issues, query used, sample data, out of the request as well as the expected results: -.

Tools used: -.

  • Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

Description of the flow: -.

Lily is an AM of agency which is the highest level of management (LEVEL 1). Kevin is the direct agent under the lilies and the sum of productivity(upstream)

for each of them must be sum up as the Subtotal. Sarah and Tom is the Unit Manager (UM) (LEVEL 2) who reports to Lily. They have the direct agents (Agent) under each of them which are may, John, Sue and Salwa (LEVEL 3).  There should be a Subtotal for each group of the agent. For example:-May (Agent) is the agent under Sarah (UM) and both of them have productivity and productivity should be sum up as a subtotal for the core group. A GRAND TOTAL is required to summarize all the productivity for each group.

Problem: -.

  1. The output of my query is appear the subtotal, but the amount is inaccurate because it only to summarize the productivity of agent. The output I expect is summarize the productivity of the agent as well as UNIFIED messaging / AM. For example:-(subtotal = UM / AM.) THE PRODUCTIVITY + AGENT. PRODUCTIVITY)
  2. The total general does not show after the query. The output that I expected is productivity for each groups as shown in the attachment below.                                                   For example:- GRAND TOTAL =(SUBTOTAL+SUBTOTAL+SUBTOTAL)
  3. My data must be submitted in respect of the hierarchy as below: -.

4. I need to pass the variable in the query and be used as a parameter in the ADF. Agent ID of Lily(AM) pass in the variable as a parameter.

Here's my query: -.

SELECT LPAD (' ', 4 *(LEVEL-1))

|| NAME FIRST_NAMEQ,

TOTAL_MANPOWER,

SUM_MTD_TOTAL_ANP UPSTREAM,

level,

A_AGENT_ID

Of

(SELECT B.SID,

A.UPLINE,

A.AGENT_ID AS A_AGENT_ID,

GROUPING (B.SID) agg_am_id,

GROUPING (A.AGENT_ID) agg_um_id,

GROUPING (A.Upline) agg_IM_id,

SUM (B.TOTAL_MANPOWER) TOTAL_MANPOWER,

SUM (B.MTD_TOTAL_ANP) SUM_MTD_TOTAL_ANP

OF ABM_AGENT_TEST,.

ABM_PRODUCTIVITY B

WHERE A.AGENT_ID = B.AGENT_ID

ROLLUP GROUP ((A.UPLINE), (A.AGENT_ID, B.SID)))

START WITH A_AGENT_ID =: HAS

CONNECT BY PRIOR A_AGENT_ID = UPSTREAM

ORDER OF FRIARS UPSTREAM;

Below is the query to create the table and also the data: -.

-TABLE ABM_AGENT_TEST-

CREATE TABLE 'ABM_AGENT_TEST '.

(NUMBER OF 'AGENT_ID',

VARCHAR2 (50 BYTE) "NAME."

VARCHAR2 (10 BYTE) "GRADE."

VARCHAR2 (20 BYTE) "UPSTREAM."

'REGION' VARCHAR2 (20 BYTE),

"BRANCH" VARCHAR2 (20 BYTE),

'THE AGENCY' VARCHAR2 (20 BYTE)

)

SAMPLE DATA FROM ABM_AGENT_TEST

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (116, "Lily", "AM", null, null, null, null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (102, 'Tom', 'MU', '116', null, null, null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (110, 'Sarah', 'MU', '116', null, null, null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (100, 'John', 'AGENT', '102', 'Central', 'PJ', 'CPA');

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (109, "Salwa", 'AGENT', '102', 'South', 'MLK', null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (101, 'Howard', 'AGENT', '102', 'North', "Damansara", "AP");

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (103, 'Mary', 'AGENT', '102', 'Central', 'PJ', 'CPA');

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (106, 'Ali', 'AGENT', '110', 'Central', 'JlnPd', null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (111, 'Sue', 'AGENT', '102', 'North', "Damansara", null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (112, "Carron', 'AGENT', '102', 'Central', 'HQ', null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (113, "Siti', 'AGENT', '102', 'Central', 'PJ', null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (114, "Siti FHIMA Dane forecastle', 'AGENT', '102', 'North',"Damansara", null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (105, 'Kathy', 'AGENT', '102', 'Central', 'JlnPd', 'LPK');

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (107, 'Roby', 'AGENT', '110', 'North', "IPH", null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (108, 'Tommy', 'AGENT', '110', 'South', 'MLK', null);

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (104, 'May', 'AGENT', '110', 'Central', 'HQ', 'CPA');

Insert into ABM_AGENT_TEST (AGENT_ID, NAME, GRADE, upstream, REGION, BRANCH, AGENCY) values (115, 'Kevin', 'AGENT', '116', 'North', "IPH", null);

-TABLE ABM_PRODUCTIVITY-

CREATE TABLE 'JEROMEWALTER '. "" ABM_PRODUCTIVITY ".

(NUMBER OF 'AGENT_ID',

NUMBER OF "TOTAL_MANPOWER."

NUMBER OF "MTD_TOTAL_ANP."

NUMBER OF "MTD_PRODUCTIVITY."

VARCHAR2 (20 CHAR) "YTD_TOTAL_ANP."

VARCHAR2 (20 CHAR) "YTD_PRODUCTIVITY."

"ROW_ID" VARCHAR2 (20 BYTE)

)

SAMPLE DATA FOR ABM_PRODUCTIVITY

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (104,1,85000, null, '40000', null, ' 6');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (102,1,35000, null, '33000', null, ' 7');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (110,1,25000, null, '25000', null, ' 8');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (116,1,22000, null, '34000', null, ' 10');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (109,1,75000, null, '80000', null, ' 2');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (111,1,25000, null, '25000', null, ' 3');

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (100,1,23000, null, ' 34500', null, "11");

Insert into ABM_PRODUCTIVITY (AGENT_ID, TOTAL_MANPOWER, MTD_TOTAL_ANP, MTD_PRODUCTIVITY, YTD_TOTAL_ANP, YTD_PRODUCTIVITY, ROW_ID) values (115,1,24000, null, '45000', null, ' 9');

The output after having received the request and not as my are expected as below: -.

The result I have espect is as below: -.

If all goes well, there is a way to solve my question.

Thank you all and have a nice day

Hello

I still don't know how you want to trunking.  You want someone who has a tank of 'AGENT' that lie with its parent in the hierarchy?

If Yes, you can do the update ROLLUP before you make the CONNECT BY query and claim that summaries are the children of one of the actual lines in the tree, like this:

WITH got_grp_id AS

(

SELECT b.SID, a.upline

TO_CHAR (a.agent_id) AS a_agent_id

CASE

WHEN a.agent_rank = "AGENT".

AND a.upline IS NOT NULL

THEN a.upline

Of OTHER TO_CHAR (a.agent_id)

END AS grp_id

p.total_manpower, p.mtd_total_anp

Of abm_agent_test one

abm_productivity p

WHERE a.agent_id = p.agent_id

)

got_aggregates AS

(

SELECT THE CHECK BOX

WHEN you GROUP (name) = 0

THEN the name

WHEN you GROUP (grp_id) = 0

THEN "SUBTOTAL".

ANOTHER "GRAND TOTAL".

END AS name_s

CASE

WHEN you GROUP (upstream) = 0

THEN upstream

WHEN you GROUP (grp_id) = 1

THEN TO_CHAR (: a).

Of OTHER LAST_VALUE (a_agent_id IGNORE NULLS)

COURSES (PARTITION BY grp_id

ORDER OF CASES

WHEN a_agent_id <> grp_id

THEN SUM (mtd_total_anp)

END NULLS FIRST

ROWS BETWEEN UNBOUNDED PRECEDING

AND UNBOUNDED FOLLOWING

)

END AS parent

a_agent_id, grp_id

SUM (total_manpower) AS sum_total_manpower

SUM (mtd_total_anp) AS sum_mtd_total_anp

Group of (name) AS g_name

GROUPING (grp_id) AS g_grp_id

OF got_grp_id

GROUP OF ROLLUP (grp_id

, (name, upstream, a_agent_id)

)

)

SELECT THE CHECK BOX

WHEN g_grp_id = 0

THEN LPAD (' ', 4 * (LEVEL - 1))

END | name_s AS first_nameq

sum_total_manpower

sum_mtd_total_anp

CASE

WHEN g_name = 0

THEN THE LEVEL

4 SOMETHING ELSE

END as lvl

a_agent_id

OF got_aggregates

START WITH a_agent_id = TO_CHAR (: a).

Parent = a_agent_id PRIOR CONNECTION

Brothers and SŒURS of ORDER BY sum_mtd_total_anp

;

Output:

SUM_

SUM_ MTD_ A_

TOTAL_ AGENT TOTAL

FIRST_NAMEQ MANPOWER _ANP LVL _ID

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

Lily 1 22000 1 116

Kevin 1 24000 2 115

PARTIAL TOTAL 2 46000 4

Sarah 1 25000 2 110

May 1 85000 3 104

PARTIAL TOTAL 2 110000 4

Tom 1 35000 2 102

John 1 23000 3 100

Sue 1 25000 3 111

Salwa 1 75000 3 109

PARTIAL TOTAL 4 158000 4

GRAND TOTAL 8 314000 4

I changed the column names.  (For example, there is a built-in function called RANK, so this isn't a column name good.  "It's confusing to use upstream to 2 unrealted stuff.)

I guess just what you want for the LVL column.

Why is agent_id a NUMBER, but upstream a VARCHAR2?  I expect to be of the same data type, so that upstream may be a foreign key referencing agent_id.

Tags: Database

Similar Questions

  • my iPhone 6s has problems with the GPS when I use some applications, it does not work well and give especially the bad road. Can someone help me?

    my iPhone 6s has problems with the GPS when I use some applications, it does not work well and give especially the bad road. Can someone help me?

    My iphone 6 has started having the same problem. Its literally the GPS. Saying that it does not find me at all. Ive seen say location for more than an hour in the suburbs of chicago. It started to happen to me after I downloaded the latest update for the iphone. I hope they react and let you know what is happening because I'm dying to know as well.

  • I can't see the pictures in my yahoo email, I did not have this problem with other browsers. I used the safe mode and still no success. Help, please.

    Question
    I can't see the pictures in my yahoo email, I did not have this problem with other browsers. I used the mode 5 firefox safe and always without success. Help, please

    To help other users find solutions, please come back to this Thread and connect you to the
    Forum with your user name and password:

    Click on 'resolved' beside the answer above that BETTER resolved your issue

    DO NOT CLICK on 'Solved It' next to this answer

  • Problems with clicking and scrolling when you are using the mouse in IE

    Separated from this thread.

    Original title:

    Problems with clicking and scrolling when you are using the mouse

    I have the same problem.  My touchscreen responds but my touchpad and mouse are unable to save a click in IE.  I need to reboot to rectify.  It seems to be more common when the laptop comes out of fashion 'sleep'.   I tried all the steps above, everything is up-to-date.

    Hello Fred,.

    Thanks for the reply.

    I appreciate your efforts to resolve the issue.

    I would suggest trying the following methods and check if it helps.

    Method 1:
    Run the hardware and devices Troubleshooter and check. Please follow these steps:

    a. press Windows + W keys, type Troubleshooting in the search box and press on Enter.
    b. click on 'show all' and then click 'hardware and devices'.
    c. click 'Next' and then follow the on-screen instructions.

    If this does not help, then use method 2.

    Method 2:
    Start your computer in safe mode and check the number.
    Refer to this article:
    Start settings for Windows (including safe mode)
    http://Windows.Microsoft.com/en-us/Windows-8/Windows-startup-settings-including-safe-mode

    I hope this information helps.

    Please let us know if you need more help.

    Thank you

  • Problem with remote access in a residential group

    Having a problem with desktop sharing remote within a group of home access.  I don't have problem of access to the desktop from the laptop, but for some reason I can't access the laptop from the desktop.  I tried everything I could think of.  Remote access is enabled on both PCs.  Help, please.  Thank you very much!

    Hello

     

    1. who is the operating system installed on the desktop and laptop computers?

    2. what happens when you try to access the laptop from the desktop? You receive an error message?

    3. What are troubleshooting you performed?

    I suggest you follow these methods and check.

    In a first step of troubleshooting, I suggest to run the troubleshooter to group on the source and the destination computer.

    Step 1: Open the troubleshooter group living

    If your computer has problems viewing computers or files shared in your collective housing, try to use the collective dwelling Troubleshooter to fix the problem

    http://Windows.Microsoft.com/en-us/Windows7/open-the-HomeGroup-Troubleshooter

    Step 2: Share files and folders on a group of houses in the laptop using the method proposed below. Try to access from desktop and check.

    a. right click on the item you want to share, and then click share with.

    b. Select Home Group (read/write)

    c. this option share point with your entire Home Group and allows them to open, edit, or delete.

    Share files with someone: http://Windows.Microsoft.com/en-us/Windows7/share-files-with-someone

    See also:

    Home Group: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/HomeGroup-frequently-asked-questions

     

    I hope this helps!

  • Printing problems with XP and Lexmark-documents are just stuck in the print queue

    Original title: printing problems with XP and Lexmark

    Until yesterday, I was able to print OK using Windows XP and a Lexmark Printer series 3500-4500 with wireless capabilities.  Reported network test wireless (on printer) and report indicates that there are no reported problem, also did the diagnostic test and which shows no problem either.  I can't print and documents are just stuck in the print queue - please can someone help, it drives me crazy because it's probably a very simple solution.

    I guess you do not have all of the error messages.

    It is possible that comes to mind that your printer has received a new IP address of your router (this could easily happen if you have several computers and other devices that connect to your wireless network).

    Find the IP address of the printer of his network diagnostic page.
    Click Start > printers and faxes, right-click the printer and select Properties
    Select the Ports tab, then click on the button "Configure Port" (be careful NOT to click anywhere in the list of ports)
    Make sure that the IP address in 'Port settings' is identical to that shown on the diagnosis of your network printer page.

    To avoid this problem in the future, you must configure the printer to have a static IP address.  See your printer User Guide for instructions.

    Choose an appropriate subnet address (i.e., has the first 3 groups of numbers the same as the other addresses in your network) but who is not in the range of addresses assigned by the DHCP server on your router.  See the User Guide of your router for more details.

  • curious problem with extrusion and rotation

    I found a curious problem with extrusion and turn into the CS6. It's not a bug, but it's a behavior that is less intuitive who is confused and sometimes painful. I think it is something that should go on the list of tasks for the devs. Someone else, right? Don't agree?

    Example:

    Rotate_issue.jpg

    I started with a path arrow, to which I applied the effect "extrude". I then put an icon on top of the arrow and grouped in the icon and the arrow. Now, I use this icon arrow in several different parts of my design, in different orientations. I flip the arrow, the relative position of the icon and the arrow seems to pass. I believe that this is happening because when you rotate the arrow icon, Illustrator rotates both the icon and the arrow on the center of the underside of the arrow. This is because the upper side of the arrow is essentially fictitious, just an artifact of the effect of extrusion. So, even if the icon appears as if it is drawn on the upper side of the arrow, it behaves as if it is attached to the underside of the arrow. When you apply a transformation, this transformation impacts on the underside of the arrow, causing the top of offset from the icon.

    The solution would be to add an extra box to the effect of extrusion, asking if you wanted to extrusion (the way things are currently done) upwards or downwards. If you can extrude downwards, then the upper side of the arrow would be the 'real' face, those affected by the changes. You can then put a picture on the top, the arrow and the image of the group, and when you apply a transformation, the icon would remain fixed relative to the top, which would be consistent with your intuitive expectations.

    If anyone is curious to experiment with this particular example, I posted this file in Google Docs here:

    https://docs.Google.com/file/d/0B0Hoxcl5zTEtTXo5QnNsMGwwOGc/edit?USP=sharing

    It's about what you just mount the image with a transformative effect to match the extrusion.

    So basically, you apply a 3-d rotation effect to your image to match the rotation of your arrow, then you apply a transformation movement in the vertical axis to match the height of your extrusion.

    hope this helps

    https://docs.Google.com/file/d/0B4ilRoSBagc3d2w2Ylc2cWxFVjA/edit

    If you want to get real on this issue retro we only corresponding to the rotation of the arrow in the center of the extrusion, if we wanted to distort the image perfectly, the rotation should be slightly higher, but anyway, it is hardly noticeable.

  • Problem with IMovie and Quick time

    Hey everybody,

    I am faced with an unexpected problem with Quicktime and I Movie, and I was wondering if someone had already known that:

    I want to create a film based on shots from my personal camera. I started to work with IMovie to create a sequence of opening and added his musical band. I exported the scenes in Quick Time format without any problem. However, when I merge the exported sequence of I film with shots of my video camera, the soundtrack is completely eliminated.

    I checked on the Internet and saw that there might be a problem of "Codecs". To avoid this, I exported the sequence IMovie with Codecs of same as one of my video camera files.

    Now, if I compare the files exported from I Movie and those of my video camera, they have identical characteristics. However, the soundtrack will always disappear when I merge them.

    Could someone please help me solve this problem?

    Thank you very much in advance.

    Concerning

    Could someone please help me solve this problem?

    Not only based on what you already said.

    I want to create a film based on shots from my personal camera. I started to work with IMovie to create a sequence of opening and added his musical band. I exported the scenes in Quick Time format without any problem. However, when I merge the exported sequence of I film with shots of my video camera, the soundtrack is completely eliminated.

    How would you"merge" files? (I.e. a "QuickTime" format is any form of data compatible with the platform of supply and the specific structure of QT incorporated into real employment that is stored in a container of MOV file on any of up to 99 tracks possible). Also, what app do you use for reading the file 'merged '? (For example, some media players ignore secondary audio tracks as a result of some methods of 'fusion' of files so it is important to know how the files are "merged," whether or not the audio data are "scattered" several tracks, and/or if the Media Player supports playback of multiple, sequential audio popular.)

    I checked on the Internet and saw that there might be a problem of "Codecs". To avoid this, I exported the sequence IMovie with Codecs of same as one of my video camera files.

    The specific codecs and settings using the specific version of iMovie? (The current Mac OS X operating systems have two X QT and 'classic' Qt integrated structure so it is important to know what structure is used here and how).

    Now, if I compare the files exported from I Movie and those of my video camera, they have identical characteristics. However, the soundtrack will always disappear when I merge them.

    As a general rule, you should review the file "merged" to determine why it does not play back correctly rather than comparing the characteristics of the source being merged files. The main problem here seems to be in your project workflow. That is, you seem to be when you perform an operation in two steps rather than edit several iMove multimedia files and then export the combined results in a video the video and audio tracks have been flattened and exported in standard compression formats with unified settings, features and the.

  • problem with java and pogo games

    I use mozilla, and now with the problems with java and hackers cannot play my pogo, what can I do? I disabled my java I tried java 6 does not work or is not safe, what is a safe way to play games on pogo using java?

    Pogo.com is determined as a website SAFE to use Java with Mozilla Firefox?

  • I'm having a lot of problems with firefox and cannot figure out how to get help. It all started when I updated to 13. I get all kinds of advertising popups, I can't play a

    I'm having a lot of problems with firefox and cannot figure out how to get help. It all started when I updated to 13. I get all kinds of advertising popups, I can't play a game on FaceBook called Farm Town at all, and I get a popup of AVG on the cookies that I can't get rid of. These issues are causing me to use Chrome quite often, although I like Fox better. I've searched and searched how to get help and find nothing. How can I get personalized technical help? These problems will not occur in Chrome at all. Thank you.

    Do a check with some malware malware, analysis of programs on the Windows computer.

    You need to scan with all programs, because each program detects a different malicious program.

    Make sure that you update each program to get the latest version of their databases before scanning.

    Alternatively, you can write a check for an infection rootkit TDSSKiller.

    See also:

  • Pavilion Notebook PC 15-079er: problems with sleep and shutdown 15-n079er HP Pavilion Notebook PC.

    Hello world

    I have a huge problem with my Pavilion. I used Windows 8.1 earlier, and I decided to upgrade to Windows 10. I did not like something (can't remember what) and decided to return to Windows 8.1. Almost a year passed, I am again on Windows 10. But if I SLEEP my computer:

    • Screen goes black, everything seems normal.
    • No matter how long wait, fan keeps spinning and power LED, LED Wi - Fi on.
    • Keyboard input does not help. Does not meet what it is.
    • The only thing left to do - stop hard.

    And if I shut down the operating system:

    • Windows normally stops, close all applications, screen goes black.
    • Fan on, led on.

    I did not notice these problems with restarting and the hibernation.

    Two things I've done in this gap of the year:

    • Replacement screen. An old broke. Thanks to my cat...
    • Formatted the drive. I don't think it would do anything diffirent.

    So, any help would be appreciated.

    Thanks in advance,

    Kebab

    Hello

    On some machines, the pilot for 11 series IMEI has been known to cause that kind of question of the judgment, so it may be worth trying an earlier version.

    You can use the following method to install an earlier version of the driver IMEI.

    Download driver IMEI on the link below and save it in your downloads folder.

    http://ftp.HP.com/pub/SoftPaq/sp66001-66500/sp66228.exe

    Disable your wireless card (should be f12 ).

    Open your download folder and run the installer - it warns you that it is an earlier version, but simply continue.

    When finished, restart the laptop.

    If the computer shuts down correctly, turn on your wireless adapter and use the utility on the following link to prevent Windows 10 to update automatically the driver IMEI again.

    https://support.Microsoft.com/en-GB/KB/3073930

    Kind regards

    DP - K

  • Compatibility problem with Vista and iTunes

    I downloaded iTunes 9 on my Tobisha laptop Satellite last night and put about 2.5 GB of music on it. I didn't upload the music from the internet. I used MP3s, I had for a few years.

    When I went to boot up the laptop this morning the loading process took some time, but it never loaded to the login screen. I just see the bottom of MicroSoft. Is there a compatibility problem with Vista and iTunes? Maybe I put too much music on my laptop?

    Boot in safe mode and delete iTunes and all the music I downloaded would solve the problem? Or it is less simple than that?

    Don't know where to direct this question if any help you could provide would be greatly appreciated.

    Thank you.

    Hello

    iTunes is compatible with Vista and there should not be any problem.
    Yesterday, I installed iTunes 9 on my U400 and everything happened correctly.
    If your laptop can not boot Vista correctly, then you should try the repair feature.

    Turn on the computer and press F8. Now you will see the advanced boot menu.
    Now, you have many choices.

    As a first step, you should try the option called: last good known Configuration (Advanced)

    If this will not help and the Vista will not start then try the option called repair your computer. This option displays a list of system recovery tools, you can use to repair startup problems, run diagnostics, or restore your system.

    If that does not help, then you will need to retrieve the unit using the Toshiba recovery disc or HARD drive recovery.

  • problems with Vista and msn

    my laptop had vista business on it originally, it crashed a year ago and the store put windows 7 Home Edition premium on it, last week I had to have my hard drive changed due to problems with it and computer scientist put my vista business back on it, I thought I was brilliant as always I like vista , the problem is now I can not MSN up on it it keeps saying IE he blocked, IE 9 will not download, I play Facebook games and many of them won't load properly, tried to install service pack 2 for vista and it goes on to say that I have to install service pack 1 in the first place , its already there and updated pack 2 but still will not download. Someone at - it answers or useful tips or advice they can give me to have an entirely new work laptop

    Yes 100% positive sp 1 is installed and updated, already tried all the links you have kindly posted, was trying to do it for 12 hrs before I posted this question, I have 64 bit but that he already knew who didn't need the computor to tell me, I finally returned to the it guy and he discovered that the lap top returned to the original IE 7 when the hard drive has changed it dosent msn so therefore all the problems, he finally put IE 9 for me and the two vista service packs and support now msn works finally done my f/b, so Happy Days

  • problems with vista and microsoft set 32-bit or 64-bit.

    try to solve the problems with vista and microsoft fix it.  This error code 0 x 800400154 came up saying that they finish their using 32 bit and I have a 64 bit what they say.

    What version of the operating system Windows am I running?

    Windows 32-bit or 64-bit

    What Microsoft FixIt you try to run?  (There are MANY of them - they are simply the written scripts that do the manual steps in the KB article for you).

  • BlackBerry Z10 Z10, problem with Gmail and BIS

    I just got a new Z10 and had all configured to discover that my primary e-mail service, Gmail, does not work if the only internet access is through the Blackberry Internet Service (BIS).

    When I configured first, I got Wi - Fi active (other than BIS, I don't have a data plan as my main focus is email). As it was my 3 services e-mail (Gmail, Hotmail and my prived ISP service) all the connected without problem. It was only after I turned off WiFi that I discovered that while my other two services work fine, my Gmail account has become "not connected".

    I tried everything I could think of, including delete my Gmail account, do a reboot cold and then try setting up the account to new as well as doing a reset complete, I could start over again. All to nothing does not. Only if the WiFi is on what can I cannect to Gmail and that doesn't help me if I don't have a Wi - Fi service.

    Does anyone have any suggestions as to what I might try?

    BasinGroup wrote:
    Two problems with your comment about BB10 supporting not BIS: 1), a BB subscription service would be nuts not to provide support and 2) my 2 other E-mail accounts work fine with BIS.

    You may be right about Gmail not supporting ActiveSync, but on the device the Z10 was supposed to replace (Torch 9860 running os 7.1.0) no problem with Gmail and BIS, so there must be something unique about BB10 on the Z10.

    BIS is not used on BB10. BB10 access directly servers of e-mail now.

    Have you tried to configure gmail so that the signal from the carrier and not on wifi?

    In Gmail, you enable IMAP access and not use two-factor auth

Maybe you are looking for