Oracle8i dbassist doesn't work (problem solving)

Hello.
dbassist can not initialyse the Oracle8I database.
YOU can try to install RedHat6.2 then install
Oracle8I server.
If dbassist works now, you can
upgrage RedHat6.2 to RedHat7.0.
It is the easy way to solving this problem.
null

Hi
Have you tried setting the LOCALE to fr_CH in your rc.conf ?(without the utf8)
or else I think you should set it to fr_CH.UTF-8 and not fr_CH.UTF8
I used the first thing to solve my problem with accents in Greek but I think the 2nd will work as well.

Similar Messages

  • Flash doesn't work suddenly [SOLVED]

    Today flash doesn't work anymore, I do not remember any modifications. In Firefox the browser segfaults after a few seconds of flash content. In Opera the flash area is replaced with weird graphics http://img294.imageshack.us/img294/5845 … 0x800s.png like this. I reinstalled flash10, no help. I installed flash9, no help, same problems.
    Also, gnash plugin works for most flash content, but not for youtube though (on youtube I'll just get a blueish empty screen). Viewing flash videos is a must for my PC use..
    EDIT:
    I discovered that my sound didn't work, and I remember removing dbus from my modules since somebody says HAL starts it.
    I solved it by adding dbus after hal in modules. I know that people say you shouldn't do that, and it creates this error text at bootup, but that did fix my sound, and my flash issues. Weird.
    Last edited by nawitus (2009-05-19 10:03:38)

    that didnt do the trick either.
    I decided to reinstall flashplugin, and then i noticed a warning that said "warning: directory permissions differ on usr/lib/mozilla. filesystem: 700 package: 755."
    should i just try to chmod /usr/lib/mozilla, and then reinstall Flash?
    EDIT: Yep, i just ran sudo chmod 755 /usr/lib/mozilla, and reinstalled flash. Works well
    Last edited by DisturbedFood (2011-03-17 20:52:35)

  • TS3694 The program can't start because MSVCR80.dll is missing from your computer, try reinstalling the program to fix this program. It still doesn't work, problem began when updating iTunes. Help

    I have attempted to resolve this program by verious recommendation such as downloading Microsoft Visual C++, but nothing works.  Program begin with updating iTunes.
    I have a PC Window 7, 64bit,,
    iTunes doesn't work,   Help

    turingtest includes most of what I experienced as a Solution.
    The Apple Sppt guy did NOT Uninstall iCloud with my issue BUT After Uninstalling Apps and Manual Deletes in Program Files (x86) as instructed the iTunes Re-Install produced a pop-up at the end about Reggistry Settings for Import and CD Burning are Missing ... Re-Install iTunes. (saw another Thread on this Reg issue)
    2nd call to Apple netted that Uninstalling Quicktime Fixed that Registry issue most every time.
    IF you do all of this over you may try Uninstall of Quicktime to be safe and check if more Manual Deletes are requ'd after the QT Uninstall is run..
    My Thread here if you get bored............
    https://discussions.apple.com/thread/5901869

  • Documented fix doesn't work: problems installing acrobat on vista

    I have a brandnew pc running on 64-bits Vista.
    During my installation of Adobe creative suite 3 Web Premium, I got the error message that adobepdf.dll was missing. I found the technote http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401731. In it it said tot install a MS hotfix available at http://support.microsoft.com/kb/930627. At first it seemed that this didn't work, because I got a strange error, but extensive research with MS learned that it meant: it's already installed on your computer. So far so good.
    According to step 3, I downloaded Version 8.1, Adobe Acrobat 8 licensing service update (Windows Vista only), guessing that this is the right one. I extracted the files onto my desktop, but when trying to execute InstAS.exe, very little seems to happen. I very quickly see some sort of Dos-screen opening and closing. It goes to fast to even read what's on it.
    By the way: I tried downloading a file with the exact same name from the internet and put it in the map that the repair installer looks for it, but that didn't solve the problem...
    Since Adobe doesn't support 64, I'm left with an unusable product (that I did pay for and would really like to use). They advised me to try the forum. So please, can anyone help me? Thanks in advance for your trouble...

    You might also try the search http://www.adobeforums.com/webx?126@@.ee6b2f2
    enter
    vista 64
    or
    vista64
    Lots of previous messages include vista 64, not so many vista64

  • ORDER BY Statement in CALENDAR doesn't work! SOLVED

    Hello!
    I think I've searched nearly all threads containing the words 'calendar' and 'order'... I've found some threads dealing with the same problem as I do but I couldn't solve my problem yet...
    I've got a calender and the data in the day columns are displayed like this:
    time: what, e.g. 13:30: Test (13:30 would be 1:30 pm...)
    In one day column can be more then one deadline and I want them to be ordered by the time they take place - like in any other, 'normal' calender.
    But my ORDER BY Statement has no effect!
    My day column does look like this: http://img88.imageshack.us/img88/8413/calendar01vy8.jpg - very unordered!
    And this is my Code:
    (please ignore the _ in <_span>, <_b> and <_br /> - I don't want the HTML code to have an effect of the display of this post!)
    SELECT
    CASE WHEN C.EnvName = 'Production' THEN
    '<_span style = "font size: 11; color: black; background-color: coral">' || '<_b>' || TO_CHAR(B.AffectedFrom, 'HH24:MI') || ': ' ||'<_/b>'|| A.ChName || '<_br />' ||'<_/span>'
    WHEN C.EnvName = 'Development' THEN
    '<_span style = "font size: 11; color: black; background-color: cyan">' || '<_b>' || TO_CHAR(B.AffectedFrom, 'HH24:MI') || ': ' ||'<_/b>'|| A.ChName || '<_br />' || '<_/span>'
    ELSE
    '<_span style = "font size: 11; color: black; background-color: gold">' || '<_b>' || TO_CHAR(B.AffectedFrom, 'HH24:MI') || ': ' ||'<_/b>'|| A.ChName || '<_br />' || '<_/span>'
    END AS ChName, B.ActID, B.ActDate, TO_CHAR(B.AffectedFrom, 'HH24:MI') AS AffectedFrom, C.EnvName
    FROM RB_Change A, RB_Action B, RB_Environment C
    WHERE A.CHID = B.CHID AND B.EnvID = C.EnvID
    ORDER BY AffectedFrom
    My Display Type is Custom and my Display Format is #CHNAME#
    In this thread (Re: CALENDAR - SQL ORDER BY CLAUSE NOT WORKING I read I would have to insert '<INPUT TYPE="HIDDEN" VALUE="' || p_value || '" />' (in my code it would be into my code '<INPUT TYPE="HIDDEN" VALUE="' || ChName || '" />', wouldn't it?) - but where should I insert it?
    Sorry, but I'm very new to APEX, HTML and PLSQL...
    Can anyone help me please? I would be very grateful!

    Hi Dik!
    Thanks a lot for your quick answer.
    I just tried out what you said and created a view. I needed to do it with all the joined tables because the date, the time shown and the text shown are in two different tables and later I need them for daylink...
    The view is created and looks fine (with all the color I want) and the calendar works - but it hat no effect... The calendar looks just the same like before - unordered... So I undid the change with the view and now I've got the same state as before.
    I just used the 'debug'-function of APEX and realised that APEX fetches my SELECT statement and embeds it in an own SELECT statement...
    That looks like this:
    SELECT * FROM ( - here comes my SELECT statement I described in my first post - ) where ACTDATE >= to_date('20080201:00:00:00','RRRRMMDD:HH24:MI:SS') and ACTDATE <= to_date('20080229:23:59:59','RRRRMMDD:HH24:MI:SS') order by ACTDATE asc
    Has got anyone an idea how I can order my data in the way I want???

  • Xorg layout still doesn't work (almost)[SOLVED]

    Hi,
    After struggling to enable keyboard layout after the latest upgrage, I managed to do
    the following:
    I enabled Hotplugging, and configured it to work.
    In the KDM login screen (prior to login), everything works fine: I got both layouts I want, and can toggle between them.
    But after KDE starts, I loose my ability to swith layouts using my configured toggle switch (its back to the
    old toggle switch - a different one, which simply changes the flag when I try to switch layouts, but the keyboard is not switched).
    I'd appreciate any suggestions.
    thanks
    fiod
    Last edited by fiod (2009-02-17 06:22:26)

    There is a bug actually in switching layouts:
    http://bugs.archlinux.org/task/13188

  • Yet another "Virtualbox USB doesn't work" topic [SOLVED]

    So, I set up virtualbox today with the intention of reverse-engineering some devices I have that operate over serial, but the program runs only on windows. I got through the install process until I tried to view the settings for the windows xp image I installed and it said "Failed to access the USB subsystem" with the following details:
    Result Code: NS_ERROR_FAILURE (0x00004005)
    Component: Host
    Interface: IHost {30678943-32df-4830-b413-931b25ac86a0}
    Callee: IMachine {22781af3-1c96-4126-9edf-67a020e0e858}
    I followed the instructions here: https://wiki.archlinux.org/index.php/Vi … t_or_guest and added "export VBOX_USB=usbfs"  to my .bashrc file. My user is part of the vboxusers group and I have installed virtualbox-host-modules, virtualbox-guest-modules, and virtualbox-guest-utils. I added a file to /etc/modules-load.d called virtualbox.conf with "vboxdrv" in it. I've also rebooted my computer several times during the process. I've also installed the extras package thing inside VirtualBox that enables USB 2.0 and such. The windows image has the guest utilities thing installed as well.
    Perhaps I am just missing something, but I have no clue where to turn to next. Everything I have found just says the same things that I have done or seem to be out of date. I could really use some help here...what should I do to get this working?
    Thanks in advance.
    Last edited by Los Frijoles (2013-03-10 07:04:22)

    Los Frijoles wrote:I've also installed the extras package thing inside VirtualBox that enables USB 2.0 and such. The windows image has the guest utilities thing installed as well.
    Installing the "extra" package from the AUR that enables USB support is not enough. You need to right click the VM, choose "Settings", "USB" and enable if from there. Then you need to "plug in" the device, not just physically, but from the VM. While the VM is running go to "Devices", "USB Devices" and plug it in from there. You can also create filters so that the devices will "plug in" automatically, if you want.
    Reboot the guest OS after installing the Guest Additions; don't just suspend it.
    Is your user in the 'storage' group?
    What "devices" are we talking about? Because I have a scanner and it didn't work in a Windows VM until I added the user on the host OS (Arch Linux) to the 'scanner' group.

  • I Try to open an Indesign document. The message: it is made in a newer version. Go tot CC: Help/Give your Adobe id/Start Indesign again and try to open the document. This doesn't work. How to solve this problem?

    I Try to open an Indesign document. The message: it is made in a newer version. Go tot CC: Help/Give your Adobe id/Start Indesign again and try to open the document. This doesn’t work. How to solve this problem?

    What version are you running?
    What version was it made with?

  • Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones and it never worked. Does anyone has an idea how to solve the problem? Tks.

    Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones but it never worked. Does anyone has an idea how to solve the problem? Tks.

    This is not a feature of iPhone, iPad or iOS.
    Bluetooth is supported for stereo headsets/speakers, handsfree telephone
    devices/headsets, some keyboards, some peer-to-peer apps from the
    app store and internet tethering where provided by the carrier.
    Other than this it will not connect to a phone/computer/device.  (thanks to ckuan for the wording)

  • My magsafe adapter doesn't work, how can i solve this problem?

    my magsafe adapter doesn't work, how can i solve this problem?

    You can get a 60W power adapter for about $20 on eBay http://www.ebay.com/sch/i.html?_trkparms=65%253A1%257C66%253A2%257C39%253A1&rt=n c&_nkw=macbook+power+adapter&_dmpt=Laptop_Adapters_Chargers&_sticky=1&_trksid=p 3 286.c0.m14&_sop=12&_sc=1

  • I upgraded my iphone 5 to 6.1.4 and the earphone doesn't work anymore. Anyone has an idea on how to solve the problem ? Thank you

    I upgraded my iphone 5 to 6.1.4 and the earphone doesn't work anymore. Anyone has an idea on how to solve the problem ? Thank you

    Hi Jboudet,
    Welcome to Apple Support Communities.
    You can find some suggestions for troubleshooting your iPhone at these links:
    iPhone Assistant
    http://www.apple.com/support/iphone/troubleshooting/
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Have a good one,
    Jeremy

  • Sorry, we've tried to update Premiere Pro cc 2014 but the update failed. Now the option Retry doesn't work. There is other options to solve the problem? Now premiere don't start at all. Thank you in adva

    Sorry, we've tried to update Premiere Pro cc 2014 but the update failed. Now the option Retry doesn't work. There is other options to solve the problem? Now premiere don't start at all. Thank you in adva

    Use the Adobe Cleaner Tool:
    https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    I have set a passcode for my iphone and later I forgot it, and I tried it so many times but it was not correct now the iphone is disable it doesn't work in tune, can anyone solve this problem??

    You can solve this problem. Just follow these instructions:
    http://support.apple.com/kb/ht1212

  • App store doesn't work on yosemite. how can I solve the problem?

    app store doesn't work on yosemite. how can I solve the problem?

    Reinstall Lion, Mountain Lion, Mavericks or Yosemite without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, Mavericks, or Yosemite
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Since I installed IOS7 in my iPad, doesn´t work and in the screen appears the apple logo only. How can I solve this problem? Please, help!!

    Since I updated IOS 7 in my iPad, it doesn´t work and appears the Apple logo in the screen all the time. Any solution?

    1)  Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/ht4097
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup
    http://support.apple.com/kb/ht1766
    NOTE:
    Make sure you have the Latest Version of iTunes Installed on your computer ( v 11.1)
    iTunes free download from www.itunes.com/download

Maybe you are looking for