get the error Y child member without parent (3331)

After updating a cube ASO I get error "child member there without parent (3331). Can someone help me.

thanx
GYAN

It can be space or a special character after the Member or an alias name. Remove it and build the hierarchy again it should solve this problem.

Thank you

Tags: Business Intelligence

Similar Questions

  • I tried to install Windows Vista SP1 since July without success. I stopped trying in October but just tried it once more and I get the error code 8024200d message when it fails to install.

    I tried to install Windows Vista SP1 since July without success. I stopped trying in October but just tried it once more and I get the error code 8024200d message when it fails to install.

    See this previous thread on the problem: http://www.google.com/search?hl=en&safe=off&rls=com.microsoft: en - US & q = + site: social.technet.microsoft.com + 8024200d & ei = hkchS4O6M9HolAfh8viLCg & a = X & oi = forum_cluster & resnum = 1 & ct = more results, & ved = 0CA0QrQIwAA

    Unlimited installation and compatibility for Vista SP1 support is available free of charge from April 2008, through June 30, 2009.  This support now will cost $59 us $ (or more) per incident.

    Good luck!

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • After you download CC Office at the beginning of the installation, I get the error 049. It was the 9th try to install for 1 week - with and without administrative rights.

    After you download CC Office at the beginning of the installation, I get the error 049. It was the 9th try to install for 1 week - with and without administrative rights.

    Hello

    Please see error download or update Adobe Creative Cloud applications

    Hope that helps!

    Kind regards

    Sheena

  • Get the error 148: opening of any application.  Restart without help

    Get the error 148: opening of any application.  Restart without help

    Hello

    Please visit:- https://helpx.adobe.com/creative-suite/kb/error-licensing-stopped-windows.html

    I hope this helps.

    Kind regards

    Vivet

  • Get the sum of all Member of a hierarchy.

    Hello
    I want to get the sum of each Member in a hierarchy.
    The hierarchy is defined in the strdet table:
    create table strdet
    (costcenterms varchar2(20),     // parent
    costcenterdet varchar2(20),    // child
    lev varchar2(1))
    The values for each object/material by costcenter (child) is defined in the details_det table:
    create table details_det
    (costcenterms varchar2(20),
    eppid varchar2(30) ,
    purchcontyear0 number(4,1) )
    Some examples of data:
    insert into strdet values ('1' , '1.1','2')
    /
    insert into strdet values ('1' , '1.2','2')
    /
    insert into strdet values ('1.1' , '1.1.1','3')
    /
    insert into strdet values ('1.1' , '1.1.2','3')
    /
    insert into strdet values ('1.2' , '1.2.1','3')
    /
    insert into strdet values ('1.2' , '1.2.2','3')
    /
    insert into strdet values ('1.2' , '1.2.3','3')
    /
    insert into strdet values ('1.1.1' , '1.1.1.1','4')
    /
    insert into strdet values ('1.1.1' , '1.1.1.2','4')
    /
    insert into strdet values ('1.1.2' , '1.1.2.1','4')
    /
    insert into strdet values ('1.2.1' , '1.2.1.1','4')
    /
    insert into strdet values ('1.2.1' , '1.2.1.2','4')
    /
    COMMIT;
    insert into details_det values('1.1.1.1','epp1',10);
    insert into details_det values('1.1.1.1','epp2',20);
    insert into details_det values('1.1.1.1','epp3',0);
    insert into details_det values('1.1.1.2','epp1',0);
    insert into details_det values('1.1.2.1','epp2',5);
    insert into details_det values('1.1.2.1','epp4',15);
    insert into details_det values('1.2.1.1','epp1',65);
    insert into details_det values('1.2.1.1','epp2',95);
    insert into details_det values('1.2.1.2','epp1',5);
    commit;
    The desired sql stmt output should be like this:
    costcenter             val
    --------------             ------
    1                        220
    1.1                       55
    1.2                     165
    1.1.1                    30
    1.1.2                    20
    1.2.1                  165
    I wrote the following, so far...
    SQL> select distinct s.costcenterms , sum(purchcontyear0) over(partition by s.costcenterms order by s.costcenterms)
      2        from details_det d , strdet s
      3        where s.costcenterdet=d.costcenterms(+)
      4        start with s.costcenterms='1'
      5             connect by  s.costcenterms = prior s.costcenterdet
      6        order by s.costcenterms
      7  /

    COSTCENTERMS                                                 SUM(PURCHCONTYEAR0)OVER(PARTIT
    ------------------------------------------------------------ ------------------------------
    1.2                                                         
    1.2.1                                                                                   165
    1.1.1                                                                                    30
    1.1.2                                                                                    20
    1                                                           
    1.1                                                         

    6 rows selected
    How should I modify the above sql stmt to get the result you want...?

    Note: I use OracleDB 10 g. v.2

    Thank you very much
    SIM

    sgalaxy wrote:
    Anyway, since I want to use the sql stmt to define a materialized view, all versions of data of hierarchical queries are not allowed... (oracle ora-30361 error...).

    No error on my:

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    
    SQL> create materialized view x_mv
      2  as
      3  select  grp,
      4          sum(purchcontyear0)
      5    from  (
      6           select  connect_by_root s.costcenterms grp,
      7                   d.purchcontyear0
      8             from  strdet s,
      9                   details_det d
     10                   where s.costcenterdet=d.costcenterms(+)
     11                   connect by s.costcenterms = prior s.costcenterdet
     12          )
     13    group by grp
     14  /
    
    Materialized view created.
    
    SQL> select  *
      2    from  x_mv
      3    order by grp
      4  /
    
    GRP                  SUM(PURCHCONTYEAR0)
    -------------------- -------------------
    1                                    215
    1.1                                   50
    1.1.1                                 30
    1.1.2                                 20
    1.2                                  165
    1.2.1                                165
    
    6 rows selected.
    
    SQL> 
    

    SY.

  • Whenever I try to send mails via Gmail (even in Safe Mode), I get the error message "your action failed. Please try again ".

    Everytime I try sending mail through Gmail FF 18.1, I constantly get the error message "you action failed. Please try again ". I have to use the HTML view in Gmail that I really hate. I tried the Mode without failure of Firefox as well but not good. Please fix this for me.

    This can be caused by corrupted cookies or cookies that are not sent or otherwise blocked.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    If clearing cookies doesn't work, then it is possible that the cookies.sqlite file that stores the cookies is corrupted.

    Rename (or delete) cookies.sqlite (cookies.sqlite.old) and delete other files to present as cookie cookies.sqlite - journal in the profile folder of Firefox in the case where the cookies.sqlite file has been corrupted.

  • I deleted by mistake my certificates. Now, I get the error messages trying to connect to gMail, eBay and my bank accounts, etc.

    I recently did some "housekeeping" on my computer and for reasons known only to nini-gods, I delected all my security certificates. Now, when I try to log in to gmail, ebay, my bank accounts or any https:// site, I get a warning message "this connection is Untrusted." I click on the links provided to overcome the safety message, but whenever I return to the site I have to jump through all the hoops again. I see a small box that can be clicked to confirm security exception, but the little box that must be clicked to "make the permanent exception" is always grayed out. I know I'm on the right sites - have been using the links on the personal bar for years without problems. It started right after I deleted the certificates.

    I've tried everything. Firefox RELOADED (use 3.6.4) deleted and reloaded the bookmarks, follow the instructions when I get the error message. Nothing works. As soon as I close the browser, and then go back online, I'm back to error messages.

    Can anyone help?

    COR - el: thanks a lot for this solution. Everything works fine now.

    However, I had a problem with deleting the files. I dragged to the trash, and then tried to access the sites in question and received the same message. I restarted the computer and when I checked the files I was dragged to the trash were right where they were before. The only file that are been trashed was the .txt file.

    So I renamed them as you suggested and now everything works fine.

    Thank you again once - I tried to understand by using the troubleshooting Firefox site, but your explanation was simple and easy to follow.

    Val

  • Trying to submit a new podcast, I get the error "unable to analyze your diet." What does that mean?

    Trying to submit a new podcast, I get the error "unable to analyze your diet." What does that mean?

    There is nothing else with the error (I see references to problems with the exact lines of the RSS, but I don't get everything).  RSS feed works fine in a different podcast player.

    Here's the .xml file:

    http://www.iTunes.com/DTDs/Podcast-1.0.DTD"version ="2.0">

    Podcast of Mo

    http://psychicreform.com/mosports/

    http://psychicreform.com/mosports/mosports.xml"rel ="self"type =" application/rss + xml"/ >

    en - us

    ℗ & © 2016 MB Podcast

    Sport sports sportsman with the sportster sport doctor David Overbey

    Dr. David Overbey and Alan Miller

    Sports news weekly and reviews by a true fanatic with a souvenir terrifying sports Trivia.  Recorded without notes or internet for Dr Overey.  Seriously, no notes.

    This podcast addresses all kinds of sports, but especially of college sports with a focus on the United Kingdom and uofl's of baseball and basketball, Arizona Cardinals football and baseball for the St. Louis Cardinals.  Did I mention Mr. Overbey do not use notes or have a computer to access the internet?

    Podcast with Dr. David Overbey MB

    [email protected]

    http://psychicreform.com/mosports/160212-mosports_dave_itunes.jpg"/ >

    Yes

    MO Episode 6

    Podcast of Mo

    Podcast of MB 6 2/8/2016

    Dave fights on the screwing of the superbowl so exactly opposite prediction, more info on the uofl's basketball situation and tries to project a future for UK it is possible but unlikely.

    http://psychicreform.com/mosports/160208-006-MoSports.MP3' length = "4540370" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/160208-006-MoSports.MP3

    Saturday, January 9, 2016 17:00:01 CEST

    01:07:10

    Super Bowl, sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    MO Episode 5

    Podcast of Mo

    Podcast of MB 5 5 2, 2016

    Dave establishes a uofl's rant for ages, UK is just not very good this year, and he predicted that the Panthers will win by 14.

    http://psychicreform.com/mosports/160205-005-MoSports.MP3' length = "32525946" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/160205-005-MoSports.MP3

    Saturday, February 6, 2016 17:00:01 CEST

    00:34:45

    Super Bowl, sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    MO Episode 4

    Podcast of Mo

    Podcast of MB 4 1/12 / 2016

    Dave speaks of the NFL and NCAA playoffs.

    http://psychicreform.com/mosports/160112-004-MoSports.MP3' length = "57652357" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/160112-004-MoSports.MP3

    Wednesday, January 13, 2016 17:00:01 CEST

    01:05:39

    NFL, sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    MO Episode 3

    Podcast of Mo

    Podcast of MB 3 1/4/2016

    Dave expects the United Kingdom including future lsu and alabama at clemson in hand picking the past.

    http://psychicreform.com/mosports/160104-003-MoSports.MP3' length = "46250012" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/160104-003-MoSports.MP3

    Sunday, January 10, 2016 17:00:01 CEST

    01:01:15

    Sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    MO Episode 2

    Podcast of Mo

    Mo 2 Podcast 12/30/2015

    Dave has predicted the future in hand picking the past.

    http://psychicreform.com/mosports/151230-002-MOSports.MP3' length = "62485146" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/151230-002-MOSports.MP3

    Sunday, January 10, 2016 17:00:01 CEST

    01:22:17

    Sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    MO Episode 1

    Podcast of Mo

    Mo 1 Podcast 12/25/2015 the Inaugural episode

    Dave and Alan are joined by the brother of Alan David talk UK v. uofl's and a few other sports.

    http://psychicreform.com/mosports/151225-001-MOSports.MP3' length = "35638537" type = "audio/mpeg" / >

    http://psychicreform.com/mosports/151225-001-MOSports.MP3

    Wednesday, December 30, 2015 17:00:01 CEST

    00:40:45

    Sports, United Kingdom, University of kentucky, kentucky, University of louisville, u of l Cardinals, nfl, nba, mlb, basketball, football, baseball

    Please always post the URL of your feed, not its content. I'm assuming that your workflow is the one mentioned in the tag "atom: link".

    http://psychicreform.com/mosports/mosports.XML

    Feed validators are complaining that this line contains a prefix of "independent". I think it's probably because in the second line, "rss.xlmns" it does not mention "atom", only "itunes" - the URL in this line indicates the feed reader RSS how to interpret the tags for this application. Without link for 'atom', the tag is meaningless to readers, and it is marked as an XML error, which is enough to cause the feed unreadable. There is no need to have this line (Atom is a very old RSS reader which I doubt anyone uses now) and you'd better remove that line altogether, either that or somehow insert the URL of the atom, which seems to be "xmlns:atom ="http://www.w3.org/2005/Atom"" so that the second line would read as follows: "

    http://www.iTunes.com/DTDs/Podcast-1.0.DTD"xmlns:atom ="http://www.w3.org/2005/Atom"version ="2.0">"

    You will need to take one or the other or the feed will continue to be unreadable.

  • Printer does not work on the Windows XP computer, get the error message like "an error occurred during port configuration. This operation is not supported.

    Original title: 1. printer stopped communicating with the computer. 2 port - associated configuration error?

    I have a big problem. All of a sudden my printer - AIO Photo964 said he cannot communicate with my computer. The printer works fine. I tried switching cables USB, all the trouble shooting suggestions, etc. etc. Nothing works and it makes no sense. I can't print anything. I thought it would be that I installed a Seagate external hard drive backup, then I uninstalled the program - no help. ITunes installed recently, because she had changed the printer default, changed back - no help. The USB cable is not tight in the printer (or both cables, I tried), but AFAIK it's not new (?) And when I try to configure the port, I get the error message "an error occurred during port configuration. This operation is not supported"I have no idea what it means.  Can someone help me with this? I have to return a new printer? The USB port on the printer is repairable if this is the problem? How will I know? Who would do that?

    Thanks, I'd appreciate any help.

    It is always useful to have the complete error message without paraphrase.

    It also helps to identify the version of Windows you have, including service pack.

    And it helps to give the manufacturer of the printer in addition to the model.  In your case, I guess you have a Dell printer.  I know that some Dell printers are rebadged Lexmarks, but I don't know if it's a.

    Why you try to configure the USB port?  It cannot be configured - you've discovered.  It's normal.

    It's quite strange that an iTunes installation would have had something to do with the printers.  What printer was made by default after installing iTunes?

    You say you have tried another USB cable.  Have you tried using a different USB port on the computer? Have you checked in the Device Manager (start > run > devmgmt.msc > OK) to see if there is all the warning icons in the category "controllers of Bus USB?

    I suggest you uninstall the printer software and driver completely and reinstall by following the directions in Its first Article.

    Don't skip step 4.  After step 4 and step 5, follow these steps:

    Important: If you have a Lexmark printer, skip the following

    Open a command prompt window (start > run > cmd > OK)
    type the following in the black command prompt window, and then press ENTER after each line

    net stop spooler
    dependent on the spooler of sc config = RPCSS
    net start spooler
    output

    Note that there is no space before the = and there is a space after it.

    The Windows XP driver for the Dell Photo AIO 964 printer is here--> http://www.dell.com/support/drivers/us/en/04/DriverDetails/DriverFileFormats/Product/dell-964?DriverId=R113115&FileId=2731111743&urlProductCode=False

  • I get the error code 0x800706BE when trying to update to service pack 3 installation did not finish. and I don't have the installation CD

    I get the error code0x800706BE when trying to modernize the service pack 3 installation did not finish. and I do not have the original installation disc

    Go here and download the complete file of the OFFXPSP3 edition: http://www.microsoft.com/en-us/download/details.aspx?id=23334

    This page scroll down and read this paragraph: to install SP3 without the original Office XP CD

  • No sound - get the error no active mixer device or no audio device installed

    Original title: downloads for devices sound cards/audio/active mixers
    Hello, I got my laptop crash currently and when I came back, I have no sound except for the beeps. I can't hear CDs or audio files on different Web sites. I can livestream and see a video, but not hear. I plugged headphones and have the same results. I get the error codes are no active mixer device and there may be no audio device installed. I have a windows xp operating system. I don't know where to go to start a download for sound cards.
    Thank you.

    Miloz

    We can try to install the drivers manually. It seems that every time that your device has crashed, someone reloaded Windows without having to install the device drivers.

    Let's start by trying to install the audio driver first. This one we might have to do it manually, but the others should be automatic. This gives a test:
    1. go to: http://downloads.sourceforge.net/sevenzip/7z465.exe and download the 7zip archive manager
    2 download, register, and install the utility on your computer
    3. once the utility installed, go ahead and re - download the audio driver package
    4. save the package on your desktop (or somewhere easy to access)
    5. once the package downloaded, find him, do a right click and choose "extract here...". "or something similar in nature. Basically we will extract the contents of the package and install it manually
    6. once the content is extracted, click START
    7. in the menu START, right-click on "Computer" and choose "Properties".
    8. in the upper left corner, click on Device Manager.
    9. find your Multimedia Audio Controller, right click and select 'Update Driver'... »
    10. click on "Browse my computer for driver software".
    11. click on the button 'Browse' at the top
    12. place where are the files extracted from this driver package
    13. Browse in the folder extracted and select the listed file. If there are several of those who choose an and and if it's just, the Setup will continue. If this is not the case, the installation program displays and error and then you just go back and try the alternate
    14. from there, the installer should walk you on the rest of the steps to manually install the driver package
    As far as your other drivers go, I would recommend going to the bridge site and looking for a driver of Modem for your computer model. The audio driver should be supported at this stage, and the Ethernet driver can be a joint wireless adapter you have. You may need to find a driver for it on the site of the gateway, OR if you bought the adapter you need to go to the device manufacturer's Web site and get you a driver there.
    Let us know what happens
    Thank you!

    Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • As that I start my computer I get the error message "Rundll: error loading C:\windows\idoroyuyevev.dll the specified module could not be found." How should I do?

    Original title: Rundll error help

    As that I start my computer I get the error message "Rundll: error loading C:\windows\idoroyuyevev.dll the specified module could not be found." -What it means and how to fix it?

    It is sometimes easy to get rid of the error message by doing something like disable the startup item in msconfig (if you can still find), but I suggest you fix the problem and difficulty not only the symptom of the problem by simply deleting the startup message.
    I would also not recommend you start digging in the registry to try to find the startup item and remove it unless you have a backup of your system or at least a backup of your registry, because there is no 'Cancel' or 'quit without saving changes' option in regedit.  If you make a mistake, that's all.
    These ideas relieve 'rapid' and sometimes risky of the symptom if they not even work at all, but they can't actually solve the problem.  Also, I'd be suspicious of ideas that begin with the words "try."  You don't need to try things, you need to fix things.  You don't need to try ideas that might work, you must do something that will always work all the time.
    Here are the detailed instructions that protect you and solve your problem in the 'right' way.
    There is very little. DLL files that should be loaded from the C:\WINDOWS folder and is not one of them.  If you do not have a good explanation for the name of the file in a Google search, the chances are good that your system is currently or has been infected by malware.
    A "Cannot find...". ', ' Failed to start..., "Could not load..." ». "Might not work... "" Cannot run ""error loading... ". "or"specific module could not be found"message at startup is usually related to the malware that has been configured to run at startup, but the referenced file has been removed after a malware scan, leaving behind him a startup item or the registry entry pointing to a file that does not exist.
    It might be a removal of malicious software or an application not installed.  The entry may have a curious looking name since it was probably generated at random when the malware was installed. If you search your system for the referenced file, you may not find.
    Windows attempts to load this file but cannot locate because the file has been deleted for most probably during an analysis of the malware. However, an orphaned associate of remainders of startup parameter or registry entry and tells Windows to load the file when you start or connection.
    So you should delete the referenced entry Windows stop trying to load or run the file. It may or may not be included in the registry, but you can find it.  Autoruns (see below) you get the elements no matter where it is.

    You must be sure to solve the problem and not just fix the symptom of the problem by simply relieving your message - system is not a fix (there is a difference).

    If you just locate and uncheck the item in msconfig, which disables the element but does not remove the reference to the element of false starting your computer.   The msconfig program is not a Startup Manager, that's a troubleshooting tool.  Disabling things in msconfig to put an end to the messages and think that your problem is solved is short-sighted and leave behind him a sloppy XP configuration.  Just disable the display of a start-up error message should not count as a 'solution' to the problem.
    If you are comfortable editing the registry, you can find and remove the reference directly from there or remove it using a popular third-party tool called Autoruns.  The problem can always be found in the registry well.
    Before making any changes to your registry by hand or with third-party tools, don't forget to first make a backup of the registry
    . There is no cancellation or exit without saving the option in regedit.
    Here is a link to a popular registry backup tool:
    You can also use the Autoruns to find the element of start remains little matter where he's hiding.  Autoruns does not install anything on your computer.  It will display all startup locations where the reference may be then you can turn it off or remove it completely.  Here is the download link for Autoruns:
    Run Autoruns.exe and wait that he at the end of the filling of the list of entries.
    When the Autoruns is finished scanning your system, it will say "Ready" in the lower left corner.  Autoruns can be a little intimidating to first if you have never seen it before because it displays a lot of information.  You are really interested only a few sections.
    The problem is usually to start the system or the user startup entries, then click the connection tab and see if the startup item is there.
    Scroll through the list and look for a boot entry associated files in the error message.
    If you can't find on the connection tab, look in any tab.
    You can also click file, search to search for logon, or any tab for all or part of the name of the element.
    Right-click on the offending entry and choose Remove.  If you are not sure what it is, you can just turn it off, restart and if the problem is resolved and things are functioning normally and everything works fine, then remove the offending entry.  If you don't see it in Autoruns, you may edit the registry and remove the item from your startup folder it.  Autoruns shall display the same information however.
    Given that your system has or has had an infection, follow up with this:
    Perform scans for malware, and then fix any problems:
    Download, install, update and do a full scan with these free malware detection programs at:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    They can be uninstalled later if you wish.
    Restart your computer and solve the outstanding issues.
  • I want to add a printer, but get the error message "print spooler service does not work."

    I can't print from my computer.  This has happened with no other visible defects on the computer or the printer.

    When I use the printer in case of problem, and hit the 'add printer' link, I get the error message "print spooler service is not."

    "I did a search on"print spooler"but got no result

    Duane

    Often, but not always, the symptoms you describe are caused by a corrupt print job stuck in the queue or a damaged printer driver.  However before you clean things up, on general principles, that you can download, install, update and run full scans with each of these two free programs:

    AntiMailware MalwareBytes
    SUPERAntiSpyware

    Do not operate the two scans simultaneously.  Each will take a long time, so start it and then go do something else for a while.

    Cleaning of printers

    NOTE: If after completing step has the print spooler is not always running after you launched the command "net start spooler", you will not be able to follow all the steps in "First Article".  Instead, go to the other link and download and get and use the utility 'cleanspl' such as described here.

    If the suggestions below do not resolve your problem, after back and don't forget to include the following information:

    • The version of Windows you have, including service pack (start > run > winver > OK)
    • The brand and model of printer you have (includes the manufacturer, model and model number, as in HP Deskjet 6800)
    • How the printer is connected to the computer (parallel, USB, network, wireless, etc.).
    • It happened just before this symptom started
    • What application antivirus you have and if your subscription is up to date and has been maintained continuously
    • The full text of the error messages related to printing, without paraphrasing


    A. Clean on print jobs pending

    • Open a command prompt window (start > run > cmd > OK)
    • Type the following in the black command prompt window, and then press ENTER after each line

    net stop spooler
    del/q '% windir%\system32\spool\PRINTERS\*.* '.
    net start spooler
    output

    B. clean the old printer drivers and install the latest drivers by using the directions in One Article.  If you have (or had) a Lexmark printer, follow the instructions on the following site before installing the new drivers, as explained in its first Article: http://members.shaw.ca/bsanders/CleanPrinterDrivers.htm

  • I get the error message "HTTP not found" and "SMTP." not found What is this and how can I fix it please?

    I get the error message "HTTP not found" and "SMTP." not found What is this and how can I fix it please?

    If you try to send or receive messages, you may receive an error message similar to the following error message, which indicates that your Post Office Protocol version 3 (POP3) or host SMTP Simple Mail Transfer Protocol () is not found:

    The host hostname is not found. Please check that you have entered the server name correctly. Account: AccountName, Server: servername, Protocol: POP3, Port: secure (SSL): no, error 11001, error 0x800CCC0D Socket number

    In addition, you cannot ping or establish a Telnet connection to the mail server.

     
    This problem may occur if you have the firewall from Zone Labs such as ZoneAla software...
    This problem may occur if you have firewall software from Zone Labs such as ZoneAlarm or ZoneAlarm Pro, installed on your computer. These programs may prevent communication with your e-mail server.

    RESOLUTION

    To resolve this problem, remove the software firewall from Zone Labs of your compu...
    To resolve this problem, remove the firewall from Zone Labs of computer software. To do this, see the program documentation or contact Zone Labs at the following of Zone Labs Web site for more information:

    http://www.zonelabs.com/services/support.htm (http://www.zonelabs.com/services/support.htm)

    MORE INFORMATION

    For more information about ZoneAlarm or to contact Zone Labs, see what follows...
    For more information about ZoneAlarm or to contact Zone Labs, see the following Web of Zone Labs Web site:

    http://www.zonelabs.com (http://www.zonelabs.com)

    For more information on how to resolve a similar error message when you use Microsoft Outlook on a computer that is configured as an ICS Internet (ICS) client, click on the number below to view the article in the Microsoft Knowledge Base:

    252322 (http://support.microsoft.com/kb/252322/EN-US/) OL2000: (CW) Error Message: The Server could not be found using ICS Connection

    For more information on how to solve an error similar to Microsoft Outlook Express and ZoneAlarm, click on the number below to view the article in the Microsoft Knowledge Base:

    274456 (http://support.microsoft.com/kb/274456/EN-US/) error finding POP3 or SMTP servers when you send or receive e-mail Messages

    The third-party products that are discussed in this article are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.

    Microsoft provides third-party contact information to help you find technical support. These details may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.

    later ducdive

  • I can't sign into windows live messenger, I get the message that windows live messnger is unavailable currently try again later and also I get the error code 80048820, can someone help me solve this problem. __

    I can't sign into windows live messenger, I get the message that windows live messnger is unavailable currently try again later and also I get the error code 80048820, can someone help me solve this problem.

    Hello jabeena, welcome.

    This section would apply in fact to the Windows Live programs, but we'll see what we can do to help out you.

    I recommend to try this first:

    1. disable any antivirus software or security, you have running on your computer. Looking for software to disable that contains a firewall.

    2. click on START
    3. Type "cmd" (without the quotes). Right-click on the result at the top of the menu START and select 'run as administrator '.
    4 type the following and press enter

    Regsvr32 softpub.dll wintrust.dll initpki.dll

    5. then type the following command and press enter

    netsh winsock reset

    6. restart your computer and see what happens.

    Thank you! Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • The installation of driver gcntwk_w01_ENU_NB.exe error messages

    After you have uninstalled the photosmart HP on HP psc 2510 all-in-one drivers, I tried to reinstall the above mentioned pilot program. In doing so, I received the following error messages: "HP DeskJet printer has encountered a problem and needs to c

  • DeskJet 2542 all-in-one: parse error message prints well

    I kept getting this error trying to scan a document for the first time. "An error occurred all in communicating with the device. Please check that the device is correctly connected and powered. » To make sure that the printer is connected I printed a

  • How to convert ipod voice recorder in windows movie maker

    Can someone pls guide how to perform the next task. I have a few memos in itunes I want them to be in a movie, being created in windows movie maker How can I consider of WMM? Any advice is greatly appreciated Thank you.

  • Can not hear sound after you install Internet Explorer 9

    Original title: loss of sound I'm trying to get my sound on my PC-, he disappeared after the installation of IE 9. Its still does not not after having started with IE 8. All my drivers audio etc seem to work when I click on the test button. Someone a

  • No sound from speakers on laptop

    Original title: the cat walked a cross key on my lap top when I was on m s n talk two to the United States and the speakers are stoped working on my compaq have tried everything I can do to put still not working help pleaseneed help with speakers not