PSE 9 - What a trip!

Just a comment about downloading PSE 9. Let's see, I had to jump through at least 3 hoops (as it were) to get it downloaded: 1. download the zipped files, which took over 1/2 hour; 2. unzip the files, which took, oh, I don't know, 15 minutes; 3. install PSE 9, which must've taken another 15 minutes. I  think I've remembered all the steps, but I may have left one out. I don't remember; it's been so long since I began downloading the app. So far, except for Imagenomic's noise suppressor, I've not had any success in installing plug ins, such as Topaz Adjust 4 and OnOne's Genuine Fractals 6. So, I'll continue to use PSE 8 for awhile until the plug-in makers catch up with PSE 9. I must say, however, that it's similar enough to PSE 8 that it won't take long to adapt to it, plus it has a couple of new features I look forward to trying.

Resthome,
Thanks a lot! That was it. The monitor was set at 1360x768. Changing it to 1600x900 did the trick. The advanced dialog is back.
I do believe the aspect ratio is also involved. Elements generally requires at least 1024x768 to run with a non-widescreen display. That is what I was using up to a couple of weeks ago. I bought a new WS display, and have been playing around with with different aspect ratios. I thought all I had to do was keep the vertical greater than 768.
As you pointed out, that is not the case.
Thanks again.
BTW I inadvertently clicked on helpful and answer and not the correct answer button. Sorry. I do not see a way to correct that.
One other point, PSE 8 with the same monitor set at 1280x768 also shows the Advanced dialog. It looks like that the issue is with PSE 9.

Similar Messages

  • What version PSE for Yosemite 10.10.2

    I am coming out of the dark ages!
    I happily do my graphic design work for a local family publication using PSE6 and Illustrator 10 on my 2009 laptop. I decided to be proactive in case my old laptop decides to die soon and just purchased the new 2015 13"macbook pro running on Yosemite10.10.2 
    I would like to purchase PSE - what version do you recommend that works well on Yosemite?
    In reading reviews on Amazon buyers have had problems with PSE13.
    Thank you!

    If you haven't already installed pse 6, you might hold off, since after i updated from mac os x 10.10.2 to mac os x 10.10.3, pse 6 crashes when using the File>Open dialog.
    (something having to do with the color sync conversion manager or so it seems from the crash report)
    Maybe it's just happening on my system, but it would interesting to hear if anyone else with photoshop elements 6 and mac os x 10.10.3 is having a similar problem.

  • What every developer should know about character encoding

    This was originally posted (with better formatting) at Moderator edit: link removed/what-every-developer-should-know-about-character-encoding.html. I'm posting because lots of people trip over this.
    If you write code that touches a text file, you probably need this.
    Lets start off with two key items
    1.Unicode does not solve this issue for us (yet).
    2.Every text file is encoded. There is no such thing as an unencoded file or a "general" encoding.
    And lets add a codacil to this – most Americans can get by without having to take this in to account – most of the time. Because the characters for the first 127 bytes in the vast majority of encoding schemes map to the same set of characters (more accurately called glyphs). And because we only use A-Z without any other characters, accents, etc. – we're good to go. But the second you use those same assumptions in an HTML or XML file that has characters outside the first 127 – then the trouble starts.
    The computer industry started with diskspace and memory at a premium. Anyone who suggested using 2 bytes for each character instead of one would have been laughed at. In fact we're lucky that the byte worked best as 8 bits or we might have had fewer than 256 bits for each character. There of course were numerous charactersets (or codepages) developed early on. But we ended up with most everyone using a standard set of codepages where the first 127 bytes were identical on all and the second were unique to each set. There were sets for America/Western Europe, Central Europe, Russia, etc.
    And then for Asia, because 256 characters were not enough, some of the range 128 – 255 had what was called DBCS (double byte character sets). For each value of a first byte (in these higher ranges), the second byte then identified one of 256 characters. This gave a total of 128 * 256 additional characters. It was a hack, but it kept memory use to a minimum. Chinese, Japanese, and Korean each have their own DBCS codepage.
    And for awhile this worked well. Operating systems, applications, etc. mostly were set to use a specified code page. But then the internet came along. A website in America using an XML file from Greece to display data to a user browsing in Russia, where each is entering data based on their country – that broke the paradigm.
    Fast forward to today. The two file formats where we can explain this the best, and where everyone trips over it, is HTML and XML. Every HTML and XML file can optionally have the character encoding set in it's header metadata. If it's not set, then most programs assume it is UTF-8, but that is not a standard and not universally followed. If the encoding is not specified and the program reading the file guess wrong – the file will be misread.
    Point 1 – Never treat specifying the encoding as optional when writing a file. Always write it to the file. Always. Even if you are willing to swear that the file will never have characters out of the range 1 – 127.
    Now lets' look at UTF-8 because as the standard and the way it works, it gets people into a lot of trouble. UTF-8 was popular for two reasons. First it matched the standard codepages for the first 127 characters and so most existing HTML and XML would match it. Second, it was designed to use as few bytes as possible which mattered a lot back when it was designed and many people were still using dial-up modems.
    UTF-8 borrowed from the DBCS designs from the Asian codepages. The first 128 bytes are all single byte representations of characters. Then for the next most common set, it uses a block in the second 128 bytes to be a double byte sequence giving us more characters. But wait, there's more. For the less common there's a first byte which leads to a sersies of second bytes. Those then each lead to a third byte and those three bytes define the character. This goes up to 6 byte sequences. Using the MBCS (multi-byte character set) you can write the equivilent of every unicode character. And assuming what you are writing is not a list of seldom used Chinese characters, do it in fewer bytes.
    But here is what everyone trips over – they have an HTML or XML file, it works fine, and they open it up in a text editor. They then add a character that in their text editor, using the codepage for their region, insert a character like ß and save the file. Of course it must be correct – their text editor shows it correctly. But feed it to any program that reads according to the encoding and that is now the first character fo a 2 byte sequence. You either get a different character or if the second byte is not a legal value for that first byte – an error.
    Point 2 – Always create HTML and XML in a program that writes it out correctly using the encode. If you must create with a text editor, then view the final file in a browser.
    Now, what about when the code you are writing will read or write a file? We are not talking binary/data files where you write it out in your own format, but files that are considered text files. Java, .NET, etc all have character encoders. The purpose of these encoders is to translate between a sequence of bytes (the file) and the characters they represent. Lets take what is actually a very difficlut example – your source code, be it C#, Java, etc. These are still by and large "plain old text files" with no encoding hints. So how do programs handle them? Many assume they use the local code page. Many others assume that all characters will be in the range 0 – 127 and will choke on anything else.
    Here's a key point about these text files – every program is still using an encoding. It may not be setting it in code, but by definition an encoding is being used.
    Point 3 – Always set the encoding when you read and write text files. Not just for HTML & XML, but even for files like source code. It's fine if you set it to use the default codepage, but set the encoding.
    Point 4 – Use the most complete encoder possible. You can write your own XML as a text file encoded for UTF-8. But if you write it using an XML encoder, then it will include the encoding in the meta data and you can't get it wrong. (it also adds the endian preamble to the file.)
    Ok, you're reading & writing files correctly but what about inside your code. What there? This is where it's easy – unicode. That's what those encoders created in the Java & .NET runtime are designed to do. You read in and get unicode. You write unicode and get an encoded file. That's why the char type is 16 bits and is a unique core type that is for characters. This you probably have right because languages today don't give you much choice in the matter.
    Point 5 – (For developers on languages that have been around awhile) – Always use unicode internally. In C++ this is called wide chars (or something similar). Don't get clever to save a couple of bytes, memory is cheap and you have more important things to do.
    Wrapping it up
    I think there are two key items to keep in mind here. First, make sure you are taking the encoding in to account on text files. Second, this is actually all very easy and straightforward. People rarely screw up how to use an encoding, it's when they ignore the issue that they get in to trouble.
    Edited by: Darryl Burke -- link removed

    DavidThi808 wrote:
    This was originally posted (with better formatting) at Moderator edit: link removed/what-every-developer-should-know-about-character-encoding.html. I'm posting because lots of people trip over this.
    If you write code that touches a text file, you probably need this.
    Lets start off with two key items
    1.Unicode does not solve this issue for us (yet).
    2.Every text file is encoded. There is no such thing as an unencoded file or a "general" encoding.
    And lets add a codacil to this – most Americans can get by without having to take this in to account – most of the time. Because the characters for the first 127 bytes in the vast majority of encoding schemes map to the same set of characters (more accurately called glyphs). And because we only use A-Z without any other characters, accents, etc. – we're good to go. But the second you use those same assumptions in an HTML or XML file that has characters outside the first 127 – then the trouble starts. Pretty sure most Americans do not use character sets that only have a range of 0-127. I don't think I have every used a desktop OS that did. I might have used some big iron boxes before that but at that time I wasn't even aware that character sets existed.
    They might only use that range but that is a different issue, especially since that range is exactly the same as the UTF8 character set anyways.
    >
    The computer industry started with diskspace and memory at a premium. Anyone who suggested using 2 bytes for each character instead of one would have been laughed at. In fact we're lucky that the byte worked best as 8 bits or we might have had fewer than 256 bits for each character. There of course were numerous charactersets (or codepages) developed early on. But we ended up with most everyone using a standard set of codepages where the first 127 bytes were identical on all and the second were unique to each set. There were sets for America/Western Europe, Central Europe, Russia, etc.
    And then for Asia, because 256 characters were not enough, some of the range 128 – 255 had what was called DBCS (double byte character sets). For each value of a first byte (in these higher ranges), the second byte then identified one of 256 characters. This gave a total of 128 * 256 additional characters. It was a hack, but it kept memory use to a minimum. Chinese, Japanese, and Korean each have their own DBCS codepage.
    And for awhile this worked well. Operating systems, applications, etc. mostly were set to use a specified code page. But then the internet came along. A website in America using an XML file from Greece to display data to a user browsing in Russia, where each is entering data based on their country – that broke the paradigm.
    The above is only true for small volume sets. If I am targeting a processing rate of 2000 txns/sec with a requirement to hold data active for seven years then a column with a size of 8 bytes is significantly different than one with 16 bytes.
    Fast forward to today. The two file formats where we can explain this the best, and where everyone trips over it, is HTML and XML. Every HTML and XML file can optionally have the character encoding set in it's header metadata. If it's not set, then most programs assume it is UTF-8, but that is not a standard and not universally followed. If the encoding is not specified and the program reading the file guess wrong – the file will be misread.
    The above is out of place. It would be best to address this as part of Point 1.
    Point 1 – Never treat specifying the encoding as optional when writing a file. Always write it to the file. Always. Even if you are willing to swear that the file will never have characters out of the range 1 – 127.
    Now lets' look at UTF-8 because as the standard and the way it works, it gets people into a lot of trouble. UTF-8 was popular for two reasons. First it matched the standard codepages for the first 127 characters and so most existing HTML and XML would match it. Second, it was designed to use as few bytes as possible which mattered a lot back when it was designed and many people were still using dial-up modems.
    UTF-8 borrowed from the DBCS designs from the Asian codepages. The first 128 bytes are all single byte representations of characters. Then for the next most common set, it uses a block in the second 128 bytes to be a double byte sequence giving us more characters. But wait, there's more. For the less common there's a first byte which leads to a sersies of second bytes. Those then each lead to a third byte and those three bytes define the character. This goes up to 6 byte sequences. Using the MBCS (multi-byte character set) you can write the equivilent of every unicode character. And assuming what you are writing is not a list of seldom used Chinese characters, do it in fewer bytes.
    The first part of that paragraph is odd. The first 128 characters of unicode, all unicode, is based on ASCII. The representational format of UTF8 is required to implement unicode, thus it must represent those characters. It uses the idiom supported by variable width encodings to do that.
    But here is what everyone trips over – they have an HTML or XML file, it works fine, and they open it up in a text editor. They then add a character that in their text editor, using the codepage for their region, insert a character like ß and save the file. Of course it must be correct – their text editor shows it correctly. But feed it to any program that reads according to the encoding and that is now the first character fo a 2 byte sequence. You either get a different character or if the second byte is not a legal value for that first byte – an error.
    Not sure what you are saying here. If a file is supposed to be in one encoding and you insert invalid characters into it then it invalid. End of story. It has nothing to do with html/xml.
    Point 2 – Always create HTML and XML in a program that writes it out correctly using the encode. If you must create with a text editor, then view the final file in a browser.
    The browser still needs to support the encoding.
    Now, what about when the code you are writing will read or write a file? We are not talking binary/data files where you write it out in your own format, but files that are considered text files. Java, .NET, etc all have character encoders. The purpose of these encoders is to translate between a sequence of bytes (the file) and the characters they represent. Lets take what is actually a very difficlut example – your source code, be it C#, Java, etc. These are still by and large "plain old text files" with no encoding hints. So how do programs handle them? Many assume they use the local code page. Many others assume that all characters will be in the range 0 – 127 and will choke on anything else.
    I know java files have a default encoding - the specification defines it. And I am certain C# does as well.
    Point 3 – Always set the encoding when you read and write text files. Not just for HTML & XML, but even for files like source code. It's fine if you set it to use the default codepage, but set the encoding.
    It is important to define it. Whether you set it is another matter.
    Point 4 – Use the most complete encoder possible. You can write your own XML as a text file encoded for UTF-8. But if you write it using an XML encoder, then it will include the encoding in the meta data and you can't get it wrong. (it also adds the endian preamble to the file.)
    Ok, you're reading & writing files correctly but what about inside your code. What there? This is where it's easy – unicode. That's what those encoders created in the Java & .NET runtime are designed to do. You read in and get unicode. You write unicode and get an encoded file. That's why the char type is 16 bits and is a unique core type that is for characters. This you probably have right because languages today don't give you much choice in the matter.
    Unicode character escapes are replaced prior to actual code compilation. Thus it is possible to create strings in java with escaped unicode characters which will fail to compile.
    Point 5 – (For developers on languages that have been around awhile) – Always use unicode internally. In C++ this is called wide chars (or something similar). Don't get clever to save a couple of bytes, memory is cheap and you have more important things to do.
    No. A developer should understand the problem domain represented by the requirements and the business and create solutions that appropriate to that. Thus there is absolutely no point for someone that is creating an inventory system for a stand alone store to craft a solution that supports multiple languages.
    And another example is with high volume systems moving/storing bytes is relevant. As such one must carefully consider each text element as to whether it is customer consumable or internally consumable. Saving bytes in such cases will impact the total load of the system. In such systems incremental savings impact operating costs and marketing advantage with speed.

  • Could not complete Photomerge command because COMMAND was not available. What do I do now?

    Text of message when I tried a Photomerge: "Could not complete Photomerge command because "command" was not available."
    How do I fix this?

    Lots more information needed. Operating system and version, version of PSE, what exactly did you do to create your merge, step by step.

  • I am getting this message as I try to upload raw images from my file folders to my PSE

    I am getting this message as I try to upload raw image files from my file/folders into PSE what do I do to get PSE to accept the raw files?
    "Nothing was imported. The file(s) or folder(s) selected to import did not contain any supported file types"  What do I do.  Just to let you guys know I am able to upload all JPEG files that are already in my files into PSE but not the raw photos.  Obviously I want to keep them raw in order to have more control over the outcome of the picture.

    The  camera I am using is the Canon Rebel T3I, the PSE version is elements 9, and I don't know what version of raw converter I may or may not be using.  Where do I find the version of raw converter?

  • PSE 6 - registration problem

    I am so incredibly frustrated with Adobe right now.
    I have been happily using PSE6 for my work for 4 years.
    Last week, upon opening the program I got a white blank box instead of the registration box that I have
    skipped for 4 years (lesson learned).
    After researching forums, and trying to reinstall several times, I traveled 30 miles to Apple Genius bar yesterday
    and they determined it was a "licensing" problem.
    Last night I registered the product with Adobe. Still would not open.
    This morning I tried to call them but of course they referred me to the chat.
    I just spent one hour on chat and was told:
    I truly understand your concern however, Photoshop elements 6 is an older version, we support only for latest version. Please visit the forums our Adobe experts will definitely give you the resolution.
    and
    I highly recommend you to purchase the latest version of Photoshop elements so that you will not face any issues.
    So, I need a miracle from you at the forums. I have wasted so much time trying to get this resolved and need PSE for work.
    One other thing that I don't know is involved. My daughter is taking a digital media course and she down loaded my PSE as well.
    Also, she is doing a free trial of Flash and is using Creative Cloud. Problem seemed to start for me after this. She has uninstalled PSE on her computer now.
    If I have to buy a new PSE - what version will work on OS 10.6.8

    OMG - 99jon - can I send you cookies!!!!
    THIS WORKED!!!!
    Amazing!
    Apple Genius Bar and Adobe chat couldn't help - hours spent trying to deal with them -
    and in 5 minutes I get this response from you and magically I have my beloved PSE back.
    Many many many thanks!!!!

  • Importing keyword database into PSE(

    I have been using Corel Album for assigning keywords to my digital image collection. I am thinking of getting PSE9 but I am not sure if it can import the Corel keyword database? Appreciate any advice...

    No there is no way to import the ixdb database into PSE.What you can try is attach all the keywords into a single image in corel and save the tags to file by writing tags to file through corel. Now if you import the same file in PSE, it will asks you to import all tags. This way tags can be imported.

  • Moving photo from Adobe PSE 6 organiser to iphoto 09

    Hi Folks,
    For the last couple of years I have been using Adobe Photoshop elements to organize my Picture library. I have since then move away from Windows with the exception of my picture. I would now like to move every file I have in PSE to iphoto (around 5000), but i'm not sure what is the best way to proceed. Obviously I don't feel like re categorizing all of those picture so I would like the migration to keep the structure i currently have in PSE.
    what is the best way to migrate my photo over to iphoto and is there a way to preserve the structure I have in PSE ?
    Thanks in advance for any help.

    Floyd
    Welcome to the Apple user to user assistance forums
    Obviously I don't feel like re categorizing all of those picture so I would like the migration to keep the structure i currently have in PSE.
    what is the best way to migrate my photo over to iphoto and is there a way to preserve the structure I have in PSE ?
    What is your structure in PSE?
    Assuming that you have nested folders then the best you can do in iPhoto is a flat event structure - you can then easily create a nested structure of folders which contain other folders and/or albums
    Make sure that the iPhoto preference to "split items imported from the finder into events" is unchecked - then drag each folder onto the iPhoto icon in the dock (or onto the iPhoto library window) and this will create events matching your folders - of it you want each folder in an event and an album drag the folder to the source pane on the left of the iPhoto window
    It probably makes sense to create a library with a few photos to see how it works before doing all 5000
    LN

  • Macbook Pro Booting Unattended

    This has been an odd problem. I am now GMT +3 and have what is now a very consistent problem: my Macbook Pro will Boot without input from me at 3:00 AM (that is 0:00 GMT) every single night IF the power supply is attached. If not attached, it will not boot.
    I have been shutting it down and have the lid closed (as we are in a high dust environment), but then it is sleeping in the morning. When I open the lid, it wakes and is at the "blue screen", quickly resolving to the login screen. Each night it boots at 3:00:17.
    I only have 1 account on the machine, and nothing is selected in the energy savings/ "scheduled start or wake" settings.
    If I leave the power unplugged, it will not boot like this in the middle of the night. This morning as I was out I observed the following: I had the power unplugged overnight, so it was not booted in the morning. I then plugged in the power and walked away (wanting to ensure my battery is topped of). When returning, I notice the machine sleeping! As I look at my log it appears as if it must have booted very shortly after I plugged in the power! I have tried looking at the logs, but don't see what is tripping the boot. Any advice?
    I will post a log, but not for the faint of heart:
    First log is from April 28: I kept the prior shutdown log messages (from April 27) as well.
    Second log is from this morning, May 12 (where it booted almost immediately after plugging in power supply). I will also include the previous night's shutdown log in this cutting.
    =========APR 28 3 AM BOOT===============
    Apr 27 21:40:16 andyHD Skype[136]: AppDelegate::applicationWillTerminate raised exception during destroying lib: NSRangeException: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0). Continue termination.
    Apr 27 21:40:16 andyHD ChronoSyncBackgrounder[135]: ChronoSync Backgrounder v3.3.6 has terminated.
    Apr 27 21:40:16 andyHD [0x0-0x10010].com.skype.skype[136]: Main starting
    Apr 27 21:40:18 andyHD loginwindow[24]: DEAD_PROCESS: 0 console
    Apr 27 21:40:19 andyHD kextd[10]: error reconsidering volume /Volumes/WINXP-MB
    Apr 27 21:40:19 andyHD com.apple.loginwindow[24]: Shutdown NOW!
    Apr 27 21:40:19 andyHD shutdown[249]: halt by akiverson:
    Apr 27 21:40:19 andyHD com.apple.loginwindow[24]: System shutdown time has arrived^G^G
    Apr 27 21:40:19 andyHD shutdown[249]: SHUTDOWN_TIME: 1209321619 776289
    Apr 27 21:40:19 andyHD kernel[0]: AFP_VFS afpfs_unmount: /Volumes/IomegaHD160, flags 0, pid 250
    Apr 27 21:40:19 andyHD Parallels[258]: Stopping DHCP/NAT daemon...
    Apr 27 21:40:19 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /Library/Extensions/tap.kext succeeded
    Apr 27 21:40:19 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /Library/Extensions/tun.kext succeeded
    Apr 27 21:40:21 andyHD Parallels[266]: Unloading Network module...
    Apr 27 21:40:21 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/Pvsnet.kext succeeded
    Apr 27 21:40:21 andyHD Parallels[268]: Unloading ConnectUSB module...
    Apr 27 21:40:21 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/ConnectUSB.kext succeeded
    Apr 27 21:40:21 andyHD Parallels[270]: Unloading Monitor module...
    Apr 27 21:40:22 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/vmmain.kext succeeded
    Apr 27 21:40:22 andyHD kernel[0]: [Parallels] Parallels VM observer thread stopped
    Apr 27 21:40:22 andyHD Parallels[272]: Unloading Hypervisor module...
    Apr 27 21:40:22 andyHD com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/hypervisor.kext succeeded
    Apr 27 21:40:22 andyHD kernel[0]: [Parallels] Parallels Hypervisor exited.
    Apr 27 21:40:22 andyHD Parallels[274]: Shutdown complete.
    Apr 28 03:00:17 localhost kernel[0]: npvhash=4095
    Apr 28 03:00:11 localhost com.apple.launchctl.System[2]: launchctl: propertyList is NULL
    Apr 28 03:00:11 localhost com.apple.launchctl.System[2]: launchctl: no plist was returned for: /System/Library/LaunchDaemons/tuncfgd.plist
    Apr 28 03:00:17: --- last message repeated 1 time ---
    Apr 28 03:00:11 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist.disabled
    Apr 28 03:00:11 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Apr 28 03:00:11 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Apr 28 03:00:17 localhost kernel[0]: hi mem tramps at 0xffe00000
    Apr 28 03:00:17 localhost rpc.statd[19]: statd.notify - no notifications needed
    Apr 28 03:00:17 localhost kernel[0]: PAE enabled
    Apr 28 03:00:17 localhost bootlog[37]: BOOT_TIME: 1209340808 0
    Apr 28 03:00:17 localhost kernel[0]: 64 bit mode enabled
    Apr 28 03:00:17 localhost kernel[0]: Darwin Kernel Version 9.2.2: Tue Mar 4 21:17:34 PST 2008; root:xnu-1228.4.31~1/RELEASE_I386
    Apr 28 03:00:17 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Apr 28 03:00:17 localhost kernel[0]: vmpagebootstrap: 512656 free pages and 11632 wired pages
    Apr 28 03:00:17 localhost kernel[0]: migtable_maxdispl = 79
    Apr 28 03:00:17 localhost kernel[0]: 99 prelinked modules
    Apr 28 03:00:17 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Apr 28 03:00:17 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Apr 28 03:00:17 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Apr 28 03:00:17 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Apr 28 03:00:17 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Apr 28 03:00:17 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Apr 28 03:00:17 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Apr 28 03:00:17 localhost kernel[0]: calling mpopolicyinit for mb
    Apr 28 03:00:17 localhost kernel[0]: Seatbelt MACF policy initialized
    Apr 28 03:00:17 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Apr 28 03:00:17 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Apr 28 03:00:17 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Apr 28 03:00:17 localhost kernel[0]: MAC Framework successfully initialized
    Apr 28 03:00:17 localhost kernel[0]: using 10485 buffer headers and 4096 cluster IO buffer headers
    Apr 28 03:00:17 localhost kernel[0]: devfsmakenode: not ready for devices!
    Apr 28 03:00:17 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Apr 28 03:00:17 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Apr 28 03:00:17 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe9dda12; max speed s800.
    Apr 28 03:00:17 localhost kernel[0]: mbinit: done
    Apr 28 03:00:17 localhost kernel[0]: Security auditing service present
    Apr 28 03:00:17 localhost kernel[0]: BSM auditing present
    Apr 28 03:00:17 localhost kernel[0]: rooting via boot-uuid from /chosen: E36EE3B7-0025-3D8F-9FF5-7DA24201C676
    Apr 28 03:00:17 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Apr 28 03:00:17 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/FUJITSU MHW2120BH Media/IOGUIDPartitionScheme/Customer@2
    Apr 28 03:00:17 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Apr 28 03:00:17 localhost kernel[0]: CSRHIDTransitionDriver::start []
    Apr 28 03:00:17 localhost kernel[0]: CSRHIDTransitionDriver::switchToHCIMode legacy
    Apr 28 03:00:17 localhost kernel[0]: USBF: 2.226 CSRHIDTransitionDriver[0x3e20500](IOUSBCompositeDevice) GetFullConfigDescriptor(0) returned NULL
    Apr 28 03:00:17 localhost kernel[0]: CSRHIDTransitionDriver... done
    Apr 28 03:00:17 localhost kernel[0]: Jettisoning kernel linker.
    Apr 28 03:00:19 localhost kernel[0]: Resetting IOCatalogue.
    Apr 28 03:00:19 localhost DirectoryService[33]: Launched version 5.2 (v514.4)
    Apr 28 03:00:19 localhost kernel[0]: display: family specific matching fails
    Apr 28 03:00:19 localhost kernel[0]: Matching service count = 0
    Apr 28 03:00:19 localhost kernel[0]: Matching service count = 16
    Apr 28 03:00:19: --- last message repeated 2 times ---
    Apr 28 03:00:19 localhost fseventsd[28]: bumping event counter to: 0x42cfb (current 0x0) from log file '0000000000038f91'
    Apr 28 03:00:19 localhost kernel[0]: Matching service count = 16
    Apr 28 03:00:19: --- last message repeated 1 time ---
    Apr 28 03:00:19 localhost kextd[10]: 406 cached, 0 uncached personalities to catalog
    Apr 28 03:00:20 localhost kernel[0]: Previous Shutdown Cause: 5
    Apr 28 03:00:20 localhost kernel[0]: display: family specific matching fails
    Apr 28 03:00:20 localhost kernel[0]: ath_attach: devid 0x24
    Apr 28 03:00:20 localhost kernel[0]: Override HT40 CTL Powers. EEPROM Version is 14.4, Device Type 5
    Apr 28 03:00:20 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[24]: Login Window Application Started
    Apr 28 03:00:20 localhost blued[47]: Apple Bluetooth daemon started.
    Apr 28 03:00:20 localhost kernel[0]: yukon: Ethernet address 00:1b:63:1b:79:75
    Apr 28 03:00:21 localhost kernel[0]: mac 12.10 phy 8.1 radio 12.0
    Apr 28 03:00:21 localhost kernel[0]: E:[AppleUSBBluetoothHCIController][StartInterruptPipeRead] there is alredy a pending read, skipping.
    Apr 28 03:00:20 localhost mDNSResponder mDNSResponder-170 (Jan 4 2008 18:04:07)[23]: starting
    Apr 28 03:00:20 localhost configd[35]: Error: No interface name AirPort_Athr5424ab
    Apr 28 03:00:21 localhost kernel[0]: [InterruptReadHandler] Received kIODeviceNotResponding error - retrying: 1.
    Apr 28 03:00:20 localhost configd[35]: Error: ioPublishedDriverCallback() failed to initDeviceFromService()
    Apr 28 03:00:21 localhost /usr/sbin/ocspd[55]: starting
    Apr 28 03:00:23 localhost fseventsd[28]: log dir: /Volumes/WINXP-MB/.fseventsd getting new uuid: 900AA69F-993B-4998-A24C-DDACD7258146
    Apr 28 03:00:24 localhost kernel[0]: AirPort_Athr5424ab: Ethernet address 00:1b:63:04:1d:ab
    Apr 28 03:00:24 andyHD configd[35]: setting hostname to "andyHD.local"
    Apr 28 03:00:30 andyHD ntpdate[77]: can't find host time.apple.com
    Apr 28 03:00:30 andyHD org.ntp.ntpd[13]: Error : nodename nor servname provided, or not known
    Apr 28 03:00:30 andyHD ntpdate[77]: no servers can be used, exiting
    Apr 28 03:00:31 andyHD kextd[10]: writing kernel link data to /var/run/mach.sym
    Apr 28 03:00:36 andyHD kernel[0]: ATY_Wormy::powerStateWillChangeTo(0x4263800, ATY_Wormy, 2 -> 1) timed out after 10105 ms
    Apr 28 03:00:37 andyHD com.apple.SystemStarter[16]: Initializing tap devices
    Apr 28 03:00:37 andyHD com.apple.SystemStarter[16]: Initializing tun devices
    Apr 28 03:00:37 andyHD Parallels[89]: Loading Hypervisor module...
    Apr 28 03:00:37 andyHD com.apple.SystemStarter[16]: kextload serialization lock busy; sleeping (89 retries left)
    Apr 28 03:00:37: --- last message repeated 1 time ---
    Apr 28 03:00:37 andyHD com.apple.SystemStarter[16]: kextload: /Library/Extensions/tap.kext loaded successfully
    Apr 28 03:00:37 andyHD kernel[0]: tap: ready for operation.
    Apr 28 03:00:37 andyHD loginwindow[24]: Login Window Started Security Agent
    Apr 28 03:00:38 andyHD kernel[0]: hibernate image path: /var/vm/sleepimage
    Apr 28 03:00:38 andyHD com.apple.SystemStarter[16]: kextload serialization lock busy; sleeping (88 retries left)
    Apr 28 03:00:38 andyHD kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Apr 28 03:00:38 andyHD kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    Apr 28 03:00:38 andyHD kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 4
    Apr 28 03:00:38 andyHD kernel[0]: hibernateallocpages flags 00000000, gobbling 0 pages
    Apr 28 03:00:38 andyHD com.apple.SystemStarter[16]: kextload: /Library/Extensions/tun.kext loaded successfully
    Apr 28 03:00:39 andyHD kernel[0]: tun: ready for operation.
    Apr 28 03:00:39 andyHD com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/hypervisor.kext is already loaded
    Apr 28 07:01:01 andyHD kernel[0]: [Parallels] Parallels Hypervisor started.
    Apr 28 03:00:39 andyHD Parallels[98]: Loading Monitor module...
    Apr 28 03:00:39 andyHD com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/vmmain.kext is already loaded
    Apr 28 03:00:39 andyHD com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/ConnectUSB.kext is already loaded
    Apr 28 03:00:39 andyHD com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/Pvsnet.kext is already loaded
    Apr 28 03:00:39 andyHD com.apple.SystemStarter[16]: kextload: /Library/StartupItems/Parallels/Pvsvnic.kext loaded successfully
    Apr 28 03:00:39 andyHD kernel[0]: System SafeSleep
    Apr 28 03:00:39 andyHD Parallels[100]: Loading ConnectUSB module...
    Apr 28 07:01:01 andyHD kernel[0]: [Parallels] Parallels VM observer thread started
    Apr 28 03:00:39 andyHD Parallels[102]: Loading Network module...
    Apr 28 07:01:01 andyHD kernel[0]: hibernatepage_listsetall start
    Apr 28 03:00:39 andyHD Parallels[104]: Loading Virtual Ethernet module...
    =========END APR 28 3 AM BOOT===========
    =========MAY 12 3 AM BOOT===============
    May 11 20:39:10 ai-osx com.apple.loginwindow[24]: Shutdown NOW!
    May 11 20:39:10 ai-osx shutdown[566]: halt by akiverson:
    May 11 20:39:10 ai-osx com.apple.loginwindow[24]: System shutdown time has arrived^G^G
    May 11 20:39:10 ai-osx Parallels[574]: Stopping DHCP/NAT daemon...
    May 11 20:39:10 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /Library/Extensions/tun.kext succeeded
    May 11 20:39:10 ai-osx shutdown[566]: SHUTDOWN_TIME: 1210527550 167617
    May 11 20:39:10 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /Library/Extensions/tap.kext succeeded
    May 11 20:39:11 ai-osx Parallels[583]: Unloading Network module...
    May 11 20:39:11 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/Pvsnet.kext succeeded
    May 11 20:39:11 ai-osx Parallels[585]: Unloading ConnectUSB module...
    May 11 20:39:11 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/ConnectUSB.kext succeeded
    May 11 20:39:11 ai-osx Parallels[587]: Unloading Monitor module...
    May 11 20:39:14 ai-osx kernel[0]: [Parallels] Parallels VM observer thread stopped
    May 11 20:39:14 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/vmmain.kext succeeded
    May 11 20:39:14 ai-osx Parallels[589]: Unloading Hypervisor module...
    May 11 20:39:14 ai-osx com.apple.SystemStarter[16]: kextunload: unload kext /System/Library/Extensions/hypervisor.kext succeeded
    May 11 20:39:14 ai-osx kernel[0]: [Parallels] Parallels Hypervisor exited.
    May 11 20:39:14 ai-osx Parallels[591]: Shutdown complete.
    May 12 09:07:51 localhost kernel[0]: npvhash=4095
    May 12 09:07:45 localhost com.apple.launchctl.System[2]: launchctl: propertyList is NULL
    May 12 09:07:45 localhost com.apple.launchctl.System[2]: launchctl: no plist was returned for: /System/Library/LaunchDaemons/tuncfgd.plist
    May 12 09:07:51: --- last message repeated 1 time ---
    May 12 09:07:45 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist.disabled
    May 12 09:07:45 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    May 12 09:07:45 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    May 12 09:07:51 localhost kernel[0]: hi mem tramps at 0xffe00000
    May 12 09:07:51 localhost rpc.statd[19]: statd.notify - no notifications needed
    May 12 09:07:51 localhost kernel[0]: PAE enabled
    May 12 09:07:51 localhost bootlog[37]: BOOT_TIME: 1210572462 0
    May 12 09:07:51 localhost kernel[0]: 64 bit mode enabled
    May 12 09:07:51 localhost kernel[0]: Darwin Kernel Version 9.2.2: Tue Mar 4 21:17:34 PST 2008; root:xnu-1228.4.31~1/RELEASE_I386
    May 12 09:07:51 localhost kernel[0]: standard timeslicing quantum is 10000 us
    May 12 09:07:51 localhost kernel[0]: vmpagebootstrap: 512656 free pages and 11632 wired pages
    May 12 09:07:51 localhost kernel[0]: migtable_maxdispl = 79
    May 12 09:07:51 localhost kernel[0]: 99 prelinked modules
    May 12 09:07:51 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    May 12 09:07:51 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    May 12 09:07:51 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    May 12 09:07:51 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    May 12 09:07:51 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    May 12 09:07:51 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    May 12 09:07:51 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    May 12 09:07:51 localhost kernel[0]: calling mpopolicyinit for mb
    May 12 09:07:51 localhost kernel[0]: Seatbelt MACF policy initialized
    May 12 09:07:51 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    May 12 09:07:51 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    May 12 09:07:51 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    May 12 09:07:51 localhost kernel[0]: MAC Framework successfully initialized
    May 12 09:07:51 localhost kernel[0]: using 10485 buffer headers and 4096 cluster IO buffer headers
    May 12 09:07:51 localhost kernel[0]: devfsmakenode: not ready for devices!
    May 12 09:07:51 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    May 12 09:07:51 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    May 12 09:07:51 localhost kernel[0]: mbinit: done
    May 12 09:07:51 localhost kernel[0]: Security auditing service present
    May 12 09:07:51 localhost kernel[0]: BSM auditing present
    May 12 09:07:51 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe9dda12; max speed s800.
    May 12 09:07:51 localhost kernel[0]: rooting via boot-uuid from /chosen: E36EE3B7-0025-3D8F-9FF5-7DA24201C676
    May 12 09:07:51 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    May 12 09:07:51 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/FUJITSU MHW2120BH Media/IOGUIDPartitionScheme/Customer@2
    May 12 09:07:51 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    May 12 09:07:51 localhost kernel[0]: CSRHIDTransitionDriver::start []
    May 12 09:07:51 localhost kernel[0]: CSRHIDTransitionDriver::switchToHCIMode legacy
    May 12 09:07:51 localhost kernel[0]: USBF: 2.213 CSRHIDTransitionDriver[0x3e14400](IOUSBCompositeDevice) GetFullConfigDescriptor(0) returned NULL
    May 12 09:07:51 localhost kernel[0]: CSRHIDTransitionDriver... done
    May 12 09:07:51 localhost kernel[0]: Jettisoning kernel linker.
    May 12 09:07:52 localhost DirectoryService[33]: Launched version 5.2 (v514.4)
    May 12 09:07:53 localhost fseventsd[28]: bumping event counter to: 0x127db8 (current 0x0) from log file '0000000000113929'
    May 12 09:07:53 localhost kernel[0]: yukon: Ethernet address 00:1b:63:1b:79:75
    May 12 09:07:53 localhost blued[45]: Apple Bluetooth daemon started.
    May 12 09:07:53 localhost kernel[0]: Resetting IOCatalogue.
    May 12 09:07:53 localhost mDNSResponder mDNSResponder-170 (Jan 4 2008 18:04:07)[23]: starting
    May 12 09:07:53 localhost kernel[0]: display: family specific matching fails
    May 12 09:07:54 localhost kernel[0]: Matching service count = 0
    May 12 09:07:54 localhost kextd[10]: 406 cached, 0 uncached personalities to catalog
    May 12 09:07:54 localhost kernel[0]: Matching service count = 18
    May 12 09:07:54: --- last message repeated 4 times ---
    May 12 09:07:54 localhost kernel[0]: Previous Shutdown Cause: 5
    May 12 09:07:54 localhost kernel[0]: ath_attach: devid 0x24
    May 12 09:07:54 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[24]: Login Window Application Started
    May 12 09:07:54 localhost kernel[0]: display: family specific matching fails
    May 12 09:07:54 localhost /usr/sbin/ocspd[52]: starting
    May 12 09:07:54 localhost kernel[0]: Override HT40 CTL Powers. EEPROM Version is 14.4, Device Type 5
    May 12 09:07:56 localhost kernel[0]: mac 12.10 phy 8.1 radio 12.0
    May 12 09:07:56 localhost kernel[0]: AirPort_Athr5424ab: Ethernet address 00:1b:63:04:1d:ab
    May 12 09:07:57 localhost fseventsd[28]: log dir: /Volumes/WINXP-MB/.fseventsd getting new uuid: 13AB7F60-3D7C-4C96-893C-47BA79401F3B
    May 12 09:07:59 ai-osx configd[35]: setting hostname to "ai-osx.local"
    May 12 09:08:06 ai-osx kextd[10]: writing kernel link data to /var/run/mach.sym
    May 12 09:08:10 ai-osx kernel[0]: AirPort: Link Up on en1
    May 12 09:08:11 ai-osx loginwindow[24]: Login Window Started Security Agent
    May 12 09:08:12 ai-osx kernel[0]: hibernate image path: /var/vm/sleepimage
    May 12 09:08:12 ai-osx kernel[0]: sizeof(IOHibernateImageHeader) == 512
    May 12 09:08:12 ai-osx kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    May 12 09:08:12 ai-osx kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 4
    May 12 09:08:12 ai-osx kernel[0]: hibernateallocpages flags 00000000, gobbling 0 pages
    May 12 09:08:14 ai-osx kernel[0]: System SafeSleep

    At the risk of being considered 'faint of heart' I'll admit that I made no attempt at interpreting the log you pasted in. But, the first thing that occurs to me is the setting "Wake for Ethernet network administrator access" in System Preferences > Energy Saver > Options tab. If that box is checked, UNcheck it. Note that this setting is available only in the Settings for: Power Adapter pane, not in the battery pane, which is parallels your mysterious start-ups.
    Hope this helps...

  • How do I convert an html design web site to CSS template and layout?

    Good Morning, All!
    How can I convert, apply, or change, efficiently, my html web pages into a CSS template so I don’t have to change each page every time I add something to the main page…also, I currently have two tables (I know, old-fashioned) one which holds my list of contents and links to the different sections (page) with information from the community on the website. The other table holds my text and pictures which I want to update daily. How can I change the format to a 2 column, liquid layout with a masthead area on top for logo and text with a box around it. Time was not available for me to learn all the details of my new Dreamweaver program so I did what I knew and uploaded it with all the boo-boos, inactive links and non-existant pages.
    Now I have the time to focus and want to get it done better so that it is easy to update with new text and features daily. (I am converting my printed newspaper to an online version after 17 plus years and trying to learn the new Adobe Premium Design Suite CS5 programs. What a trip this is at 61-years-old!
    My community and readership are looking forward to the web site according to a survey I took. They are very tolerant about my boo-boos while I learn the new software for the web design. I’ve let them know, through my newspaper and personally (I am very active in the community), that online is where I am going and all that I’ve spoken to, or who have sent emails, are very supportive and look forward to getting their news from my web site newspaper.)
    I am seeking some guidance...I know a little about a lot, but not a lot about anything...even though I've been working with computers since 1983.
    I thank you all in advance for whatever help you can give.
    Donna

    That's a good start.  You will want to fix these things -
    * change this -
    Don Lawton. Used with permission. <div></p>
    to this -
    Don Lawton. Used with permission.</p>
    * change this -
    </center>
    </P>
    <div align="center"><a href="mailto:
    to this -
    </center>
    <div align="center"><a href="mailto:
    * change this -
    <p>
      <center>
        <b><font size="+1">Webmistress: Donna Lee Hanlon<br />
          c/o www.Nahant.com &middot; PO Box 88 &middot; Nahant, MA 01908<br />
          Copyright 2002-12</font></b>
      </center>
    </p>
    to this -
    <p style="text-align:center;">
        <b><font size="+1">Webmistress: Donna Lee Hanlon<br />
          c/o www.Nahant.com &middot; PO Box 88 &middot; Nahant, MA 01908<br />
          Copyright 2002-12</font></b>
    </p>
    And now you will have a page that contains completely valid HTML.

  • Error in using plsql record type inside packages

    Dear Friends,
    Using Ora9iR2 on Windows 2000 Server. I am trying to declare a record type and a nested table of that record type in the package body and the initialise that in the package body then insert records into that. But I receive error msg.
    CREATE OR REPLACE PACKAGE sample1 AS
    TYPE rcur IS REF CURSOR;
    TYPE emp_record IS RECORD
    (empname VARCHAR2(20),
    job VARCHAR2(10),
    salary NUMBER);
    TYPE emp_result IS TABLE OF emp_record;
    PROCEDURE emp_test ( i_empno emp.empno%TYPE);
    END sample1;
    -- Package Body
    CREATE OR REPLACE PACKAGE BODY sample1 AS
    PROCEDURE emp_test ( i_empno IN emp.empno%TYPE)AS
    c1 rcur;
    eresult emp_result := emp_result();
    v_empname VARCHAR2(20);
    v_job VARCHAR2(10);
    v_sal NUMBER;
    BEGIN
    OPEN c1 FOR SELECT ename,job,sal FROM emp WHERE empno = i_empno;
    LOOP FETCH c1 INTO v_empname,v_job,v_sal;
    EXIT WHEN c1%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE(v_empname||' , '||v_job||' , '||v_sal);
    eresult := emp_result(v_empname,v_job,v_sal); showing error
    END LOOP;
    CLOSE c1;
    END emp_test;
    END sample1;
    While executing the procedure with out the line eresult := emp_result(v_empname,v_job,v_sal); the procedure executes fine.
    SQL> execute sample1.emp_test(7900);
    JAMES , CLERK , 950
    PL/SQL procedure successfully completed.
    With that line, i have error
    SQL> execute sample1.emp_test(7900);
    BEGIN sample1.emp_test(7900); END;
    ERROR at line 1:
    ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "KUMAR.SAMPLE1" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1
    While executing in PL/SQL Developer, it says the wrong number or types of arguments call to ;EMP_RESULT'.
    Please guide me where I am wrong.
    Kumar

    I got invalide data type error.I think the datatype in the CAST() clause must be a SQL Type i.e. one created with a CREATE TYPE command in the database. emp_result is only a PL/SQL datatype.
    But I dont know why it is saying error
    eresult(eresult.count) := emp_result(v_empname,v_job,v_sal); eresult is a table of records. It is therefore expecting a record. records don't seem to be created in the same way that user defined types are.
    The concept of handling records like this is new to 9i and they are still smoothing out the bumps. Things are a lot better in 9.2 than in 9.0.1 if it's any consolation. There is a particular gap in the documentation, which is what's tripping you up at the moment: the difference between TYPE AS RECORD and other types, also the difference between VARRAY, NESTED TABLE and REF CURSOR. To be honest, it's all kind of hazy for me at the moment: I always need to run some code before I make any pronouncements on this topic.
    Good luck, APC

  • Airport no longer connects to OPEN wireless networks

    Lots of people seem to think that their airport keeps dropping the connection to OPEN wireless networks because of the 2008-001 airport update. That is probably only true for a Macbook 2,1 (aka Macbook Core 2 Duo).
    I had the issue on my Macbook 1,1 (aka Macbook Core Duo). I wiped the system clean. Re-installed OS-X. Applied all updates BUT:
    1. Airport 2008-001
    2. Security update 2008-002
    I also downgraded the Airport firmware to 2007-004 (aka version 1.1.9.3).
    Technically speaking this should have resolved the issue but it didn't.
    Why do I believe it should have resolved the issue? Because the same approach worked on the Macbook 2,1 and they both have the exact same Airport card.
    Now I have no idea how to get it fixed - I think I have tried every possible way. There doesn't seem to be any way to contact Apple coz I don't have a support contract.
    But hey, do I need a contract? Apple broke this for me ... they should fix this. I am about to post this as a tech article on engadget and other places because there are SO many people suffering from poor testing on Apple's behalf.
    Apple, please respond.
    Thanks.

    Visited the "genius" bar this afternoon - what a trip!! The guy said this is a Verizon issue, period. I was like you must be kidding, there are SO many people out there who got affected and not everyone uses verizon ... he actually got pretty mad and said you should be using mac hardware (router) and secure network. I even told him my second Macbook is working fine on the same Verizon network. This is their new location in the Northern VA area at Fair Oaks Mall.
    I would call that guy anything but a genius, what a waste of time. This was my first and last trip to a "genius" bar.
    If anyone comes across any new ideas, please share.
    Thanks.

  • Great Apple Customer Service!

    I have been plagued with Iphone 3g issues. A few of the problems have been bright pixels and dirt under the screen. The customer support has been great through the process of exchanging my Iphones. I am embarrassed to say that I have replaced my Iphone 5 times with the 6th Iphone on the way. With any other company they would have told me to deal with it, not with apple they have been very helpful and made me feel like my happiness is their number one concern. I just want to say thanks for such great customer service!

    Terrible Customer Service!
    I did NOT get my iPhone wet, but the mute switch on the side quit working. It moves like it is working, but it doesn't turn the ringer off. Vibrate still works, but I have to turn the volume down to get the "mute" the ringer. I went to the Apple store to exchange the adapter and thought they would of course cover my phone under the warranty. But found I had to make an appointment and come back to see someone about my issue. So I did. When I returned for my appointment, however, according to the "genius" that examined my phone - one of the moisture sensors had been tripped, negating the warranty. My phone is only three months old - I am the only one who uses it, and it has never gotten wet! But even the manager at the Apple Store - who never even looked at the phone himself - refused to honor the warranty. I couldn't believe it! I have been an Apple user and supporter for 20 years. I started on the Apple IIe. I currently have an new iMac and an older MacBook, that I was planning on replacing with the new MacBook just announced. I bought the first iPhone the day it came out, and the G3 as soon as it came out. I am in the education field, and I have argued with my colleagues for years about the virtues of the Mac vs. PC's. To say I have been a strong proponent of Apple would be a huge understatement. I have heard that as Apple is getting more of the market share, customer service and satisfaction have also gone down, while product quality has also gone down. But I didn't believe it. I have always been so satisfied with my Apple products. I can't believe they have this policy and refused to fix or replace my iPhone. I have no idea what would "trip" one moisture sensor. If it really got wet - wouldn't more than one sensor get wet? And besides that, how could that issue have anything to do with the mute switch on the other end of the phone - even a "genius" could figure this out. Instead of caring about my business and giving me customer satisfaction, they took the "easy out". I am very upset and disappointed about this response from a company that I have supported for so many years. I am only one customer, but a lot of people treated like me can make a difference. I feel like I have no recourse except through this website. I am very disappointed and frustrated.

  • ConsoleOne on Windows 7

    I have finnaly gotten the word that next year we will move to Windows 7.
    I have downloaded the GroupWise 8.02 sp2 installer, installed ConsoleOne. When I try to run C1 I get the error "You have Novell client version lower than 4.91".
    My PC is running Win 7, Home premium. SP1. 64 Bit. Novell client 2-sp3 for Windows 7 (IR3).
    I searched the Forums and did not find anything. But I am sure this must have been discussed in the past.
    any help would be great
    Phil J

    PhilJannusch Wrote in message:
    > I have finnaly gotten the word that next year we will move to Windows
    > 7.
    >
    > I have downloaded the GroupWise 8.02 sp2 installer, installed
    > ConsoleOne. When I try to run C1 I get the error "You have Novell client
    > version lower than 4.91".
    >
    > My PC is running Win 7, Home premium. SP1. 64 Bit. Novell client 2-sp3
    > for Windows 7 (IR3).
    >
    > I searched the Forums and did not find anything. But I am sure this
    > must have been discussed in the past.
    >
    > any help would be great
    I believe latest version of ConsoleOne which should work on
    Windows 7 without requiring any other changes is available within
    download for GroupWise 8 SP3 HP3[1].
    One complication might be that you're using Windows 7 Home Premium
    - I don't believe the Novel Client is supported with Home
    editions of Windows 7 so it's possible that's what is tripping up
    ConsoleOne.
    You should note that ConsoleOne is no longer a supported product
    in it's own right and is only provided with GroupWise 8 & 2012
    downloads whilst used for management functions. The next version
    of GroupWise (2014, codenamed Windermere) doesn't use
    ConsoleOne.
    HTH.
    [1] http://download.novell.com/Download?...d=fzjE1hdUOQg~
    Simon
    Novell Knowledge Partner
    ----Android NewsGroup Reader----
    http://www.piaohong.tk/newsgroup

  • Mail merge in crm 2015

    hi all 
    i wanna create a mail merge template and use this template for print a document with dynamic value.
    i made a mail merge template and download it but after edit i can not upload to crm by word 2013 
    please help me..

    johlinco wrote:
    HA!
    There were blank columns, I removed them and the whole thing came right together!
    Thanks!
    Do you know why that happens?
    Thanks for the feedback.
    I don't know for sure what might trip-up the merge, but I do know that it works better if it's well organized and compact.
    Jerry

Maybe you are looking for

  • Acrobat plug-ins PPKLite.api, HTML2PDF.api fail to initialize & file reducing plug-in not available

    Trying to figure out why in last 2 wks I've been getting error messages when I open a PDF doc with Acrobat 7.0.9 professional. Initially 2 pop-ups saying error loading plug-ins PPKLite.api and HTML2PDF.api & they "failed to initialize. I can click OK

  • Device Type for EPSON TM-U220

    Hi All, We are using EPSON TM-U220 dot matrix printer. Can anybody tell me which device type should be used for this? How to find a appropriate device type for a printer? Where we can get this info? I have selected EPESCP and its not printing the way

  • Which version of os x 10.5 should be installed?

    is it important which version of os x 10.5   (example: 10.5.4) is installed on my old MacBook 2,1 (now i still have os x 10.4.11), or have i to installe the first version of 10.5?? and what are your opinions where to buy it (ebay for example...)?? th

  • My Mac Air is running very slowly

    My Mac Air has started running very slowly.  It is running Yosemite 10.10.2

  • Thread-safety in javax.jdbc.DataSource?

    Hi. I am using Tomcat with an Oracle DB, and using the Oracle DataSource and thin client implementation for my connection pooling. I am wondering if the javax.sql.DataSource class is threadsafe. That is, if I have a DataSource defined for my applicat